The Artima Developer Community
Sponsored Link

Java Buzz Forum
Maven GPG Plugin Fixage

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Brian McCallister

Posts: 1282
Nickname: frums
Registered: Sep, 2003

Brian McCallister is JustaProgrammer who thinks too much.
Maven GPG Plugin Fixage Posted: Jul 23, 2010 12:17 PM
Reply to this message Reply

This post originated from an RSS feed registered with Java Buzz by Brian McCallister.
Original Post: Maven GPG Plugin Fixage
Feed Title: Waste of Time
Feed URL: http://kasparov.skife.org/blog/index.rss
Feed Description: A simple waste of time and weblog experiment
Latest Java Buzz Posts
Latest Java Buzz Posts by Brian McCallister
Latest Posts From Waste of Time

Advertisement

If you are trying to use maven’s gpg plugin, and maven just hangs when it gets to the signing part, there is a workaround.

The easiest way is to add some configuration to the build plugins section of your pom:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-release-plugin</artifactId>
    <version>2.0</version>
    <configuration>
        <mavenExecutorId>forked-path</mavenExecutorId>
    </configuration>
</plugin>

You can see this in JDBI’s pom.xml. With that, it should properly ask you for your gpg passphrase.

Read: Maven GPG Plugin Fixage

Topic: Summary Box: IBM sees bigger 2010 profit but can't shake economy jitters Previous Topic   Next Topic Topic: FCC report finds broadband market not bringing high-speed Internet to Americans fast enough

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use