100 lines
3.7 KiB
RPMSpec
100 lines
3.7 KiB
RPMSpec
|
#
|
||
|
# spec file for package maven-dependency-plugin
|
||
|
#
|
||
|
# Copyright (c) 2024 SUSE LLC
|
||
|
#
|
||
|
# 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/
|
||
|
#
|
||
|
|
||
|
|
||
|
Name: maven-dependency-plugin
|
||
|
Version: 3.8.1
|
||
|
Release: 0
|
||
|
Summary: Plugin to manipulate, copy and unpack local and remote artifacts
|
||
|
License: Apache-2.0
|
||
|
Group: Development/Libraries/Java
|
||
|
URL: http://maven.apache.org/plugins/%{name}
|
||
|
Source0: https://repo1.maven.org/maven2/org/apache/maven/plugins/%{name}/%{version}/%{name}-%{version}-source-release.zip
|
||
|
BuildRequires: fdupes
|
||
|
BuildRequires: maven-local
|
||
|
BuildRequires: unzip
|
||
|
BuildRequires: mvn(javax.inject:javax.inject)
|
||
|
BuildRequires: mvn(org.apache.commons:commons-lang3)
|
||
|
BuildRequires: mvn(org.apache.maven.doxia:doxia-sink-api)
|
||
|
BuildRequires: mvn(org.apache.maven.plugin-tools:maven-plugin-annotations)
|
||
|
BuildRequires: mvn(org.apache.maven.plugins:maven-plugin-plugin)
|
||
|
BuildRequires: mvn(org.apache.maven.plugins:maven-plugins:pom:)
|
||
|
BuildRequires: mvn(org.apache.maven.reporting:maven-reporting-api)
|
||
|
BuildRequires: mvn(org.apache.maven.reporting:maven-reporting-impl)
|
||
|
BuildRequires: mvn(org.apache.maven.resolver:maven-resolver-api)
|
||
|
BuildRequires: mvn(org.apache.maven.resolver:maven-resolver-util)
|
||
|
BuildRequires: mvn(org.apache.maven.shared:maven-artifact-transfer)
|
||
|
BuildRequires: mvn(org.apache.maven.shared:maven-common-artifact-filters)
|
||
|
BuildRequires: mvn(org.apache.maven.shared:maven-dependency-analyzer) >= 1.14.1
|
||
|
BuildRequires: mvn(org.apache.maven.shared:maven-dependency-tree)
|
||
|
BuildRequires: mvn(org.apache.maven.shared:maven-shared-utils)
|
||
|
BuildRequires: mvn(org.apache.maven:maven-artifact)
|
||
|
BuildRequires: mvn(org.apache.maven:maven-core)
|
||
|
BuildRequires: mvn(org.apache.maven:maven-model)
|
||
|
BuildRequires: mvn(org.apache.maven:maven-plugin-api)
|
||
|
BuildRequires: mvn(org.apache.maven:maven-repository-metadata)
|
||
|
BuildRequires: mvn(org.apache.maven:maven-resolver-provider)
|
||
|
BuildRequires: mvn(org.apache.maven:maven-settings)
|
||
|
BuildRequires: mvn(org.codehaus.plexus:plexus-archiver)
|
||
|
BuildRequires: mvn(org.codehaus.plexus:plexus-i18n)
|
||
|
BuildRequires: mvn(org.codehaus.plexus:plexus-io)
|
||
|
BuildRequires: mvn(org.codehaus.plexus:plexus-utils)
|
||
|
BuildRequires: mvn(org.codehaus.plexus:plexus-xml)
|
||
|
BuildRequires: mvn(org.eclipse.sisu:sisu-maven-plugin)
|
||
|
BuildRequires: mvn(org.slf4j:slf4j-api)
|
||
|
BuildRequires: mvn(org.sonatype.plexus:plexus-build-api)
|
||
|
BuildArch: noarch
|
||
|
|
||
|
%description
|
||
|
|
||
|
The dependency plugin provides the capability to manipulate
|
||
|
artifacts. It can copy and/or unpack artifacts from local or remote
|
||
|
repositories to a specified location.
|
||
|
|
||
|
%package javadoc
|
||
|
Summary: API documentation for %{name}
|
||
|
Group: Documentation/HTML
|
||
|
|
||
|
%description javadoc
|
||
|
%{summary}.
|
||
|
|
||
|
%prep
|
||
|
%setup -q
|
||
|
|
||
|
%build
|
||
|
# Tests require legacy Maven
|
||
|
%{mvn_build} -f -- \
|
||
|
-Dproject.build.outputTimestamp=$(date -u -d @${SOURCE_DATE_EPOCH:-$(date +%%s)} +%%Y-%%m-%%dT%%H:%%M:%%SZ) \
|
||
|
%if %{?pkg_vcmp:%pkg_vcmp java-devel >= 9}%{!?pkg_vcmp:0}
|
||
|
-Dmaven.compiler.release=8 \
|
||
|
%endif
|
||
|
-Dsource=8
|
||
|
|
||
|
%install
|
||
|
%mvn_install
|
||
|
%fdupes -s %{buildroot}%{_javadocdir}
|
||
|
|
||
|
%files -f .mfiles
|
||
|
%license LICENSE
|
||
|
%doc NOTICE
|
||
|
|
||
|
%files javadoc -f .mfiles-javadoc
|
||
|
%license LICENSE
|
||
|
%doc NOTICE
|
||
|
|
||
|
%changelog
|