Update of /cvsroot/squirrel-sql/mavenize/squirrelsql-other-installer
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv8935/squirrelsql-other-installer
Modified Files:
pom.xml
Log Message:
Added documentation project dependencies.
Index: pom.xml
===================================================================
RCS file: /cvsroot/squirrel-sql/mavenize/squirrelsql-other-installer/pom.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** pom.xml 15 Aug 2009 14:18:28 -0000 1.1
--- pom.xml 16 Aug 2009 22:02:24 -0000 1.2
***************
*** 5,8 ****
--- 5,9 ----
<artifactId>squirrelsql-other-installer</artifactId>
<version>3.1.0-SNAPSHOT</version>
+ <name>SQuirreLSQL Generic Installer</name>
<properties>
***************
*** 30,34 ****
<version>3.1.0-SNAPSHOT</version>
</dependency>
!
<!-- Standard Plugins -->
<dependency>
--- 31,35 ----
<version>3.1.0-SNAPSHOT</version>
</dependency>
!
<!-- Standard Plugins -->
<dependency>
***************
*** 211,215 ****
<type>zip</type>
</dependency>
!
<dependency>
<groupId>net.sourceforge.squirrel_sql</groupId>
--- 212,216 ----
<type>zip</type>
</dependency>
!
<dependency>
<groupId>net.sourceforge.squirrel_sql</groupId>
***************
*** 266,269 ****
--- 267,282 ----
</dependency>
+ <dependency>
+ <groupId>net.sourceforge.squirrel_sql</groupId>
+ <artifactId>doc</artifactId>
+ <version>3.1.0-SNAPSHOT</version>
+ </dependency>
+
+ <dependency>
+ <groupId>net.sourceforge.squirrel_sql</groupId>
+ <artifactId>website</artifactId>
+ <version>3.1.0-SNAPSHOT</version>
+ </dependency>
+
<!-- Other Dependencies -->
<dependency>
***************
*** 272,276 ****
<version>${izpack-standalone.version}</version>
</dependency>
!
</dependencies>
--- 285,289 ----
<version>${izpack-standalone.version}</version>
</dependency>
!
</dependencies>
***************
*** 320,323 ****
--- 333,347 ----
</execution>
<execution>
+ <id>unpack-documentation</id>
+ <phase>process-resources</phase>
+ <goals>
+ <goal>unpack-dependencies</goal>
+ </goals>
+ <configuration>
+ <includeArtifactIds>doc,website</includeArtifactIds>
+ <outputDirectory>${staging.dir}/doc</outputDirectory>
+ </configuration>
+ </execution>
+ <execution>
<id>unpack-plugin-assemblies</id>
<phase>process-resources</phase>
***************
*** 355,359 ****
</configuration>
</execution>
!
</executions>
</plugin>
--- 379,383 ----
</configuration>
</execution>
!
</executions>
</plugin>
|