Update to 2.0.3
This commit is contained in:
parent
5ae5a119be
commit
3620f64fca
Binary file not shown.
23
fix-build-error-with-java8.patch
Normal file
23
fix-build-error-with-java8.patch
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
diff --git a/pom.xml b/pom.xml
|
||||||
|
index 5aa2975..9dff2c2 100644
|
||||||
|
--- a/pom.xml
|
||||||
|
+++ b/pom.xml
|
||||||
|
@@ -151,7 +151,6 @@
|
||||||
|
<goal>compile</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
- <release>8</release>
|
||||||
|
<buildDirectory>${project.build.directory}</buildDirectory>
|
||||||
|
<compileSourceRoots>${project.compileSourceRoots}</compileSourceRoots>
|
||||||
|
<outputDirectory>${project.build.outputDirectory}</outputDirectory>
|
||||||
|
@@ -167,7 +166,6 @@
|
||||||
|
<goal>compile</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
- <release>9</release>
|
||||||
|
<buildDirectory>${project.build.directory}</buildDirectory>
|
||||||
|
<compileSourceRoots>${project.basedir}/src/main/java9</compileSourceRoots>
|
||||||
|
<outputDirectory>${project.build.directory}/classes/META-INF/versions/9</outputDirectory>
|
||||||
|
--
|
||||||
|
2.27.0
|
||||||
|
|
||||||
Binary file not shown.
BIN
jboss-modules-2.0.3.Final.tar.gz
Normal file
BIN
jboss-modules-2.0.3.Final.tar.gz
Normal file
Binary file not shown.
@ -1,19 +1,17 @@
|
|||||||
%global namedreltag .Final
|
%global namedreltag .Final
|
||||||
%global namedversion %{version}%{?namedreltag}
|
%global namedversion %{version}%{?namedreltag}
|
||||||
Name: jboss-modules
|
Name: jboss-modules
|
||||||
Version: 2.0.2
|
Version: 2.0.3
|
||||||
Release: 1
|
Release: 1
|
||||||
Summary: A Modular Classloading System
|
Summary: A Modular Classloading System
|
||||||
License: ASL 2.0 and xpp
|
License: ASL 2.0 and xpp
|
||||||
URL: https://github.com/jbossas/jboss-modules
|
URL: https://github.com/jbossas/jboss-modules
|
||||||
Source0: https://github.com/jbossas/jboss-modules/archive/%{namedversion}/jboss-modules-%{namedversion}.tar.gz
|
Source0: https://github.com/jbossas/jboss-modules/archive/%{namedversion}/jboss-modules-%{namedversion}.tar.gz
|
||||||
Source1: bridger-1.4.Final.jar
|
Patch0: fix-build-error-with-java8.patch
|
||||||
Source2: jdk-misc-2.Final.jar
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRequires: maven maven-local mvn(junit:junit) mvn(org.jboss:jboss-parent:pom:)
|
BuildRequires: maven-local mvn(junit:junit) mvn(org.jboss:jboss-parent:pom:)
|
||||||
BuildRequires: graphviz mvn(jdepend:jdepend) mvn(org.jboss.apiviz:apiviz)
|
BuildRequires: mvn(org.jboss.shrinkwrap:shrinkwrap-impl-base)
|
||||||
BuildRequires: mvn(org.jboss.shrinkwrap:shrinkwrap-impl-base) maven-dependency-plugin
|
BuildRequires: graphviz mvn(jdepend:jdepend) mvn(org.jboss.apiviz:apiviz)
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Ths package contains A Modular Classloading System.
|
Ths package contains A Modular Classloading System.
|
||||||
|
|
||||||
@ -24,24 +22,23 @@ This package contains the API documentation for %{name}.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -p1 -n %{name}-%{namedversion}
|
%autosetup -p1 -n %{name}-%{namedversion}
|
||||||
|
|
||||||
%pom_remove_plugin :maven-javadoc-plugin
|
%pom_remove_plugin :maven-javadoc-plugin
|
||||||
|
%pom_remove_plugin :maven-dependency-plugin
|
||||||
%pom_remove_plugin :maven-compiler-plugin
|
%pom_remove_plugin :maven-checkstyle-plugin
|
||||||
|
%pom_remove_plugin :bridger
|
||||||
mvn install:install-file -Dgroupid=org.jboss.bridger -Dartifactid=bridger -Dversion=1.4.Final -Dpackaging=maven-plugin -Dfile=%{SOURCE1}
|
%pom_remove_plugin :module-info
|
||||||
mvn install:install-file -Dgroupid=org.jboss -Dartifactid=jdk-misc -Dversion=2.Final -Dpackaging=jar -Dfile=%{SOURCE2}
|
rm -r src/main/java9
|
||||||
|
rm src/test/java/org/jboss/modules/MavenResource2Test.java
|
||||||
rm src/test/java/org/jboss/modules/MavenResourceTest.java \
|
rm src/test/java/org/jboss/modules/MavenResourceTest.java \
|
||||||
src/test/java/org/jboss/modules/maven/MavenSettingsTest.java
|
src/test/java/org/jboss/modules/maven/MavenSettingsTest.java
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%mvn_build -s -f
|
%mvn_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%mvn_install -X
|
%mvn_install
|
||||||
|
|
||||||
%files -f .mfiles-%{name}
|
%files -f .mfiles
|
||||||
%doc README.md
|
%doc README.md
|
||||||
%license LICENSE.txt XPP3-LICENSE.txt
|
%license LICENSE.txt XPP3-LICENSE.txt
|
||||||
|
|
||||||
@ -49,6 +46,9 @@ rm src/test/java/org/jboss/modules/MavenResourceTest.java \
|
|||||||
%license LICENSE.txt XPP3-LICENSE.txt
|
%license LICENSE.txt XPP3-LICENSE.txt
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Oct 20 2022 yaoxin <yaoxin30@h-partners.com> - 2.0.3-1
|
||||||
|
- Update to 2.0.3
|
||||||
|
|
||||||
* Tue Jan 18 2022 SimpleUpdate Robot <tc@openeuler.org> - 2.0.2-1
|
* Tue Jan 18 2022 SimpleUpdate Robot <tc@openeuler.org> - 2.0.2-1
|
||||||
- Upgrade to version 2.0.2
|
- Upgrade to version 2.0.2
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user