1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
From: =?utf-8?b?SsOpcsO0bWUgQ2hhcmFvdWk=?= <jerome@riseup.net>
Date: Tue, 24 Oct 2023 09:49:52 -0400
Subject: Disable checksum-maven-plugin
Forwarded: not-needed
---
maven/jruby-complete/pom.rb | 1 -
maven/jruby-dist/pom.rb | 1 -
maven/jruby/pom.rb | 1 -
maven/pom.rb | 6 ------
4 files changed, 9 deletions(-)
Index: jruby/maven/jruby-complete/pom.rb
===================================================================
--- jruby.orig/maven/jruby-complete/pom.rb
+++ jruby/maven/jruby-complete/pom.rb
@@ -99,7 +99,6 @@ project 'JRuby Complete' do
:failOnError => false )
end
- plugin( 'net.ju-n.maven.plugins:checksum-maven-plugin' )
['sonatype-oss-release', 'snapshots'].each do |name|
profile name do
Index: jruby/maven/jruby-dist/pom.rb
===================================================================
--- jruby.orig/maven/jruby-dist/pom.rb
+++ jruby/maven/jruby-dist/pom.rb
@@ -46,7 +46,6 @@ project 'JRuby Dist' do
plugin( :invoker )
- plugin( 'net.ju-n.maven.plugins:checksum-maven-plugin' )
profile 'sonatype-oss-release' do
Index: jruby/maven/jruby/pom.rb
===================================================================
--- jruby.orig/maven/jruby/pom.rb
+++ jruby/maven/jruby/pom.rb
@@ -33,7 +33,6 @@ project 'JRuby Main Maven Artifact' do
end
end
- plugin( 'net.ju-n.maven.plugins:checksum-maven-plugin' )
profile :apps do
activation do
Index: jruby/maven/pom.rb
===================================================================
--- jruby.orig/maven/pom.rb
+++ jruby/maven/pom.rb
@@ -24,12 +24,6 @@ project 'JRuby Artifacts' do
'classifier' => 'javadoc' } ] )
end
- plugin( 'net.ju-n.maven.plugins:checksum-maven-plugin', '1.2' ) do
- execute_goals(
- :artifacts,
- phase: :package,
- algorithms: ['SHA-256', 'SHA-512' ] )
- end
end
# module to profile map
|