From: <lor...@us...> - 2011-08-22 09:19:42
|
Revision: 3084 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=3084&view=rev Author: lorenz_b Date: 2011-08-22 09:19:36 +0000 (Mon, 22 Aug 2011) Log Message: ----------- Cleaned up pom.xml. Continued release script. Modified Paths: -------------- trunk/interfaces/pom.xml trunk/interfaces/src/main/assemble/archive.xml Modified: trunk/interfaces/pom.xml =================================================================== --- trunk/interfaces/pom.xml 2011-08-22 09:17:56 UTC (rev 3083) +++ trunk/interfaces/pom.xml 2011-08-22 09:19:36 UTC (rev 3084) @@ -13,6 +13,10 @@ <artifactId>dllearner-parent</artifactId> <version>1.0-SNAPSHOT</version> </parent> + + <properties> + <release.name>1.0-alpha-1</release.name> + </properties> <build> <finalName>interfaces</finalName> @@ -125,8 +129,8 @@ </executions> <configuration> <assembleDirectory>${project.build.directory}/dl-learner-dist</assembleDirectory> - <repoPath>lib</repoPath> - <repositoryName>lib</repositoryName> + <repoPath>dl-learner-${release.name}/lib</repoPath> + <repositoryName>dl-learner-${release.name}/lib</repositoryName> <extraJvmArguments>-Xms256m -Xmx1024m</extraJvmArguments> <platforms> <platform>windows</platform> @@ -134,14 +138,6 @@ </platforms> <programs> <program> - <mainClass>org.dllearner.cli.Start</mainClass> - <name>start</name> - </program> - <program> - <mainClass>org.dllearner.cli.QuickStart</mainClass> - <name>quickstart</name> - </program> - <program> <mainClass>org.dllearner.cli.CLI</mainClass> <name>cli</name> </program> @@ -149,10 +145,19 @@ <mainClass>org.dllearner.cli.Enrichment</mainClass> <name>enrichment</name> </program> + <!-- <program> <mainClass>org.dllearner.gui.StartGUI</mainClass> <name>gui</name> </program> + <program> + <mainClass>org.dllearner.cli.QuickStart</mainClass> + <name>quickstart</name> + </program> + <program> + <mainClass>org.dllearner.server.DLLearnerWS</mainClass> + <name>ws</name> + </program> --> </programs> </configuration> </plugin> @@ -167,7 +172,7 @@ </execution> </executions> <configuration> - <finalName>dl-learner-${maven.build.timestamp}</finalName> + <finalName>dl-learner-${release.name}</finalName> <descriptors> <descriptor>src/main/assemble/archive.xml</descriptor> </descriptors> @@ -198,7 +203,6 @@ <dependency> <groupId>org.dllearner</groupId> <artifactId>components-core</artifactId> - </dependency> <!-- Added the dependency of the core tests so that they will be accessible @@ -210,10 +214,7 @@ <scope>test</scope> </dependency> - <dependency> - <groupId>org.dllearner</groupId> - <artifactId>components-ext</artifactId> - </dependency> + <dependency> Modified: trunk/interfaces/src/main/assemble/archive.xml =================================================================== --- trunk/interfaces/src/main/assemble/archive.xml 2011-08-22 09:17:56 UTC (rev 3083) +++ trunk/interfaces/src/main/assemble/archive.xml 2011-08-22 09:19:36 UTC (rev 3084) @@ -1,17 +1,32 @@ <assembly> - <id>archive</id> - <formats> - <format>tar.gz</format> - </formats> - - <fileSets> - <fileSet> - <directory>${project.build.directory}/dl-learner-dist</directory> - <outputDirectory>/</outputDirectory> - </fileSet> - <fileSet> - <directory>../examples</directory> - <outputDirectory>examples</outputDirectory> - </fileSet> - </fileSets> + <id>archive</id> + <formats> + <format>tar.gz</format> + </formats> + + <fileSets> + <fileSet> + <directory>${project.build.directory}/dl-learner-dist/dl-learner-${release.name}/lib</directory> + <outputDirectory>lib</outputDirectory> + </fileSet> + <fileSet> + <directory>${project.build.directory}/dl-learner-dist/bin</directory> + <outputDirectory>/</outputDirectory> + <fileMode>0755</fileMode> + </fileSet> + <fileSet> + <directory>../examples</directory> + <outputDirectory>examples</outputDirectory> + </fileSet> + <fileSet> + <directory>doc</directory> + <outputDirectory>docs</outputDirectory> + <includes> + <include>configOptions.html</include> + <include>javadoc.html</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. |