Revision: 5782
http://squirrel-sql.svn.sourceforge.net/squirrel-sql/?rev=5782&view=rev
Author: manningr
Date: 2010-08-10 11:59:34 +0000 (Tue, 10 Aug 2010)
Log Message:
-----------
New project for creating an aggregate source archive for upload to SF during release.
Modified Paths:
--------------
trunk/sql12/installer/pom.xml
Added Paths:
-----------
trunk/sql12/installer/squirrelsql-source/
trunk/sql12/installer/squirrelsql-source/pom.xml
trunk/sql12/installer/squirrelsql-source/src/
trunk/sql12/installer/squirrelsql-source/src/main/
trunk/sql12/installer/squirrelsql-source/src/main/java/
trunk/sql12/installer/squirrelsql-source/src/main/resources/
trunk/sql12/installer/squirrelsql-source/src/main/resources/assemblies/
trunk/sql12/installer/squirrelsql-source/src/main/resources/assemblies/source-assembly.xml
Modified: trunk/sql12/installer/pom.xml
===================================================================
--- trunk/sql12/installer/pom.xml 2010-08-09 22:41:14 UTC (rev 5781)
+++ trunk/sql12/installer/pom.xml 2010-08-10 11:59:34 UTC (rev 5782)
@@ -62,5 +62,6 @@
<module>squirrelsql-launcher</module>
<module>squirrelsql-other-installer</module>
<module>squirrelsql-macosx-installer</module>
+ <module>squirrelsql-source</module>
</modules>
</project>
\ No newline at end of file
Property changes on: trunk/sql12/installer/squirrelsql-source
___________________________________________________________________
Added: svn:ignore
+ target
.project
.classpath
.settings
Added: trunk/sql12/installer/squirrelsql-source/pom.xml
===================================================================
--- trunk/sql12/installer/squirrelsql-source/pom.xml (rev 0)
+++ trunk/sql12/installer/squirrelsql-source/pom.xml 2010-08-10 11:59:34 UTC (rev 5782)
@@ -0,0 +1,97 @@
+<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>
+ <artifactId>installer</artifactId>
+ <groupId>net.sf.squirrel-sql</groupId>
+ <version>3.2.0-SNAPSHOT</version>
+ </parent>
+ <groupId>net.sf.squirrel-sql</groupId>
+ <artifactId>squirrelsql-source</artifactId>
+ <version>3.2.0-SNAPSHOT</version>
+ <name>SQuirreL SQL Client Source Archive (Aggregate)</name>
+ <description>
+ This is a project to create a single source archive of the entire source tree as a
+ convenience for those who cannot access Maven Central
+ </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</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>
+ <connection>scm:svn:https://squirrel-sql.svn.sourceforge.net/svnroot/squirrel-sql/trunk/sql12/</connection>
+ <developerConnection>scm:svn:http://squirrel-sql.svn.sourceforge.net/viewvc/squirrel-sql/trunk/sql12/</developerConnection>
+ <url>http://squirrel-sql.svn.sourceforge.net/viewvc/squirrel-sql/trunk/sql12/</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>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-scm-plugin</artifactId>
+ <version>1.4</version>
+ <executions>
+ <execution>
+ <configuration>
+ <baseDir>sql12</baseDir>
+ <exportDirectory>target/sources</exportDirectory>
+ </configuration>
+ <goals>
+ <goal>export</goal>
+ </goals>
+ <phase>generate-sources</phase>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <version>${assembly-plugin-version}</version>
+ <executions>
+ <execution>
+ <id>create-source-archive</id>
+ <phase>package</phase>
+ <goals>
+ <goal>single</goal>
+ </goals>
+ <configuration>
+ <descriptors>
+ <descriptor>src/main/resources/assemblies/source-assembly.xml</descriptor>
+ </descriptors>
+ <finalName>squirrel-sql-source</finalName>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+
+ </build>
+</project>
\ No newline at end of file
Added: trunk/sql12/installer/squirrelsql-source/src/main/resources/assemblies/source-assembly.xml
===================================================================
--- trunk/sql12/installer/squirrelsql-source/src/main/resources/assemblies/source-assembly.xml (rev 0)
+++ trunk/sql12/installer/squirrelsql-source/src/main/resources/assemblies/source-assembly.xml 2010-08-10 11:59:34 UTC (rev 5782)
@@ -0,0 +1,17 @@
+<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
+<!-- <id>bin</id>-->
+ <formats>
+ <format>zip</format>
+ </formats>
+ <fileSets>
+ <fileSet>
+ <directory>target/sources</directory>
+ <outputDirectory>sql12</outputDirectory>
+ <includes>
+ <include>**</include>
+ </includes>
+ </fileSet>
+ </fileSets>
+</assembly>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|