aboutsummaryrefslogtreecommitdiffstats
path: root/gwtquery-core-2.1.0
diff options
context:
space:
mode:
authorManolo Carrasco <manolo@apache.org>2011-05-02 16:15:59 +0000
committerManolo Carrasco <manolo@apache.org>2011-05-02 16:15:59 +0000
commit03a66691cc3aa9c1bd6e31eefc723f3b4d4599d1 (patch)
treee90ce7f0f43669ed1ad91d9b729d54e6f2dc9a6a /gwtquery-core-2.1.0
parent6b15b1b1ddd207ef6e31aa8f7c6b4ab2706e122c (diff)
downloadgwtquery-03a66691cc3aa9c1bd6e31eefc723f3b4d4599d1.tar.gz
gwtquery-03a66691cc3aa9c1bd6e31eefc723f3b4d4599d1.zip
Use gpg plugin to deploy
Diffstat (limited to 'gwtquery-core-2.1.0')
-rw-r--r--gwtquery-core-2.1.0/pom.xml22
1 files changed, 13 insertions, 9 deletions
diff --git a/gwtquery-core-2.1.0/pom.xml b/gwtquery-core-2.1.0/pom.xml
index edef75e9..9b3c5295 100644
--- a/gwtquery-core-2.1.0/pom.xml
+++ b/gwtquery-core-2.1.0/pom.xml
@@ -39,12 +39,19 @@
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>deploy-jar</id>
<phase>deploy</phase>
<goals>
- <goal>deploy-file</goal>
+ <goal>sign-and-deploy-file</goal>
</goals>
<configuration>
<file>${project.build.directory}/gwtquery-${version}-${artifactId}.jar</file>
@@ -55,14 +62,14 @@
<groupId>${groupId}</groupId>
<version>${version}</version>
<classifier>${artifactId}</classifier>
- <generatePom>true</generatePom>
+ <pomFile>./target/generated-resources/META-INF/maven/com.googlecode.gwtquery/gwtquery/pom.xml</pomFile>
</configuration>
</execution>
<execution>
<id>deploy-src</id>
<phase>deploy</phase>
<goals>
- <goal>deploy-file</goal>
+ <goal>sign-and-deploy-file</goal>
</goals>
<configuration>
<file>${project.build.directory}/gwtquery-${version}-${artifactId}-sources.jar</file>
@@ -73,14 +80,14 @@
<groupId>${groupId}</groupId>
<version>${version}</version>
<classifier>${artifactId}-sources</classifier>
- <generatePom>true</generatePom>
+ <pomFile>./target/generated-resources/META-INF/maven/com.googlecode.gwtquery/gwtquery/pom.xml</pomFile>
</configuration>
</execution>
<execution>
<id>deploy-doc</id>
<phase>deploy</phase>
<goals>
- <goal>deploy-file</goal>
+ <goal>sign-and-deploy-file</goal>
</goals>
<configuration>
<file>${project.build.directory}/gwtquery-${version}-${artifactId}-javadoc.jar</file>
@@ -91,13 +98,10 @@
<groupId>${groupId}</groupId>
<version>${version}</version>
<classifier>${artifactId}-javadoc</classifier>
- <generatePom>true</generatePom>
+ <pomFile>./target/generated-resources/META-INF/maven/com.googlecode.gwtquery/gwtquery/pom.xml</pomFile>
</configuration>
</execution>
</executions>
- <configuration>
- <skip>true</skip>
- </configuration>
</plugin>
<plugin>