Update of /cvsroot/squirrel-sql/mavenize/squirrelsql-translations
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv15980/squirrelsql-translations
Added Files:
pom.xml
Log Message:
Maven project for translations. This organization is very simple and helpful if Gerd and I will always maintain the translation artifacts. However, if we want to delegate to translators to be able to upload their own artifacts, then clearly this will not be the best approach. In any case, for now this will work.
--- NEW FILE: 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>
<groupId>net.sourceforge.squirrel_sql</groupId>
<artifactId>squirrelsql-translations</artifactId>
<packaging>jar</packaging>
<version>3.1.0-SNAPSHOT</version>
<!-- This is blatant copy/paste from squirrelsql-launcher pom.xml -->
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<addMavenDescriptor>false</addMavenDescriptor>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>
|