forked from pool/maven-jarsigner-plugin
84 lines
2.8 KiB
RPMSpec
84 lines
2.8 KiB
RPMSpec
#
|
|
# spec file for package maven-jarsigner-plugin
|
|
#
|
|
# Copyright (c) 2023 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-jarsigner-plugin
|
|
Version: 3.0.0
|
|
Release: 0
|
|
Summary: Plugin to sign/verify a project artifact and attachments using jarsigner
|
|
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(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.shared:maven-jarsigner)
|
|
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-plugin-api)
|
|
BuildRequires: mvn(org.apache.maven:maven-settings)
|
|
BuildRequires: mvn(org.sonatype.plexus:plexus-sec-dispatcher)
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
This plugin provides the capability to sign or verify
|
|
a project artifact and attachments using jarsigner.
|
|
|
|
If you need to sign a project artifact and all attached artifacts,
|
|
just configure the sign goal appropriately in your pom.xml
|
|
for the signing to occur automatically during the package phase.
|
|
|
|
If you need to verify the signatures of a project artifact
|
|
and all attached artifacts, just configure the verify goal
|
|
appropriately in your pom.xml for the verification to occur
|
|
automatically during the verify phase.
|
|
|
|
%package javadoc
|
|
Summary: API documentation for %{name}
|
|
Group: Documentation/HTML
|
|
|
|
%description javadoc
|
|
This package contains the API documentation for %{name}.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%pom_xpath_set pom:properties/pom:javaVersion "8"
|
|
|
|
%build
|
|
%{mvn_file} :%{name} %{name}
|
|
%{mvn_build} -f -- -Dsource=8
|
|
|
|
%install
|
|
%mvn_install
|
|
%fdupes -s %{buildroot}%{_javadocdir}
|
|
|
|
%files -f .mfiles
|
|
%license LICENSE
|
|
%doc NOTICE DEPENDENCIES
|
|
|
|
%files javadoc -f .mfiles-javadoc
|
|
%license LICENSE
|
|
%doc NOTICE
|
|
|
|
%changelog
|