2019-04-01 09:08:15 +02:00
|
|
|
#
|
2022-03-22 14:45:53 +01:00
|
|
|
# spec file
|
2019-04-01 09:08:15 +02:00
|
|
|
#
|
2022-03-22 14:45:53 +01:00
|
|
|
# Copyright (c) 2022 SUSE LLC
|
2019-04-01 09:08:15 +02:00
|
|
|
#
|
|
|
|
# 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/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
%global flavor @BUILD_FLAVOR@%{nil}
|
|
|
|
%if "%{flavor}" == "bootstrap"
|
|
|
|
%bcond_without bootstrap
|
|
|
|
%else
|
|
|
|
%bcond_with bootstrap
|
|
|
|
%endif
|
|
|
|
%global base_name maven-resources-plugin
|
2022-04-26 19:08:55 +02:00
|
|
|
Version: 3.2.0
|
2019-04-01 09:08:15 +02:00
|
|
|
Release: 0
|
|
|
|
Summary: Maven Resources Plugin
|
|
|
|
License: Apache-2.0
|
|
|
|
Group: Development/Libraries/Java
|
2022-03-22 14:45:53 +01:00
|
|
|
URL: https://maven.apache.org/plugins/maven-resources-plugin
|
|
|
|
Source0: https://repo1.maven.org/maven2/org/apache/maven/plugins/%{base_name}/%{version}/%{base_name}-%{version}-source-release.zip
|
2019-04-01 09:08:15 +02:00
|
|
|
Source1: %{base_name}-build.xml
|
|
|
|
Patch0: %{base_name}-bootstrap-resources.patch
|
|
|
|
BuildRequires: apache-commons-io
|
2022-04-26 19:08:55 +02:00
|
|
|
BuildRequires: apache-commons-lang3
|
2019-04-01 09:08:15 +02:00
|
|
|
BuildRequires: fdupes
|
2022-03-22 14:45:53 +01:00
|
|
|
BuildRequires: java-devel >= 1.8
|
2019-04-01 09:08:15 +02:00
|
|
|
BuildRequires: javapackages-local
|
|
|
|
BuildRequires: maven-filtering
|
|
|
|
BuildRequires: maven-lib
|
|
|
|
BuildRequires: maven-plugin-annotations
|
|
|
|
BuildRequires: plexus-interpolation
|
|
|
|
BuildRequires: plexus-utils
|
|
|
|
BuildRequires: sisu-plexus
|
|
|
|
BuildRequires: unzip
|
|
|
|
BuildRequires: xmvn-install
|
|
|
|
BuildRequires: xmvn-resolve
|
|
|
|
BuildRequires: mvn(org.apache.maven.plugins:maven-plugins:pom:)
|
|
|
|
BuildArch: noarch
|
|
|
|
%if %{with bootstrap}
|
|
|
|
Name: %{base_name}-bootstrap
|
|
|
|
BuildRequires: ant
|
|
|
|
%else
|
|
|
|
Name: %{base_name}
|
2019-04-01 11:33:19 +02:00
|
|
|
BuildRequires: xmvn
|
2019-04-01 09:08:15 +02:00
|
|
|
BuildRequires: mvn(org.apache.maven.plugin-testing:maven-plugin-testing-harness)
|
|
|
|
BuildRequires: mvn(org.apache.maven.plugins:maven-compiler-plugin)
|
|
|
|
BuildRequires: mvn(org.apache.maven.plugins:maven-jar-plugin)
|
|
|
|
BuildRequires: mvn(org.apache.maven.plugins:maven-javadoc-plugin)
|
|
|
|
BuildRequires: mvn(org.apache.maven.plugins:maven-plugin-plugin)
|
|
|
|
BuildRequires: mvn(org.apache.maven.plugins:maven-resources-plugin)
|
|
|
|
BuildRequires: mvn(org.apache.maven.plugins:maven-surefire-plugin)
|
2019-04-01 09:17:20 +02:00
|
|
|
Obsoletes: %{base_name}-bootstrap
|
2019-04-02 18:31:58 +02:00
|
|
|
#!BuildRequires: maven-compiler-plugin-bootstrap
|
|
|
|
#!BuildRequires: maven-jar-plugin-bootstrap
|
|
|
|
#!BuildRequires: maven-javadoc-plugin-bootstrap
|
|
|
|
#!BuildRequires: maven-plugin-plugin-bootstrap
|
|
|
|
#!BuildRequires: maven-resources-plugin-bootstrap
|
|
|
|
#!BuildRequires: maven-surefire-plugin-bootstrap
|
2019-04-01 09:08:15 +02:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%description
|
|
|
|
The Resources Plugin handles the copying of project resources
|
|
|
|
to the output directory.
|
|
|
|
|
|
|
|
%if %{without bootstrap}
|
|
|
|
%package javadoc
|
|
|
|
Summary: Javadoc for %{name}
|
|
|
|
Group: Documentation/HTML
|
|
|
|
|
|
|
|
%description javadoc
|
|
|
|
API documentation for %{name}.
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n %{base_name}-%{version}
|
|
|
|
%if %{with bootstrap}
|
|
|
|
cp %{SOURCE1} build.xml
|
|
|
|
%patch0 -p1
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%build
|
|
|
|
%if %{with bootstrap}
|
|
|
|
mkdir -p lib
|
|
|
|
build-jar-repository -s lib \
|
2022-03-22 14:45:53 +01:00
|
|
|
commons-io \
|
2022-04-26 19:08:55 +02:00
|
|
|
commons-lang3 \
|
2022-03-22 14:45:53 +01:00
|
|
|
maven-filtering/maven-filtering \
|
|
|
|
maven/maven-core \
|
|
|
|
maven/maven-model \
|
|
|
|
maven/maven-plugin-api \
|
|
|
|
maven-plugin-tools/maven-plugin-annotations \
|
|
|
|
org.eclipse.sisu.plexus \
|
|
|
|
plexus/interpolation \
|
|
|
|
plexus/utils
|
2019-04-01 09:08:15 +02:00
|
|
|
%{ant} -Dtest.skip=true jar
|
|
|
|
%else
|
|
|
|
xmvn --batch-mode --offline \
|
2022-03-22 14:45:53 +01:00
|
|
|
-Dmaven.test.skip=true \
|
2019-11-22 16:58:19 +01:00
|
|
|
%if %{?pkg_vcmp:%pkg_vcmp java-devel >= 9}%{!?pkg_vcmp:0}
|
2022-03-22 14:45:53 +01:00
|
|
|
-Dmaven.compiler.release=8 \
|
2019-11-22 16:58:19 +01:00
|
|
|
%endif
|
2022-03-22 14:45:53 +01:00
|
|
|
package org.apache.maven.plugins:maven-javadoc-plugin:aggregate
|
2019-04-01 09:08:15 +02:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%{mvn_artifact} pom.xml target/%{base_name}-%{version}.jar
|
|
|
|
|
|
|
|
%install
|
|
|
|
%mvn_install
|
|
|
|
%fdupes -s %{buildroot}%{_javadocdir}
|
|
|
|
|
|
|
|
%files -f .mfiles
|
|
|
|
%license LICENSE NOTICE
|
|
|
|
|
2019-11-22 01:25:07 +01:00
|
|
|
%if %{without bootstrap}
|
|
|
|
%files javadoc -f .mfiles-javadoc
|
|
|
|
%license LICENSE NOTICE
|
|
|
|
%endif
|
2019-04-01 09:08:15 +02:00
|
|
|
|
|
|
|
%changelog
|