From bf8668407b7a06c614b85d1103d4bbca4eb3c6a4ab410aadb5f6bf77dcaafe4b Mon Sep 17 00:00:00 2001 From: Fridrich Strba Date: Tue, 26 Mar 2019 10:33:41 +0000 Subject: [PATCH] OBS-URL: https://build.opensuse.org/package/show/Java:packages/maven-artifact-transfer?expand=0&rev=1 --- .gitattributes | 23 ++ .gitignore | 1 + ...atibility-with-Maven-3.0.3-and-later.patch | 48 ++++ ...artifact-transfer-0.9.0-source-release.zip | 3 + maven-artifact-transfer-build.xml | 261 ++++++++++++++++++ maven-artifact-transfer.changes | 5 + maven-artifact-transfer.spec | 134 +++++++++ 7 files changed, 475 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 0001-Compatibility-with-Maven-3.0.3-and-later.patch create mode 100644 maven-artifact-transfer-0.9.0-source-release.zip create mode 100644 maven-artifact-transfer-build.xml create mode 100644 maven-artifact-transfer.changes create mode 100644 maven-artifact-transfer.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/0001-Compatibility-with-Maven-3.0.3-and-later.patch b/0001-Compatibility-with-Maven-3.0.3-and-later.patch new file mode 100644 index 0000000..1e63977 --- /dev/null +++ b/0001-Compatibility-with-Maven-3.0.3-and-later.patch @@ -0,0 +1,48 @@ +From e5f2d4a0133d598bc12b9d76292f6cf0c62448bf Mon Sep 17 00:00:00 2001 +From: Mikolaj Izdebski +Date: Mon, 12 Oct 2015 13:28:56 +0200 +Subject: [PATCH] Compatibility with Maven 3.0.3 and later + +--- + .../internal/Maven31ArtifactRepositoryAdapter.java | 20 ++++++++++++++++++++ + 1 file changed, 20 insertions(+) + +diff --git a/src/main/java/org/apache/maven/shared/dependencies/collect/internal/Maven31ArtifactRepositoryAdapter.java b/src/main/java/org/apache/maven/shared/dependencies/collect/internal/Maven31ArtifactRepositoryAdapter.java +index 5de5dbb..11b7453 100644 +--- a/src/main/java/org/apache/maven/shared/dependencies/collect/internal/Maven31ArtifactRepositoryAdapter.java ++++ b/src/main/java/org/apache/maven/shared/dependencies/collect/internal/Maven31ArtifactRepositoryAdapter.java +@@ -19,6 +19,7 @@ package org.apache.maven.shared.dependencies.collect.internal; + * under the License. + */ + ++import java.util.Collections; + import java.util.List; + + import org.apache.maven.artifact.Artifact; +@@ -263,4 +264,23 @@ public class Maven31ArtifactRepositoryAdapter implements ArtifactRepository + } + return true; + } ++ ++ private List mirroredRepositories = Collections.emptyList(); ++ ++ public List getMirroredRepositories() ++ { ++ return mirroredRepositories; ++ } ++ ++ public void setMirroredRepositories( List mirroredRepositories ) ++ { ++ if ( mirroredRepositories != null ) ++ { ++ this.mirroredRepositories = mirroredRepositories; ++ } ++ else ++ { ++ this.mirroredRepositories = Collections.emptyList(); ++ } ++ } + } +-- +2.7.4 + diff --git a/maven-artifact-transfer-0.9.0-source-release.zip b/maven-artifact-transfer-0.9.0-source-release.zip new file mode 100644 index 0000000..9023a91 --- /dev/null +++ b/maven-artifact-transfer-0.9.0-source-release.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55e88206a9c6016565cf7462dae436435a5a3e80dbb253d0c8b1a83c957104a3 +size 120285 diff --git a/maven-artifact-transfer-build.xml b/maven-artifact-transfer-build.xml new file mode 100644 index 0000000..51cda5e --- /dev/null +++ b/maven-artifact-transfer-build.xml @@ -0,0 +1,261 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + =================================== WARNING =================================== + JUnit is not present in the test classpath or your $ANT_HOME/lib directory. Tests not executed. + =============================================================================== + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/maven-artifact-transfer.changes b/maven-artifact-transfer.changes new file mode 100644 index 0000000..7643ee6 --- /dev/null +++ b/maven-artifact-transfer.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Tue Mar 26 10:32:40 UTC 2019 - Fridrich Strba + +- Initial packaging of maven-artifact-transfer 0.9.0 +- Generate and customize ant build.xml file diff --git a/maven-artifact-transfer.spec b/maven-artifact-transfer.spec new file mode 100644 index 0000000..b6986f2 --- /dev/null +++ b/maven-artifact-transfer.spec @@ -0,0 +1,134 @@ +# +# spec file for package maven-artifact-transfer +# +# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +%bcond_with tests +Name: maven-artifact-transfer +Version: 0.9.0 +Release: 0 +Summary: Apache Maven Artifact Transfer +License: Apache-2.0 +Group: Development/Libraries/Java +URL: http://maven.apache.org/shared/maven-artifact-transfer +Source0: http://repo1.maven.org/maven2/org/apache/maven/shared/%{name}/%{version}/%{name}-%{version}-source-release.zip +Source1: %{name}-build.xml +Patch0: 0001-Compatibility-with-Maven-3.0.3-and-later.patch +BuildRequires: ant +BuildRequires: apache-commons-cli apache-commons-codec +BuildRequires: atinject +BuildRequires: fdupes +BuildRequires: google-guice +BuildRequires: guava20 +BuildRequires: javapackages-local +BuildRequires: jdom2 +BuildRequires: maven-common-artifact-filters +BuildRequires: maven-lib +BuildRequires: maven-resolver-api +BuildRequires: maven-resolver-impl +BuildRequires: maven-resolver-util +BuildRequires: objectweb-asm +BuildRequires: plexus-classworlds +BuildRequires: plexus-cli +BuildRequires: plexus-containers-component-annotations +BuildRequires: plexus-metadata-generator +BuildRequires: plexus-utils +BuildRequires: qdox +BuildRequires: sisu-inject +BuildRequires: sisu-plexus +BuildRequires: slf4j +BuildRequires: unzip +BuildRequires: xbean +BuildRequires: xmvn-install +BuildRequires: xmvn-resolve +BuildRequires: mvn(org.apache.maven.shared:maven-shared-components:pom:) +BuildArch: noarch +%if %{with tests} +BuildRequires: ant-junit +%endif + +%description +An API to either install or deploy artifacts with Maven 3. + +%package javadoc +Summary: API documentation for %{name} +Group: Documentation/HTML + +%description javadoc +This package provides %{summary}. + +%prep +%setup -q +cp %{SOURCE1} build.xml +%patch0 -p1 + +%pom_remove_plugin :maven-shade-plugin +%pom_remove_plugin :apache-rat-plugin +%pom_remove_plugin :maven-enforcer-plugin +%pom_remove_plugin :animal-sniffer-maven-plugin + +# We don't want to support legacy Maven versions (older than 3.1) +%pom_remove_dep org.sonatype.aether: +find -name Maven30\*.java -delete + +%build +mkdir -p lib +build-jar-repository -s lib \ + atinject \ + commons-cli \ + commons-codec \ + guava20/guava-20.0 \ + guice/google-guice-no_aop \ + jdom2/jdom2 \ + maven-common-artifact-filters/maven-common-artifact-filters \ + maven/maven-artifact \ + maven/maven-core \ + maven/maven-model \ + maven-resolver/maven-resolver-api \ + maven-resolver/maven-resolver-impl \ + maven-resolver/maven-resolver-util \ + objectweb-asm/asm \ + org.eclipse.sisu.inject \ + org.eclipse.sisu.plexus \ + plexus-classworlds \ + plexus/cli \ + plexus-containers/plexus-component-annotations \ + plexus-metadata-generator \ + plexus/utils \ + qdox \ + slf4j/api \ + slf4j/simple \ + xbean/xbean-reflect + +%{ant} \ +%if %{without tests} + -Dtest.skip=true \ +%endif + package javadoc + +%{mvn_artifact} pom.xml target/%{name}-%{version}.jar + +%install +%mvn_install +%fdupes -s %{buildroot}%{_javadocdir} + +%files -f .mfiles +%license LICENSE NOTICE + +%files javadoc -f .mfiles-javadoc +%license LICENSE NOTICE + +%changelog