Update of /cvsroot/squirrel-sql/mavenize
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv4828
Added Files:
plugin-pom.xml
Log Message:
Plugin template pom.
--- NEW FILE: plugin-pom.xml ---
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>net.sf.squirrel_sql</groupId>
<artifactId>squirrelsql-plugins-parent-pom</artifactId>
<version>3.1.0-SNAPSHOT</version>
</parent>
<groupId>net.sf.squirrel_sql</groupId>
<artifactId>@@--$artifactId--@@</artifactId>
<version>3.1.0-SNAPSHOT</version>
<name>@@--$pluginName--@@</name>
<description>@@--$pluginDescription--@@</description>
<licenses>
<license>
<name>GNU Lesser</name>
<url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<url>http://www.squirrelsql.org/</url>
<scm>
<url>http://squirrel-sql.cvs.sourceforge.net/viewvc/squirrel-sql/sql12/plugins/@@--$pluginName--@@</url>
</scm>
@@--$dependencies--@@
<build>
<plugins>
<plugin>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-pmd-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
|