Accepting request 1164210 from Java:packages
OBS-URL: https://build.opensuse.org/request/show/1164210 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/maven-plugin-tools?expand=0&rev=12
This commit is contained in:
commit
2643905ebd
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Apr 2 17:29:22 UTC 2024 - Fridrich Strba <fstrba@suse.com>
|
||||||
|
|
||||||
|
- Add dependency on plexus-xml where relevant
|
||||||
|
* this will be needed for smooth upgrade to plexus-utils 4.0.0
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 20 14:39:44 UTC 2024 - Fridrich Strba <fstrba@suse.com>
|
Tue Feb 20 14:39:44 UTC 2024 - Fridrich Strba <fstrba@suse.com>
|
||||||
|
|
||||||
|
@ -42,6 +42,7 @@ BuildRequires: maven-resolver-api
|
|||||||
BuildRequires: plexus-build-api
|
BuildRequires: plexus-build-api
|
||||||
BuildRequires: plexus-utils
|
BuildRequires: plexus-utils
|
||||||
BuildRequires: plexus-velocity
|
BuildRequires: plexus-velocity
|
||||||
|
BuildRequires: plexus-xml
|
||||||
BuildRequires: sisu-inject
|
BuildRequires: sisu-inject
|
||||||
BuildRequires: sisu-plexus
|
BuildRequires: sisu-plexus
|
||||||
BuildRequires: unzip
|
BuildRequires: unzip
|
||||||
@ -72,6 +73,10 @@ artifact metadata and a generic help goal.
|
|||||||
# Remove test dependencies because tests are skipped anyways.
|
# Remove test dependencies because tests are skipped anyways.
|
||||||
%pom_xpath_remove "pom:dependency[pom:scope='test']"
|
%pom_xpath_remove "pom:dependency[pom:scope='test']"
|
||||||
|
|
||||||
|
for i in maven-plugin-report-plugin maven-plugin-tools-annotations maven-plugin-tools-api maven-plugin-tools-generators maven-script; do
|
||||||
|
%pom_add_dep org.codehaus.plexus:plexus-xml:3.0.0 ${i}
|
||||||
|
done
|
||||||
|
|
||||||
%pom_remove_dep org.junit:junit-bom
|
%pom_remove_dep org.junit:junit-bom
|
||||||
%pom_remove_dep :maven-plugin-tools-ant maven-plugin-plugin
|
%pom_remove_dep :maven-plugin-tools-ant maven-plugin-plugin
|
||||||
%pom_remove_dep :maven-plugin-tools-beanshell maven-plugin-plugin
|
%pom_remove_dep :maven-plugin-tools-beanshell maven-plugin-plugin
|
||||||
@ -81,27 +86,28 @@ artifact metadata and a generic help goal.
|
|||||||
%build
|
%build
|
||||||
mkdir -p lib
|
mkdir -p lib
|
||||||
build-jar-repository -s lib \
|
build-jar-repository -s lib \
|
||||||
maven/maven-artifact \
|
maven/maven-artifact \
|
||||||
maven/maven-core \
|
maven/maven-core \
|
||||||
maven/maven-model \
|
maven/maven-model \
|
||||||
maven/maven-plugin-api \
|
maven/maven-plugin-api \
|
||||||
maven/maven-repository-metadata \
|
maven/maven-repository-metadata \
|
||||||
maven/maven-settings \
|
maven/maven-settings \
|
||||||
maven-plugin-tools/maven-plugin-annotations \
|
maven-plugin-tools/maven-plugin-annotations \
|
||||||
maven-plugin-tools/maven-plugin-tools-api \
|
maven-plugin-tools/maven-plugin-tools-api \
|
||||||
maven-plugin-tools/maven-plugin-tools-generators \
|
maven-plugin-tools/maven-plugin-tools-generators \
|
||||||
maven-resolver/maven-resolver-api \
|
maven-resolver/maven-resolver-api \
|
||||||
org.eclipse.sisu.inject \
|
org.eclipse.sisu.inject \
|
||||||
org.eclipse.sisu.plexus \
|
org.eclipse.sisu.plexus \
|
||||||
plexus/plexus-build-api \
|
plexus/plexus-build-api \
|
||||||
plexus/utils \
|
plexus/utils \
|
||||||
plexus-velocity/plexus-velocity
|
plexus/xml \
|
||||||
|
plexus-velocity/plexus-velocity
|
||||||
|
|
||||||
%{mvn_file} :%{artifactId} %{base_name}/%{artifactId}
|
%{mvn_file} :%{artifactId} %{base_name}/%{artifactId}
|
||||||
pushd %{artifactId}
|
pushd %{artifactId}
|
||||||
%{ant} \
|
%{ant} \
|
||||||
-Dtest.skip=true \
|
-Dtest.skip=true \
|
||||||
jar
|
jar
|
||||||
popd
|
popd
|
||||||
%{mvn_artifact} pom.xml
|
%{mvn_artifact} pom.xml
|
||||||
%{mvn_artifact} %{artifactId}/pom.xml %{artifactId}/target/%{artifactId}-%{version}.jar
|
%{mvn_artifact} %{artifactId}/pom.xml %{artifactId}/target/%{artifactId}-%{version}.jar
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Apr 2 17:29:28 UTC 2024 - Fridrich Strba <fstrba@suse.com>
|
||||||
|
|
||||||
|
- Add dependency on plexus-xml where relevant
|
||||||
|
* this will be needed for smooth upgrade to plexus-utils 4.0.0
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 20 14:39:45 UTC 2024 - Fridrich Strba <fstrba@suse.com>
|
Tue Feb 20 14:39:45 UTC 2024 - Fridrich Strba <fstrba@suse.com>
|
||||||
|
|
||||||
|
@ -45,6 +45,7 @@ BuildRequires: mvn(org.apache.maven:maven-plugin-api)
|
|||||||
BuildRequires: mvn(org.apache.maven:maven-repository-metadata)
|
BuildRequires: mvn(org.apache.maven:maven-repository-metadata)
|
||||||
BuildRequires: mvn(org.codehaus.plexus:plexus-utils)
|
BuildRequires: mvn(org.codehaus.plexus:plexus-utils)
|
||||||
BuildRequires: mvn(org.codehaus.plexus:plexus-velocity)
|
BuildRequires: mvn(org.codehaus.plexus:plexus-velocity)
|
||||||
|
BuildRequires: mvn(org.codehaus.plexus:plexus-xml)
|
||||||
BuildRequires: mvn(org.eclipse.sisu:org.eclipse.sisu.plexus)
|
BuildRequires: mvn(org.eclipse.sisu:org.eclipse.sisu.plexus)
|
||||||
BuildRequires: mvn(org.sonatype.plexus:plexus-build-api)
|
BuildRequires: mvn(org.sonatype.plexus:plexus-build-api)
|
||||||
Obsoletes: %{name}-bootstrap
|
Obsoletes: %{name}-bootstrap
|
||||||
@ -81,6 +82,10 @@ API documentation for %{name}.
|
|||||||
# Remove test dependencies because tests are skipped anyways.
|
# Remove test dependencies because tests are skipped anyways.
|
||||||
%pom_xpath_remove "pom:dependency[pom:scope='test']"
|
%pom_xpath_remove "pom:dependency[pom:scope='test']"
|
||||||
|
|
||||||
|
for i in maven-plugin-report-plugin maven-plugin-tools-annotations maven-plugin-tools-api maven-plugin-tools-generators maven-script; do
|
||||||
|
%pom_add_dep org.codehaus.plexus:plexus-xml:3.0.0 ${i}
|
||||||
|
done
|
||||||
|
|
||||||
%pom_remove_dep org.junit:junit-bom
|
%pom_remove_dep org.junit:junit-bom
|
||||||
%pom_remove_dep :maven-plugin-tools-ant maven-plugin-plugin
|
%pom_remove_dep :maven-plugin-tools-ant maven-plugin-plugin
|
||||||
%pom_remove_dep :maven-plugin-tools-beanshell maven-plugin-plugin
|
%pom_remove_dep :maven-plugin-tools-beanshell maven-plugin-plugin
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Apr 2 17:29:34 UTC 2024 - Fridrich Strba <fstrba@suse.com>
|
||||||
|
|
||||||
|
- Add dependency on plexus-xml where relevant
|
||||||
|
* this will be needed for smooth upgrade to plexus-utils 4.0.0
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 20 14:39:46 UTC 2024 - Fridrich Strba <fstrba@suse.com>
|
Tue Feb 20 14:39:46 UTC 2024 - Fridrich Strba <fstrba@suse.com>
|
||||||
|
|
||||||
|
@ -49,6 +49,7 @@ BuildRequires: plexus-containers-component-annotations
|
|||||||
BuildRequires: plexus-languages
|
BuildRequires: plexus-languages
|
||||||
BuildRequires: plexus-utils
|
BuildRequires: plexus-utils
|
||||||
BuildRequires: plexus-velocity
|
BuildRequires: plexus-velocity
|
||||||
|
BuildRequires: plexus-xml
|
||||||
BuildRequires: qdox
|
BuildRequires: qdox
|
||||||
BuildRequires: sisu-inject
|
BuildRequires: sisu-inject
|
||||||
BuildRequires: sisu-plexus
|
BuildRequires: sisu-plexus
|
||||||
@ -160,6 +161,10 @@ API documentation for %{name}.
|
|||||||
|
|
||||||
%pom_remove_dep net.sf.jtidy:jtidy maven-plugin-tools-generators
|
%pom_remove_dep net.sf.jtidy:jtidy maven-plugin-tools-generators
|
||||||
|
|
||||||
|
for i in maven-plugin-report-plugin maven-plugin-tools-annotations maven-plugin-tools-api maven-plugin-tools-generators maven-script; do
|
||||||
|
%pom_add_dep org.codehaus.plexus:plexus-xml:3.0.0 ${i}
|
||||||
|
done
|
||||||
|
|
||||||
%build
|
%build
|
||||||
mkdir -p lib
|
mkdir -p lib
|
||||||
build-jar-repository -s lib \
|
build-jar-repository -s lib \
|
||||||
@ -189,6 +194,7 @@ build-jar-repository -s lib \
|
|||||||
plexus-containers/plexus-component-annotations \
|
plexus-containers/plexus-component-annotations \
|
||||||
plexus-languages/plexus-java \
|
plexus-languages/plexus-java \
|
||||||
plexus/utils \
|
plexus/utils \
|
||||||
|
plexus/xml \
|
||||||
plexus-velocity/plexus-velocity \
|
plexus-velocity/plexus-velocity \
|
||||||
qdox \
|
qdox \
|
||||||
slf4j/api \
|
slf4j/api \
|
||||||
|
Loading…
Reference in New Issue
Block a user