diff options
author | Manolo Carrasco <manolo@apache.org> | 2011-03-15 18:11:15 +0000 |
---|---|---|
committer | Manolo Carrasco <manolo@apache.org> | 2011-03-15 18:11:15 +0000 |
commit | 9780c89c260cfefab01fe588733c6ab7d068c63b (patch) | |
tree | 7d27844c21c8ce1268d15bc59351484b36eea543 | |
parent | 8573fdc93952a1edff394605d8722f70470daf5d (diff) | |
download | gwtquery-9780c89c260cfefab01fe588733c6ab7d068c63b.tar.gz gwtquery-9780c89c260cfefab01fe588733c6ab7d068c63b.zip |
Change in deploy phase of artifact for 2.2.0
-rw-r--r-- | gwtquery-core-2.2.0/pom.xml | 6 | ||||
-rw-r--r-- | pom.xml | 16 |
2 files changed, 19 insertions, 3 deletions
diff --git a/gwtquery-core-2.2.0/pom.xml b/gwtquery-core-2.2.0/pom.xml index 61a3e790..b5071d63 100644 --- a/gwtquery-core-2.2.0/pom.xml +++ b/gwtquery-core-2.2.0/pom.xml @@ -41,14 +41,14 @@ <artifactId>maven-deploy-plugin</artifactId> <executions> <execution> - <phase>install</phase> + <phase>deploy</phase> <goals> <goal>deploy-file</goal> </goals> <configuration> <file>${project.build.directory}/gwtquery-${version}-${artifactId}.jar</file> - <repositoryId>sonatype-nexus-snapshots</repositoryId> - <url>https://oss.sonatype.org/content/repositories/snapshots</url> + <repositoryId>${repoId}</repositoryId> + <url>${repoUrl}</url> <packaging>jar</packaging> <artifactId>gwtquery</artifactId> <groupId>${groupId}</groupId> @@ -166,6 +166,8 @@ <gwt.outputstyle>OBF</gwt.outputstyle> <gwt.modulesuffix></gwt.modulesuffix> <gwtmaven>2.1.0-1</gwtmaven> + <repoUrl>https://oss.sonatype.org/content/repositories/snapshots</repoUrl> + <repoId>sonatype-nexus-snapshots</repoId> </properties> <profiles> @@ -190,5 +192,19 @@ </snapshotRepository> </distributionManagement> </profile> + <profile> + <id>local</id> + <properties> + <repoId>local mavenrepo</repoId> + <repoUrl>file://mavenrepo</repoUrl> + </properties> + <distributionManagement> + <snapshotRepository> + <uniqueVersion>false</uniqueVersion> + <id>local mavenrepo</id> + <url>file://mavenrepo</url> + </snapshotRepository> + </distributionManagement> + </profile> </profiles> </project> |