Update of /cvsroot/squirrel-sql/mavenize/laf-plugin
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv1981/laf-plugin
Modified Files:
pom.xml
Log Message:
Additional laf dependencies; Clarified the proedure for adding more lafs.
Index: pom.xml
===================================================================
RCS file: /cvsroot/squirrel-sql/mavenize/laf-plugin/pom.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** pom.xml 15 Aug 2009 14:15:16 -0000 1.1
--- pom.xml 15 Aug 2009 23:56:07 -0000 1.2
***************
*** 3,12 ****
<modelVersion>4.0.0</modelVersion>
! <!-- This pom is slightly different from other plugin poms because it requires special assembly
! instructions since it includes LAF jars from other projects in the lafs/ folder of the assembly.
! Since no other plugin has special needs like this, this plugin's pom overrides the plugin parent's
! assembly definition, providing it's own. To add/remove/modify the LAFS that get included in the
! assembly archive, you must add/remove/modify the dependency below on the maven project that contains
! the LAF artifact.
-->
--- 3,13 ----
<modelVersion>4.0.0</modelVersion>
! <!--
! This pom is slightly different from other plugin poms because it requires special assembly instructions
! since it includes LAF jars from other projects in the lafs/ folder of the assembly. Since no other
! plugin has special needs like this, this plugin's pom overrides the plugin parent's assembly definition,
! providing it's own. To add/remove/modify the LAFS that get included in the assembly archive, you must
! add/remove/modify the dependency below on the maven project that contains the LAF artifact *and* add the
! artifactId to the laf.artifactIds property.
-->
***************
*** 25,31 ****
<properties>
<staging.dir>${project.build.directory}</staging.dir>
</properties>
-
<dependencies>
<dependency>
--- 26,32 ----
<properties>
<staging.dir>${project.build.directory}</staging.dir>
+ <laf.artifactIds>looks,substance,toniclf,tinylaf,nimrodlf,ilf-gpl,kunststoff,napkinlaf</laf.artifactIds>
</properties>
<dependencies>
<dependency>
***************
*** 39,42 ****
--- 40,83 ----
<version>5.2_01</version>
</dependency>
+ <dependency>
+ <groupId>com.digitprop</groupId>
+ <artifactId>toniclf</artifactId>
+ <version>1.0.5</version>
+ </dependency>
+ <dependency>
+ <groupId>de.muntjak</groupId>
+ <artifactId>tinylaf</artifactId>
+ <version>1.3.8</version>
+ </dependency>
+ <dependency>
+ <groupId>com.nilo.plaf</groupId>
+ <artifactId>nimrodlf</artifactId>
+ <version>1.1</version>
+ </dependency>
+ <dependency>
+ <groupId>net.infonode</groupId>
+ <artifactId>ilf-gpl</artifactId>
+ <version>1.5.0</version>
+ </dependency>
+ <dependency>
+ <groupId>com.incors.plaf</groupId>
+ <artifactId>kunststoff</artifactId>
+ <version>2.0.2</version>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.napkinlaf</groupId>
+ <artifactId>napkinlaf</artifactId>
+ <version>1.3-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.oalnf</groupId>
+ <artifactId>oalnf</artifactId>
+ <version>3.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jvnet.skinlf</groupId>
+ <artifactId>skinlf</artifactId>
+ <version>6.7</version>
+ </dependency>
</dependencies>
***************
*** 52,56 ****
<artifactId>maven-jar-plugin</artifactId>
</plugin>
!
<plugin>
<groupId>org.apache.maven.plugins</groupId>
--- 93,97 ----
<artifactId>maven-jar-plugin</artifactId>
</plugin>
!
<plugin>
<groupId>org.apache.maven.plugins</groupId>
***************
*** 67,77 ****
<configuration>
<stripVersion>true</stripVersion>
! <includeArtifactIds>looks,substance</includeArtifactIds>
<outputDirectory>${staging.dir}/lafs</outputDirectory>
</configuration>
</execution>
</executions>
! </plugin>
!
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
--- 108,118 ----
<configuration>
<stripVersion>true</stripVersion>
! <includeArtifactIds>${laf.artifactIds}</includeArtifactIds>
<outputDirectory>${staging.dir}/lafs</outputDirectory>
</configuration>
</execution>
</executions>
! </plugin>
!
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
***************
*** 93,98 ****
</executions>
</plugin>
!
!
<plugin>
<groupId>org.codehaus.mojo</groupId>
--- 134,139 ----
</executions>
</plugin>
!
!
<plugin>
<groupId>org.codehaus.mojo</groupId>
|