Update of /cvsroot/squirrel-sql/mavenize/squirrelsql-translations
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv24723/squirrelsql-translations
Modified Files:
pom.xml
Log Message:
Include developers section as required by sonatype for free OSS repository hosting (http://oss.sonatype.org)
Index: pom.xml
===================================================================
RCS file: /cvsroot/squirrel-sql/mavenize/squirrelsql-translations/pom.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** pom.xml 21 Aug 2009 04:59:57 -0000 1.3
--- pom.xml 30 Aug 2009 20:24:33 -0000 1.4
***************
*** 2,21 ****
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.sf.squirrel_sql</groupId>
<artifactId>squirrelsql-translations</artifactId>
<version>3.1.0-SNAPSHOT</version>
<packaging>jar</packaging>
-
- <name>SQuirreL-SQL Translations</name>
<licenses>
<license>
! <name>GNU Lesser</name>
<url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-- This is blatant copy/paste from squirrelsql-launcher pom.xml -->
<build>
--- 2,65 ----
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.sf.squirrel_sql</groupId>
<artifactId>squirrelsql-translations</artifactId>
<version>3.1.0-SNAPSHOT</version>
<packaging>jar</packaging>
+ <name>SQuirreL-SQL Translations</name>
+ <description>
+ The project that contains all of the translation jars that are shipped with the installer
+ </description>
+ <inceptionYear>2001</inceptionYear>
+ <developers>
+ <developer>
+ <name>Gerd Wagner</name>
+ <roles>
+ <role>Administrator</role>
+ <role>Developer</role>
+ </roles>
+ </developer>
+ <developer>
+ <name>Rob Manning</name>
+ <roles>
+ <role>Developer</role>
+ <role>Release Manager</role>
+ </roles>
+ </developer>
+ </developers>
<licenses>
<license>
! <name>GNU Lesser General Public License</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/installer</url>
+ </scm>
+ <issueManagement>
+ <system>SourceForge Tracker</system>
+ <url>http://sourceforge.net/tracker/?group_id=28383%26atid=393414</url>
+ </issueManagement>
+ <ciManagement>
+ <system>Hudson</system>
+ <url>https://www.squirrel-sql.org/hudson/</url>
+ </ciManagement>
+ <distributionManagement>
+ <repository>
+ <id>nexus.internal</id>
+ <name>SQuirreL-SQL Release Repository</name>
+ <url>http://10.0.1.30/nexus/content/repositories/releases</url>
+ </repository>
+ <snapshotRepository>
+ <id>nexus.internal</id>
+ <name>SQuirreL-SQL Snapshot Repository</name>
+ <url>http://10.0.1.30/nexus/content/repositories/snapshots</url>
+ </snapshotRepository>
+ </distributionManagement>
+
<!-- This is blatant copy/paste from squirrelsql-launcher pom.xml -->
<build>
***************
*** 35,38 ****
--- 79,96 ----
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-gpg-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>sign-artifacts</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>sign</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+
</plugins>
</build>
|