Update of /cvsroot/squirrel-sql/mavenize/laf-plugin
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv21272/laf-plugin
Modified Files:
pom.xml
Log Message:
Remove support for oyoaha and metouia since these do not work under Java6. Added skinlf theme packs.
Index: pom.xml
===================================================================
RCS file: /cvsroot/squirrel-sql/mavenize/laf-plugin/pom.xml,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** pom.xml 20 Nov 2009 01:16:40 -0000 1.15
--- pom.xml 16 Mar 2010 00:01:10 -0000 1.16
***************
*** 27,31 ****
This plugin gives SQuirreLSQL client the ability to configure alternate LaFs provided by the plugin
as well as others that the user can provide. All dependencies listed with a groupId of
! net.sf.squirrel-sql.thirdparty-non-maven are externally available open-source
look and feels whose project maintainers have decided to not use maven, or those which were built and
maintained only before the introduction of maven. Maven's central repository policy requires any
--- 27,31 ----
This plugin gives SQuirreLSQL client the ability to configure alternate LaFs provided by the plugin
as well as others that the user can provide. All dependencies listed with a groupId of
! net.sf.squirrel-sql and artifactId starting with squirrelsql-lf- are externally available open-source
look and feels whose project maintainers have decided to not use maven, or those which were built and
maintained only before the introduction of maven. Maven's central repository policy requires any
***************
*** 77,81 ****
<staging.dir>${project.build.directory}</staging.dir>
<laf.artifactIds>
! ilf-gpl,kunststoff,looks,metouia,napkinlaf,nimrodlf,oalnf,skinlf,substance,swingsetthemes,toniclf,tinylaf
</laf.artifactIds>
</properties>
--- 77,81 ----
<staging.dir>${project.build.directory}</staging.dir>
<laf.artifactIds>
! ilf-gpl,kunststoff,looks,napkinlaf,nimrodlf,skinlf,substance,toniclf,tinylaf
</laf.artifactIds>
</properties>
***************
*** 97,105 ****
<version>2.2.2</version>
</dependency>
- <dependency>
- <groupId>net.sf.squirrel-sql.thirdparty-non-maven</groupId>
- <artifactId>metouia</artifactId>
- <version>1.0.0-beta</version>
- </dependency>
<!--
Project napkinlaf uses maven, but curiously doesn't deploy to maven central. I filed an issue to
--- 97,100 ----
***************
*** 123,131 ****
<version>1.1</version>
</dependency>
! <dependency>
! <groupId>net.sf.squirrel-sql.thirdparty-non-maven</groupId>
! <artifactId>oalnf</artifactId>
! <version>3.0</version>
! </dependency>
<dependency>
<groupId>net.sf.squirrel-sql.thirdparty-non-maven</groupId>
--- 118,127 ----
<version>1.1</version>
</dependency>
! <!-- This was removed as Oyoaha lnf isn't supported in Java 6 -->
! <!-- <dependency>-->
! <!-- <groupId>net.sf.squirrel-sql.thirdparty-non-maven</groupId>-->
! <!-- <artifactId>oalnf</artifactId>-->
! <!-- <version>3.0</version>-->
! <!-- </dependency>-->
<dependency>
<groupId>net.sf.squirrel-sql.thirdparty-non-maven</groupId>
***************
*** 133,136 ****
--- 129,137 ----
<version>6.7</version>
</dependency>
+ <dependency>
+ <groupId>net.sf.squirrel-sql.thirdparty-non-maven</groupId>
+ <artifactId>skinlf-theme-packs</artifactId>
+ <version>1.0.0</version>
+ </dependency>
<!-- Project owner not interested in maven: https://substance.dev.java.net/issues/show_bug.cgi?id=287 -->
<dependency>
***************
*** 192,195 ****
--- 193,238 ----
<plugin>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <version>${dependency-plugin-version}</version>
+ <executions>
+ <execution>
+ <id>unpack-skinlf-theme-packs</id>
+ <phase>process-resources</phase>
+ <goals>
+ <goal>unpack</goal>
+ </goals>
+ <configuration>
+ <stripVersion>true</stripVersion>
+ <artifactItems>
+ <artifactItem>
+ <groupId>net.sf.squirrel-sql.thirdparty-non-maven</groupId>
+ <artifactId>skinlf-theme-packs</artifactId>
+ <version>1.0.0</version>
+ </artifactItem>
+ </artifactItems>
+ <outputDirectory>${staging.dir}/skinlf-theme-packs</outputDirectory>
+ <excludes>META-INF,META-INF/MANIFEST.MF</excludes>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <artifactId>maven-resources-plugin</artifactId>
+ <version>2.4.1</version>
+ <configuration>
+ <outputDirectory>${staging.dir}</outputDirectory>
+ </configuration>
+ <executions>
+ <execution>
+ <goals>
+ <goal>resources</goal>
+ </goals>
+ <phase>process-resources</phase>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>${assembly-plugin-version}</version>
|