diff options
author | Manolo Carrasco <manolo@apache.org> | 2011-05-02 15:44:26 +0000 |
---|---|---|
committer | Manolo Carrasco <manolo@apache.org> | 2011-05-02 15:44:26 +0000 |
commit | 4163e0cee272fa560c358ececf53ee94c1c9bb1c (patch) | |
tree | 73ec556baa39d021619df09a39d4395c85f2e59a /gwtquery-core-2.1.0 | |
parent | bad40394221719160e7f917cc66254aad316d3c9 (diff) | |
download | gwtquery-4163e0cee272fa560c358ececf53ee94c1c9bb1c.tar.gz gwtquery-4163e0cee272fa560c358ececf53ee94c1c9bb1c.zip |
prepare for releasing M1
Diffstat (limited to 'gwtquery-core-2.1.0')
-rw-r--r-- | gwtquery-core-2.1.0/pom.xml | 71 |
1 files changed, 68 insertions, 3 deletions
diff --git a/gwtquery-core-2.1.0/pom.xml b/gwtquery-core-2.1.0/pom.xml index e7a7c180..62eb7d1d 100644 --- a/gwtquery-core-2.1.0/pom.xml +++ b/gwtquery-core-2.1.0/pom.xml @@ -4,7 +4,7 @@ <parent> <groupId>com.googlecode.gwtquery</groupId> <artifactId>gwtquery-project</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.0-M1-SNAPSHOT</version> </parent> <description>Generates an artifact compiled with a concrete gwt version specified in the artifactId</description> @@ -41,6 +41,7 @@ <artifactId>maven-deploy-plugin</artifactId> <executions> <execution> + <id>deploy-jar</id> <phase>deploy</phase> <goals> <goal>deploy-file</goal> @@ -55,12 +56,47 @@ <version>${version}</version> <classifier>${artifactId}</classifier> <generatePom>true</generatePom> - <uniqueVersion>${repoUniqueVers}</uniqueVersion> + </configuration> + </execution> + <execution> + <id>deploy-src</id> + <phase>deploy</phase> + <goals> + <goal>deploy-file</goal> + </goals> + <configuration> + <file>${project.build.directory}/gwtquery-${version}-${artifactId}-sources.jar</file> + <repositoryId>${repoId}</repositoryId> + <url>${repoUrl}</url> + <packaging>jar</packaging> + <artifactId>gwtquery</artifactId> + <groupId>${groupId}</groupId> + <version>${version}</version> + <classifier>${artifactId}-sources</classifier> + <generatePom>true</generatePom> + </configuration> + </execution> + <execution> + <id>deploy-doc</id> + <phase>deploy</phase> + <goals> + <goal>deploy-file</goal> + </goals> + <configuration> + <file>${project.build.directory}/gwtquery-${version}-${artifactId}-javadoc.jar</file> + <repositoryId>${repoId}</repositoryId> + <url>${repoUrl}</url> + <packaging>jar</packaging> + <artifactId>gwtquery</artifactId> + <groupId>${groupId}</groupId> + <version>${version}</version> + <classifier>${artifactId}-javadoc</classifier> + <generatePom>true</generatePom> </configuration> </execution> </executions> <configuration> - <skip>true </skip> + <skip>true</skip> </configuration> </plugin> @@ -83,6 +119,34 @@ </plugin> <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <executions> + <execution> + <id>javadoc</id> + <phase>prepare-package</phase> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <executions> + <execution> + <id>source</id> + <phase>prepare-package</phase> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> + + <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> @@ -100,6 +164,7 @@ </execution> </executions> </plugin> + </plugins> <resources> |