Update of /cvsroot/squirrel-sql/mavenize/update-site/squirrelsql-update-site
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv20120/update-site/squirrelsql-update-site
Modified Files:
pom.xml
Log Message:
create the update site as an archive that can be easily transferred to a server.
Index: pom.xml
===================================================================
RCS file: /cvsroot/squirrel-sql/mavenize/update-site/squirrelsql-update-site/pom.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** pom.xml 20 Nov 2009 01:27:42 -0000 1.1
--- pom.xml 8 Dec 2009 02:41:24 -0000 1.2
***************
*** 12,15 ****
--- 12,17 ----
<artifactId>squirrelsql-update-site</artifactId>
<version>3.1.0-SNAPSHOT</version>
+
+ <packaging>jar</packaging>
<name>SQuirreLSQL Update Site Project</name>
***************
*** 400,403 ****
--- 402,421 ----
</plugin>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>2.2</version>
+ <configuration>
+ <classesDirectory>${project.build.directory}/release</classesDirectory>
+ <archive>
+ <addMavenDescriptor>false</addMavenDescriptor>
+ </archive>
+ <includes>
+ <include>**/*.jar</include>
+ <include>**/*.zip</include>
+ <include>release.xml</include>
+ </includes>
+ </configuration>
+ </plugin>
+ <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>wagon-maven-plugin</artifactId>
***************
*** 411,415 ****
<execution>
<id>ftp-upload-release</id>
! <phase>package</phase>
<goals>
<goal>upload</goal>
--- 429,433 ----
<execution>
<id>ftp-upload-release</id>
! <phase>deploy</phase>
<goals>
<goal>upload</goal>
***************
*** 423,437 ****
</executions>
</plugin>
- <!--
- Since the update site is merely a collection of artifacts that are already available in maven,
- skip deploying this artifact to the repository.
- -->
- <plugin>
- <artifactId>maven-deploy-plugin</artifactId>
- <version>2.4</version>
- <configuration>
- <skip>true</skip>
- </configuration>
- </plugin>
</plugins>
<extensions>
--- 441,444 ----
***************
*** 444,446 ****
</build>
! </project>
\ No newline at end of file
--- 451,453 ----
</build>
! </project>
|