Compare commits
3 Commits
Author | SHA256 | Date | |
---|---|---|---|
5223595d86 | |||
e582747282 | |||
e9e8fd68de |
4
_service
4
_service
@@ -2,8 +2,8 @@
|
|||||||
<service name="tar_scm" mode="disabled">
|
<service name="tar_scm" mode="disabled">
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="url">https://github.com/google/j2objc.git</param>
|
<param name="url">https://github.com/google/j2objc.git</param>
|
||||||
<param name="revision">58a43c25788f95f3ea9444d800d09a57533edcbc</param>
|
<param name="revision">3.0.0</param>
|
||||||
<param name="versionformat">2.2</param>
|
<param name="versionformat">@PARENT_TAG@</param>
|
||||||
<param name="subdir">annotations</param>
|
<param name="subdir">annotations</param>
|
||||||
<param name="filename">j2objc-annotations</param>
|
<param name="filename">j2objc-annotations</param>
|
||||||
</service>
|
</service>
|
||||||
|
BIN
j2objc-annotations-2.2.tar.xz
(Stored with Git LFS)
BIN
j2objc-annotations-2.2.tar.xz
(Stored with Git LFS)
Binary file not shown.
3
j2objc-annotations-3.0.0.tar.xz
Normal file
3
j2objc-annotations-3.0.0.tar.xz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1dfe604ee4ab385fa399291f87a56da0c803b295088f4b7646558bf4ae6b52d8
|
||||||
|
size 7364
|
@@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
<property name="project.groupId" value="com.google.j2objc"/>
|
<property name="project.groupId" value="com.google.j2objc"/>
|
||||||
<property name="project.artifactId" value="j2objc-annotations"/>
|
<property name="project.artifactId" value="j2objc-annotations"/>
|
||||||
<property name="project.version" value="2.2"/>
|
<property name="project.version" value="3.0.0"/>
|
||||||
|
|
||||||
<property name="compiler.source" value="1.8"/>
|
<property name="compiler.source" value="1.8"/>
|
||||||
<property name="compiler.target" value="${compiler.source}"/>
|
<property name="compiler.target" value="${compiler.source}"/>
|
||||||
@@ -35,20 +35,39 @@
|
|||||||
|
|
||||||
<target name="compile" description="Compile the code">
|
<target name="compile" description="Compile the code">
|
||||||
<mkdir dir="${build.outputDir}"/>
|
<mkdir dir="${build.outputDir}"/>
|
||||||
<javac destdir="${build.outputDir}"
|
<javac destdir="${build.outputDir}"
|
||||||
nowarn="false"
|
nowarn="false"
|
||||||
debug="true"
|
debug="true"
|
||||||
encoding="UTF-8"
|
encoding="UTF-8"
|
||||||
optimize="false"
|
optimize="false"
|
||||||
deprecation="true"
|
deprecation="true"
|
||||||
target="${compiler.target}"
|
target="${compiler.target}"
|
||||||
verbose="false"
|
verbose="false"
|
||||||
fork="false"
|
fork="false"
|
||||||
source="${compiler.source}">
|
source="${compiler.source}">
|
||||||
|
<exclude name="**/module-info.java"/>
|
||||||
<src>
|
<src>
|
||||||
<pathelement location="${build.srcDir}"/>
|
<pathelement location="${build.srcDir}"/>
|
||||||
</src>
|
</src>
|
||||||
</javac>
|
</javac>
|
||||||
|
<javac destdir="${build.outputDir}"
|
||||||
|
nowarn="false"
|
||||||
|
debug="true"
|
||||||
|
encoding="utf-8"
|
||||||
|
optimize="false"
|
||||||
|
deprecation="true"
|
||||||
|
target="9"
|
||||||
|
verbose="false"
|
||||||
|
fork="false"
|
||||||
|
source="9">
|
||||||
|
<src>
|
||||||
|
<pathelement location="${build.srcDir}"/>
|
||||||
|
</src>
|
||||||
|
<include name="**/module-info.java"/>
|
||||||
|
<modulepath>
|
||||||
|
<pathelement location="${build.outputDir}"/>
|
||||||
|
</modulepath>
|
||||||
|
</javac>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<!-- ====================================================================== -->
|
<!-- ====================================================================== -->
|
||||||
@@ -56,25 +75,25 @@
|
|||||||
<!-- ====================================================================== -->
|
<!-- ====================================================================== -->
|
||||||
|
|
||||||
<target name="javadoc" description="Generates the Javadoc of the application">
|
<target name="javadoc" description="Generates the Javadoc of the application">
|
||||||
<javadoc sourcepath="${build.srcDir}"
|
<javadoc sourcepath="${build.srcDir}"
|
||||||
packagenames="*"
|
packagenames="*"
|
||||||
destdir="${reporting.outputDirectory}/apidocs"
|
destdir="${reporting.outputDirectory}/apidocs"
|
||||||
access="protected"
|
access="protected"
|
||||||
source="${compiler.source}"
|
source="${compiler.source}"
|
||||||
verbose="false"
|
verbose="false"
|
||||||
version="true"
|
version="true"
|
||||||
use="true"
|
use="true"
|
||||||
author="true"
|
author="true"
|
||||||
splitindex="false"
|
splitindex="false"
|
||||||
nodeprecated="false"
|
nodeprecated="false"
|
||||||
nodeprecatedlist="false"
|
nodeprecatedlist="false"
|
||||||
notree="false"
|
notree="false"
|
||||||
noindex="false"
|
noindex="false"
|
||||||
nohelp="false"
|
nohelp="false"
|
||||||
nonavbar="false"
|
nonavbar="false"
|
||||||
serialwarn="false"
|
serialwarn="false"
|
||||||
encoding="UTF-8"
|
encoding="UTF-8"
|
||||||
linksource="false"
|
linksource="false"
|
||||||
breakiterator="false"/>
|
breakiterator="false"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
@@ -83,10 +102,10 @@
|
|||||||
<!-- ====================================================================== -->
|
<!-- ====================================================================== -->
|
||||||
|
|
||||||
<target name="package" depends="compile" description="Package the application">
|
<target name="package" depends="compile" description="Package the application">
|
||||||
<jar jarfile="${build.dir}/${build.finalName}.jar"
|
<jar jarfile="${build.dir}/${build.finalName}.jar"
|
||||||
compress="true"
|
compress="true"
|
||||||
index="false"
|
index="false"
|
||||||
basedir="${build.outputDir}"
|
basedir="${build.outputDir}"
|
||||||
excludes="**/package.html"/>
|
excludes="**/package.html"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
@@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon May 26 08:11:11 UTC 2025 - Fridrich Strba <fstrba@suse.com>
|
||||||
|
|
||||||
|
- Update to version 3.0.0
|
||||||
|
* no structured changelog available
|
||||||
|
* this version is a modular jar needed by guava
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 2 15:43:13 UTC 2024 - Fridrich Strba <fstrba@suse.com>
|
Wed Oct 2 15:43:13 UTC 2024 - Fridrich Strba <fstrba@suse.com>
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package j2objc-annotations
|
# spec file for package j2objc-annotations
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: j2objc-annotations
|
Name: j2objc-annotations
|
||||||
Version: 2.2
|
Version: 3.0.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: J2ObjC Annotations
|
Summary: J2ObjC Annotations
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
@@ -48,8 +48,6 @@ This package provides %{summary}.
|
|||||||
cp %{SOURCE1} .
|
cp %{SOURCE1} .
|
||||||
cp %{SOURCE2} build.xml
|
cp %{SOURCE2} build.xml
|
||||||
|
|
||||||
%pom_remove_parent
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{ant} jar javadoc
|
%{ant} jar javadoc
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user