From: <hee...@us...> - 2011-06-21 10:02:31
|
Revision: 2918 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=2918&view=rev Author: heeroyuy Date: 2011-06-21 10:02:25 +0000 (Tue, 21 Jun 2011) Log Message: ----------- -uncommented maven pkg plugin because it works now Modified Paths: -------------- trunk/interfaces/pom.xml Modified: trunk/interfaces/pom.xml =================================================================== --- trunk/interfaces/pom.xml 2011-06-21 00:34:14 UTC (rev 2917) +++ trunk/interfaces/pom.xml 2011-06-21 10:02:25 UTC (rev 2918) @@ -72,8 +72,8 @@ </excludes> </configuration> </plugin> - <!--does not seem to work properly, please test more--> - <!--plugin> + + <plugin> <groupId>de.tarent.maven.plugins</groupId> <artifactId>maven-pkg-plugin</artifactId> <version>2.1.0</version> @@ -123,7 +123,7 @@ </distroConfiguration> </distroConfigurations> </configuration> - </plugin--> + </plugin> </plugins> </build> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <lor...@us...> - 2011-08-21 20:37:46
|
Revision: 3079 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=3079&view=rev Author: lorenz_b Date: 2011-08-21 20:37:40 +0000 (Sun, 21 Aug 2011) Log Message: ----------- First try to build some kind of release. Modified Paths: -------------- trunk/interfaces/pom.xml Modified: trunk/interfaces/pom.xml =================================================================== --- trunk/interfaces/pom.xml 2011-08-21 20:31:32 UTC (rev 3078) +++ trunk/interfaces/pom.xml 2011-08-21 20:37:40 UTC (rev 3079) @@ -1,210 +1,229 @@ <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/xsd/maven-4.0.0.xsd"> - <modelVersion>4.0.0</modelVersion> + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> - <groupId>org.dllearner</groupId> - <artifactId>interfaces</artifactId> - <packaging>jar</packaging> - <name>Interfaces: GUI, CLI, Web Service</name> - <url>http://aksw.org/Projects/DLLearner</url> + <groupId>org.dllearner</groupId> + <artifactId>interfaces</artifactId> + <packaging>jar</packaging> + <name>Interfaces: GUI, CLI, Web Service</name> + <url>http://aksw.org/Projects/DLLearner</url> - <parent> - <groupId>org.dllearner</groupId> - <artifactId>dllearner-parent</artifactId> - <version>1.0-SNAPSHOT</version> - </parent> + <parent> + <groupId>org.dllearner</groupId> + <artifactId>dllearner-parent</artifactId> + <version>1.0-SNAPSHOT</version> + </parent> - <build> - <finalName>interfaces</finalName> - <plugins> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>tomcat-maven-plugin</artifactId> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-resources-plugin</artifactId> - </plugin> + <build> + <finalName>interfaces</finalName> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>tomcat-maven-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-resources-plugin</artifactId> + </plugin> - <plugin> - <groupId>org.mortbay.jetty</groupId> - <artifactId>maven-jetty-plugin</artifactId> - <configuration> - <stopKey>stopKey</stopKey> - <stopPort>9999</stopPort> - <scanIntervalSeconds>1</scanIntervalSeconds> - <requestLog implementation="org.mortbay.jetty.NCSARequestLog"> - <filename>log/yyyy_mm_dd.request.log</filename> - <retainDays>90</retainDays> - <append>true</append> - <extended>true</extended> - <logTimeZone>GMT</logTimeZone> - </requestLog> - </configuration> - <!--execution is used for testing--> - <!--executions> - <execution> - <id>start-jetty</id> - <phase>pre-integration-test</phase> - <goals> - <goal>run</goal> - </goals> - <configuration> - <scanIntervalSeconds>0</scanIntervalSeconds> - <daemon>true</daemon> - <stopKey>stopKey</stopKey> - <stopPort>9999</stopPort> - </configuration> - </execution> - <execution> - <id>stop-jetty</id> - <phase>post-integration-test</phase> - <goals> - <goal>stop</goal> - </goals> - </execution> - </executions--> - </plugin> + <plugin> + <groupId>org.mortbay.jetty</groupId> + <artifactId>maven-jetty-plugin</artifactId> + <configuration> + <stopKey>stopKey</stopKey> + <stopPort>9999</stopPort> + <scanIntervalSeconds>1</scanIntervalSeconds> + <requestLog implementation="org.mortbay.jetty.NCSARequestLog"> + <filename>log/yyyy_mm_dd.request.log</filename> + <retainDays>90</retainDays> + <append>true</append> + <extended>true</extended> + <logTimeZone>GMT</logTimeZone> + </requestLog> + </configuration> + <!--execution is used for testing --> + <!--executions> <execution> <id>start-jetty</id> <phase>pre-integration-test</phase> + <goals> <goal>run</goal> </goals> <configuration> <scanIntervalSeconds>0</scanIntervalSeconds> + <daemon>true</daemon> <stopKey>stopKey</stopKey> <stopPort>9999</stopPort> + </configuration> </execution> <execution> <id>stop-jetty</id> <phase>post-integration-test</phase> + <goals> <goal>stop</goal> </goals> </execution> </executions --> + </plugin> - <!--Surefire - for JUnits --> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <configuration> - <excludes> - <exclude>org/dllearner/test/junit/OWLlinkTest.java</exclude> - </excludes> - </configuration> - </plugin> + <!--Surefire - for JUnits --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <excludes> + <exclude>org/dllearner/test/junit/OWLlinkTest.java</exclude> + </excludes> + </configuration> + </plugin> - <plugin> - <groupId>de.tarent.maven.plugins</groupId> - <artifactId>maven-pkg-plugin</artifactId> - <version>2.1.0</version> - <configuration> + <plugin> + <groupId>de.tarent.maven.plugins</groupId> + <artifactId>maven-pkg-plugin</artifactId> + <version>2.1.0</version> + <configuration> - <defaultTarget>all</defaultTarget> + <defaultTarget>all</defaultTarget> - <defaultDistro>ubuntu_intrepid</defaultDistro> - <shortDescription>My Short Project Description...</shortDescription> + <defaultDistro>ubuntu_intrepid</defaultDistro> + <shortDescription>My Short Project Description...</shortDescription> - <defaults> - <section>misc</section> - <mainClass>org.dllearner.cli.Start</mainClass> - <architecture>all</architecture> - <srcAuxFilesDir>src/main/pkg</srcAuxFilesDir> - <maintainer>Jens Lehmann</maintainer> - </defaults> + <defaults> + <section>misc</section> + <mainClass>org.dllearner.cli.Start</mainClass> + <architecture>all</architecture> + <srcAuxFilesDir>src/main/pkg</srcAuxFilesDir> + <maintainer>Jens Lehmann</maintainer> + </defaults> - <targetConfigurations> + <targetConfigurations> - <targetConfiguration> - <target>i386</target> + <targetConfiguration> + <target>i386</target> - <architecture>i386</architecture> - <srcJNIFilesDir>src/main/native/i386</srcJNIFilesDir> + <architecture>i386</architecture> + <srcJNIFilesDir>src/main/native/i386</srcJNIFilesDir> - </targetConfiguration> + </targetConfiguration> - <targetConfiguration> - <target>armel</target> + <targetConfiguration> + <target>armel</target> - <architecture>armel</architecture> - <srcJNIFilesDir>src/main/native/armel</srcJNIFilesDir> + <architecture>armel</architecture> + <srcJNIFilesDir>src/main/native/armel</srcJNIFilesDir> - </targetConfiguration> + </targetConfiguration> - </targetConfigurations> + </targetConfigurations> - <distroConfigurations> - <distroConfiguration> + <distroConfigurations> + <distroConfiguration> - <distros> - <distro>ubuntu_intrepid</distro> - <distro>ubuntu_karmic</distro> - </distros> + <distros> + <distro>ubuntu_intrepid</distro> + <distro>ubuntu_karmic</distro> + </distros> - </distroConfiguration> - </distroConfigurations> - </configuration> - </plugin> - </plugins> - </build> + </distroConfiguration> + </distroConfigurations> + </configuration> + </plugin> - <dependencies> - <dependency> - <groupId>org.dllearner</groupId> - <artifactId>components-core</artifactId> - - </dependency> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>appassembler-maven-plugin</artifactId> + <version>1.1.1</version> + <configuration> + <assembleDirectory>${project.build.directory}/dl-learner-dist</assembleDirectory> + <repoPath>lib</repoPath> + <repositoryName>lib</repositoryName> + <extraJvmArguments>-Xms256m -Xmx1024m</extraJvmArguments> + <platforms> + <platform>windows</platform> + <platform>unix</platform> + </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> + <program> + <mainClass>org.dllearner.cli.Enrichment</mainClass> + <name>enrichment</name> + </program> + <program> + <mainClass>org.dllearner.gui.StartGUI</mainClass> + <name>gui</name> + </program> + </programs> + </configuration> + </plugin> + </plugins> + </build> - <!-- - Added the dependency of the core tests so that they will be - accessible from the tests in this component - --> - <dependency> - <groupId>org.dllearner</groupId> - <artifactId>components-core</artifactId> - <classifier>tests</classifier> - <scope>test</scope> - </dependency> + <dependencies> + <dependency> + <groupId>org.dllearner</groupId> + <artifactId>components-core</artifactId> - <dependency> - <groupId>org.dllearner</groupId> - <artifactId>components-ext</artifactId> - </dependency> + </dependency> + <!-- Added the dependency of the core tests so that they will be accessible + from the tests in this component --> + <dependency> + <groupId>org.dllearner</groupId> + <artifactId>components-core</artifactId> + <classifier>tests</classifier> + <scope>test</scope> + </dependency> - <dependency> - <groupId>com.jamonapi</groupId> - <artifactId>jamon</artifactId> - </dependency> + <dependency> + <groupId>org.dllearner</groupId> + <artifactId>components-ext</artifactId> + </dependency> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>javax.servlet</groupId> - <artifactId>servlet-api</artifactId> - </dependency> - <dependency> - <groupId>javax.servlet</groupId> - <artifactId>jsp-api</artifactId> - </dependency> - <dependency> - <groupId>javax.servlet</groupId> - <artifactId>jstl</artifactId> - </dependency> + <dependency> + <groupId>com.jamonapi</groupId> + <artifactId>jamon</artifactId> + </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> - <dependency> - <groupId>org.aksw.commons</groupId> - <artifactId>model</artifactId> - <exclusions> - <exclusion> - <groupId>org.slf4j</groupId> - <!-- Exclude Project-D from Project-B --> - <artifactId>slf4j-log4j12</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>com.googlecode.json-simple</groupId> - <artifactId>json-simple</artifactId> - </dependency> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + </dependency> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>jsp-api</artifactId> + </dependency> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>jstl</artifactId> + </dependency> - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-context</artifactId> - </dependency> - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-beans</artifactId> - </dependency> - </dependencies> + <dependency> + <groupId>org.aksw.commons</groupId> + <artifactId>model</artifactId> + <exclusions> + <exclusion> + <groupId>org.slf4j</groupId> + <!-- Exclude Project-D from Project-B --> + <artifactId>slf4j-log4j12</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>com.googlecode.json-simple</groupId> + <artifactId>json-simple</artifactId> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-context</artifactId> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-beans</artifactId> + </dependency> + </dependencies> + + </project> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <lor...@us...> - 2011-08-22 12:31:06
|
Revision: 3088 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=3088&view=rev Author: lorenz_b Date: 2011-08-22 12:30:59 +0000 (Mon, 22 Aug 2011) Log Message: ----------- Added plugin for creating manual pdf-file during packaging phase. Modified Paths: -------------- trunk/interfaces/pom.xml Modified: trunk/interfaces/pom.xml =================================================================== --- trunk/interfaces/pom.xml 2011-08-22 12:19:10 UTC (rev 3087) +++ trunk/interfaces/pom.xml 2011-08-22 12:30:59 UTC (rev 3088) @@ -13,9 +13,9 @@ <artifactId>dllearner-parent</artifactId> <version>1.0-SNAPSHOT</version> </parent> - + <properties> - <release.name>1.0-alpha-1</release.name> + <release.name>1.0-alpha-1</release.name> </properties> <build> @@ -145,19 +145,10 @@ <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> --> + <!-- <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> @@ -196,6 +187,45 @@ <timestampFormat>{0, date, yyyy-MM-dd}</timestampFormat> </configuration> </plugin> + <plugin> + <groupId>de.akquinet.maven</groupId> + <artifactId>maven-latex-plugin</artifactId> + <version>1.1</version> + <configuration> + <settings> + <!-- all tex main documents in this folder (including subfolders) will + be processed --> + <texDirectory>${basedir}/doc/manual</texDirectory> + <!-- the generated artifacts will be copied to this folder relative + to ${project.reporting.outputDirectory} --> + <outputDirectory>.</outputDirectory> + <!-- the working directory, for temporary files and LaTeX processing --> + <tempDirectory>${project.build.directory}/m2latex</tempDirectory> + <!-- clean up the working directory in the end? May be used for debugging --> + <cleanUp>true</cleanUp> + <!-- path to the TeX scripts, if none, it must be on the system path --> + <texPath /> + <!-- the latex command --> + <texCommand>pdflatex</texCommand> + <!-- the bibtex command --> + <bibtexCommand>bibtex</bibtexCommand> + <!-- the arguments to use when calling latex --> + <texCommandArgs> + <texCommandArg>-interaction=nonstopmode</texCommandArg> + <texCommandArg>--src-specials</texCommandArg> + </texCommandArgs> + </settings> + </configuration> + <executions> + <!-- execute latex goal automatically during the site phase --> + <execution> + <phase>prepare-package</phase> + <goals> + <goal>latex</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build> @@ -214,9 +244,9 @@ <scope>test</scope> </dependency> - + <dependency> <groupId>com.jamonapi</groupId> <artifactId>jamon</artifactId> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <lor...@us...> - 2011-08-22 13:56:06
|
Revision: 3092 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=3092&view=rev Author: lorenz_b Date: 2011-08-22 13:55:55 +0000 (Mon, 22 Aug 2011) Log Message: ----------- Put release build into separate profile. Usage: "mvn -Prelease package" Modified Paths: -------------- trunk/interfaces/pom.xml Modified: trunk/interfaces/pom.xml =================================================================== --- trunk/interfaces/pom.xml 2011-08-22 13:54:38 UTC (rev 3091) +++ trunk/interfaces/pom.xml 2011-08-22 13:55:55 UTC (rev 3092) @@ -18,6 +18,110 @@ <release.name>1.0-alpha-1</release.name> </properties> + <profiles> + <profile> + <id>release</id> + <build> + <finalName>interfaces</finalName> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>appassembler-maven-plugin</artifactId> + <version>1.1.1</version> + <executions> + <execution> + <goals> + <goal>assemble</goal> + </goals> + </execution> + </executions> + <configuration> + <assembleDirectory>${project.build.directory}/dl-learner-dist</assembleDirectory> + <repoPath>dl-learner-${release.name}/lib</repoPath> + <repositoryName>dl-learner-${release.name}/lib</repositoryName> + <extraJvmArguments>-Xms256m -Xmx1024m</extraJvmArguments> + <installArtifacts>false</installArtifacts> + <platforms> + <platform>windows</platform> + <platform>unix</platform> + </platforms> + <programs> + <program> + <mainClass>org.dllearner.cli.Start</mainClass> + <name>cli</name> + </program> + <program> + <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> + <plugin> + <artifactId>maven-assembly-plugin</artifactId> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>attached</goal> + </goals> + </execution> + </executions> + <configuration> + <finalName>dl-learner-${release.name}</finalName> + <descriptors> + <descriptor>src/main/assemble/archive.xml</descriptor> + </descriptors> + </configuration> + </plugin> + <plugin> + <groupId>de.akquinet.maven</groupId> + <artifactId>maven-latex-plugin</artifactId> + <version>1.1</version> + <configuration> + <settings> + <!-- all tex main documents in this folder (including subfolders) + will be processed --> + <texDirectory>${basedir}/doc/manual</texDirectory> + <!-- the generated artifacts will be copied to this folder relative + to ${project.reporting.outputDirectory} --> + <outputDirectory>.</outputDirectory> + <!-- the working directory, for temporary files and LaTeX processing --> + <tempDirectory>${project.build.directory}/m2latex</tempDirectory> + <!-- clean up the working directory in the end? May be used for debugging --> + <cleanUp>true</cleanUp> + <!-- path to the TeX scripts, if none, it must be on the system path --> + <texPath /> + <!-- the latex command --> + <texCommand>pdflatex</texCommand> + <!-- the bibtex command --> + <bibtexCommand>bibtex</bibtexCommand> + <!-- the arguments to use when calling latex --> + <texCommandArgs> + <texCommandArg>-interaction=nonstopmode</texCommandArg> + <texCommandArg>--src-specials</texCommandArg> + </texCommandArgs> + </settings> + </configuration> + <executions> + <!-- execute latex goal automatically during the site phase --> + <execution> + <phase>prepare-package</phase> + <goals> + <goal>latex</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> + <build> <finalName>interfaces</finalName> <plugins> @@ -64,168 +168,7 @@ </configuration> </plugin> - <plugin> - <groupId>de.tarent.maven.plugins</groupId> - <artifactId>maven-pkg-plugin</artifactId> - <version>2.1.0</version> - <configuration> - <defaultTarget>all</defaultTarget> - - <defaultDistro>ubuntu_intrepid</defaultDistro> - <shortDescription>My Short Project Description...</shortDescription> - - <defaults> - <section>misc</section> - <mainClass>org.dllearner.cli.Start</mainClass> - <architecture>all</architecture> - <srcAuxFilesDir>src/main/pkg</srcAuxFilesDir> - <maintainer>Jens Lehmann</maintainer> - </defaults> - - <targetConfigurations> - - <targetConfiguration> - <target>i386</target> - - <architecture>i386</architecture> - <srcJNIFilesDir>src/main/native/i386</srcJNIFilesDir> - - </targetConfiguration> - - <targetConfiguration> - <target>armel</target> - - <architecture>armel</architecture> - <srcJNIFilesDir>src/main/native/armel</srcJNIFilesDir> - - </targetConfiguration> - - </targetConfigurations> - - <distroConfigurations> - <distroConfiguration> - - <distros> - <distro>ubuntu_intrepid</distro> - <distro>ubuntu_karmic</distro> - </distros> - - </distroConfiguration> - </distroConfigurations> - </configuration> - </plugin> - - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>appassembler-maven-plugin</artifactId> - <version>1.1.1</version> - <executions> - <execution> - <goals> - <goal>assemble</goal> - </goals> - </execution> - </executions> - <configuration> - <assembleDirectory>${project.build.directory}/dl-learner-dist</assembleDirectory> - <repoPath>dl-learner-${release.name}/lib</repoPath> - <repositoryName>dl-learner-${release.name}/lib</repositoryName> - <extraJvmArguments>-Xms256m -Xmx1024m</extraJvmArguments> - <platforms> - <platform>windows</platform> - <platform>unix</platform> - </platforms> - <programs> - <program> - <mainClass>org.dllearner.cli.CLI</mainClass> - <name>cli</name> - </program> - <program> - <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> - <plugin> - <artifactId>maven-assembly-plugin</artifactId> - <executions> - <execution> - <phase>package</phase> - <goals> - <goal>attached</goal> - </goals> - </execution> - </executions> - <configuration> - <finalName>dl-learner-${release.name}</finalName> - <descriptors> - <descriptor>src/main/assemble/archive.xml</descriptor> - </descriptors> - </configuration> - </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>buildnumber-maven-plugin</artifactId> - <executions> - <execution> - <phase>initialize</phase> - <goals> - <goal>create</goal> - </goals> - </execution> - </executions> - <configuration> - <items> - <item>timestamp</item> - </items> - <timestampFormat>{0, date, yyyy-MM-dd}</timestampFormat> - </configuration> - </plugin> - <plugin> - <groupId>de.akquinet.maven</groupId> - <artifactId>maven-latex-plugin</artifactId> - <version>1.1</version> - <configuration> - <settings> - <!-- all tex main documents in this folder (including subfolders) will - be processed --> - <texDirectory>${basedir}/doc/manual</texDirectory> - <!-- the generated artifacts will be copied to this folder relative - to ${project.reporting.outputDirectory} --> - <outputDirectory>.</outputDirectory> - <!-- the working directory, for temporary files and LaTeX processing --> - <tempDirectory>${project.build.directory}/m2latex</tempDirectory> - <!-- clean up the working directory in the end? May be used for debugging --> - <cleanUp>true</cleanUp> - <!-- path to the TeX scripts, if none, it must be on the system path --> - <texPath /> - <!-- the latex command --> - <texCommand>pdflatex</texCommand> - <!-- the bibtex command --> - <bibtexCommand>bibtex</bibtexCommand> - <!-- the arguments to use when calling latex --> - <texCommandArgs> - <texCommandArg>-interaction=nonstopmode</texCommandArg> - <texCommandArg>--src-specials</texCommandArg> - </texCommandArgs> - </settings> - </configuration> - <executions> - <!-- execute latex goal automatically during the site phase --> - <execution> - <phase>prepare-package</phase> - <goals> - <goal>latex</goal> - </goals> - </execution> - </executions> - </plugin> </plugins> </build> @@ -234,7 +177,6 @@ <groupId>org.dllearner</groupId> <artifactId>components-core</artifactId> </dependency> - <!-- Added the dependency of the core tests so that they will be accessible from the tests in this component --> <dependency> @@ -243,21 +185,15 @@ <classifier>tests</classifier> <scope>test</scope> </dependency> - - - - <dependency> <groupId>com.jamonapi</groupId> <artifactId>jamon</artifactId> </dependency> - <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> - <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> @@ -270,8 +206,6 @@ <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> </dependency> - - <dependency> <groupId>org.aksw.commons</groupId> <artifactId>model</artifactId> @@ -287,7 +221,6 @@ <groupId>com.googlecode.json-simple</groupId> <artifactId>json-simple</artifactId> </dependency> - <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sha...@us...> - 2011-08-23 03:24:15
|
Revision: 3095 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=3095&view=rev Author: shadowtm Date: 2011-08-23 03:24:09 +0000 (Tue, 23 Aug 2011) Log Message: ----------- Excluded tests that shouldn't be running from being run automatically Modified Paths: -------------- trunk/interfaces/pom.xml Modified: trunk/interfaces/pom.xml =================================================================== --- trunk/interfaces/pom.xml 2011-08-23 03:16:55 UTC (rev 3094) +++ trunk/interfaces/pom.xml 2011-08-23 03:24:09 UTC (rev 3095) @@ -19,8 +19,8 @@ </properties> <profiles> - <profile> - <id>release</id> + <profile> + <id>release</id> <build> <finalName>interfaces</finalName> <plugins> @@ -118,7 +118,7 @@ </executions> </plugin> </plugins> - </build> + </build> </profile> </profiles> @@ -164,6 +164,9 @@ <configuration> <excludes> <exclude>org/dllearner/test/junit/OWLlinkTest.java</exclude> + <exclude>org/dllearner/configuration/spring/TestBean.java</exclude> + <exclude>org/dllearner/test/SpringTest.java</exclude> + <exclude>org/dllearner/test/junit/GeizhalsTest.java</exclude> </excludes> </configuration> </plugin> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sha...@us...> - 2011-08-28 00:59:19
|
Revision: 3145 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=3145&view=rev Author: shadowtm Date: 2011-08-28 00:59:13 +0000 (Sun, 28 Aug 2011) Log Message: ----------- Corrected test exclusion Modified Paths: -------------- trunk/interfaces/pom.xml Modified: trunk/interfaces/pom.xml =================================================================== --- trunk/interfaces/pom.xml 2011-08-27 21:13:37 UTC (rev 3144) +++ trunk/interfaces/pom.xml 2011-08-28 00:59:13 UTC (rev 3145) @@ -168,7 +168,7 @@ <exclude>org/dllearner/configuration/spring/TestBean.java</exclude> <exclude>org/dllearner/test/SpringTest.java</exclude> <exclude>org/dllearner/test/junit/GeizhalsTest.java</exclude> - <exclude>org/dllearner/cli/MoosiqueCLITest</exclude> + <exclude>org/dllearner/cli/MoosiqueCLITest.java</exclude> </excludes> </configuration> </plugin> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sha...@us...> - 2011-08-29 13:02:29
|
Revision: 3160 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=3160&view=rev Author: shadowtm Date: 2011-08-29 13:02:23 +0000 (Mon, 29 Aug 2011) Log Message: ----------- Removed Test that was failing - temporary until we get map post processing handled. Modified Paths: -------------- trunk/interfaces/pom.xml Modified: trunk/interfaces/pom.xml =================================================================== --- trunk/interfaces/pom.xml 2011-08-29 13:00:16 UTC (rev 3159) +++ trunk/interfaces/pom.xml 2011-08-29 13:02:23 UTC (rev 3160) @@ -169,6 +169,7 @@ <exclude>org/dllearner/test/SpringTest.java</exclude> <exclude>org/dllearner/test/junit/GeizhalsTest.java</exclude> <exclude>org/dllearner/cli/MoosiqueCLITest.java</exclude> + <exclude>org/dllearner/configuration/spring/ConfigurationBasedPropertyOverrideConfigurerTest.java</exclude> </excludes> </configuration> </plugin> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <lor...@us...> - 2011-09-02 12:09:52
|
Revision: 3234 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=3234&view=rev Author: lorenz_b Date: 2011-09-02 12:09:46 +0000 (Fri, 02 Sep 2011) Log Message: ----------- Changed generated file. Modified Paths: -------------- trunk/interfaces/pom.xml Modified: trunk/interfaces/pom.xml =================================================================== --- trunk/interfaces/pom.xml 2011-09-02 12:05:18 UTC (rev 3233) +++ trunk/interfaces/pom.xml 2011-09-02 12:09:46 UTC (rev 3234) @@ -47,7 +47,7 @@ </platforms> <programs> <program> - <mainClass>org.dllearner.cli.Start</mainClass> + <mainClass>org.dllearner.cli.CLI</mainClass> <name>cli</name> </program> <program> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sha...@us...> - 2011-09-03 02:53:39
|
Revision: 3243 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=3243&view=rev Author: shadowtm Date: 2011-09-03 02:53:32 +0000 (Sat, 03 Sep 2011) Log Message: ----------- Changed app assembly plugins to use flat repository layout so all jars would be in the lib directory rather than the lib/xxx/xxx/xxx/... directory. This was causing a problem with starting up on windows. Modified Paths: -------------- trunk/interfaces/pom.xml Modified: trunk/interfaces/pom.xml =================================================================== --- trunk/interfaces/pom.xml 2011-09-03 01:13:08 UTC (rev 3242) +++ trunk/interfaces/pom.xml 2011-09-03 02:53:32 UTC (rev 3243) @@ -36,6 +36,7 @@ </execution> </executions> <configuration> + <repositoryLayout>flat</repositoryLayout> <assembleDirectory>${project.build.directory}/dl-learner-dist</assembleDirectory> <repoPath>lib</repoPath> <repositoryName>lib</repositoryName> @@ -86,10 +87,10 @@ <version>1.1</version> <configuration> <settings> - <!-- all tex main documents in this folder (including subfolders) + <!-- all tex main documents in this folder (including subfolders) will be processed --> <texDirectory>${basedir}/doc/manual</texDirectory> - <!-- the generated artifacts will be copied to this folder relative + <!-- the generated artifacts will be copied to this folder relative to ${project.reporting.outputDirectory} --> <outputDirectory>.</outputDirectory> <!-- the working directory, for temporary files and LaTeX processing --> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <lor...@us...> - 2011-09-08 10:09:59
|
Revision: 3247 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=3247&view=rev Author: lorenz_b Date: 2011-09-08 10:09:53 +0000 (Thu, 08 Sep 2011) Log Message: ----------- Added dependency to generated spring bean classes which are now available as jar in out internal repository. Modified Paths: -------------- trunk/interfaces/pom.xml Modified: trunk/interfaces/pom.xml =================================================================== --- trunk/interfaces/pom.xml 2011-09-08 09:49:37 UTC (rev 3246) +++ trunk/interfaces/pom.xml 2011-09-08 10:09:53 UTC (rev 3247) @@ -258,6 +258,11 @@ <groupId>org.apache.xmlbeans</groupId> <artifactId>xmlbeans</artifactId> </dependency> + <dependency> + <groupId>org.dllearner</groupId> + <artifactId>spring-xmlbeans-3.0</artifactId> + <version>1.0</version> + </dependency> </dependencies> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dc...@us...> - 2012-05-01 07:53:29
|
Revision: 3673 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=3673&view=rev Author: dcherix Date: 2012-05-01 07:53:23 +0000 (Tue, 01 May 2012) Log Message: ----------- groupId from maven-taex-plugin changed to the new one. Add dependecy for xercesImpl. Modified Paths: -------------- trunk/interfaces/pom.xml Modified: trunk/interfaces/pom.xml =================================================================== --- trunk/interfaces/pom.xml 2012-04-30 11:59:31 UTC (rev 3672) +++ trunk/interfaces/pom.xml 2012-05-01 07:53:23 UTC (rev 3673) @@ -85,9 +85,9 @@ </configuration> </plugin> <plugin> - <groupId>de.akquinet.maven</groupId> + <groupId>de.akquinet.jbosscc.latex</groupId> <artifactId>maven-latex-plugin</artifactId> - <version>1.1</version> + <version>1.2</version> <configuration> <settings> <!-- all tex main documents in this folder (including subfolders) @@ -170,9 +170,9 @@ </configuration> </plugin> <plugin> - <groupId>de.akquinet.maven</groupId> + <groupId>de.akquinet.jbosscc.latex</groupId> <artifactId>maven-latex-plugin</artifactId> - <version>1.1</version> + <version>1.2</version> <configuration> <settings> <!-- all tex main documents in this folder (including subfolders) @@ -488,6 +488,11 @@ </dependency> <!--END Logging Dependencies --> + <dependency> + <groupId>xerces</groupId> + <artifactId>xercesImpl</artifactId> + <version>2.8.0</version> + </dependency> </dependencies> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dc...@us...> - 2013-05-02 10:57:45
|
Revision: 3935 http://sourceforge.net/p/dl-learner/code/3935 Author: dcherix Date: 2013-05-02 10:57:42 +0000 (Thu, 02 May 2013) Log Message: ----------- Added profile to create a standalone executable war Modified Paths: -------------- trunk/interfaces/pom.xml Modified: trunk/interfaces/pom.xml =================================================================== --- trunk/interfaces/pom.xml 2013-05-02 10:29:57 UTC (rev 3934) +++ trunk/interfaces/pom.xml 2013-05-02 10:57:42 UTC (rev 3935) @@ -4,7 +4,7 @@ <artifactId>interfaces</artifactId> - <packaging>jar</packaging> + <packaging>${packaging.type}</packaging> <name>Interfaces: GUI, CLI, Web Service</name> <url>http://aksw.org/Projects/DLLearner</url> @@ -19,11 +19,81 @@ <release.name>1.0-beta-2</release.name> <dist-dir>dl-learner-dist</dist-dir> <install-dir>share/dl-learner</install-dir> + <packaging.type>jar</packaging.type> </properties> <profiles> <profile> + <id>jetty</id> + <properties> + <packaging.type>war</packaging.type> + </properties> + <build> + <plugins> + <!-- <plugin> <groupId>org.simplericity.jettyconsole</groupId> <artifactId>jetty-console-maven-plugin</artifactId> + <version>1.50</version> <executions> <execution> <goals> <goal>createconsole</goal> + </goals> <configuration> <backgroundImage>${basedir}/src/main/resources/dl.gif</backgroundImage> + <additionalDependencies> <additionalDependency> <artifactId>jetty-console-log4j-plugin</artifactId> + </additionalDependency> </additionalDependencies> </configuration> </execution> + </executions> </plugin> --> + <plugin> + <groupId>org.apache.tomcat.maven</groupId> + <artifactId>tomcat7-maven-plugin</artifactId> + <version>2.1</version> + <executions> + <execution> + <id>tomcat-run</id> + <goals> + <goal>exec-war-only</goal> + </goals> + <phase>package</phase> + <configuration> + <path>/interfaces</path> + <enableNaming>false</enableNaming> + <finalName>dl-learner-standalone.jar</finalName> + <charset>utf-8</charset> + <extraDependencies> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + <version>${slf4j.version}</version> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>jul-to-slf4j</artifactId> + <version>${slf4j.version}</version> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + <version>${slf4j.version}</version> + </dependency> + <dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + <version>${log4j.version}</version> + </dependency> + </extraDependencies> + <extraResources> + <extraRexource> + <directory>${basedir}/src/main/resources/</directory> + <includes> + <include>log4j.properties</include> + </includes> + </extraRexource> + </extraResources> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + <profile> <id>release</id> + <properties> + <packaging.type>jar</packaging.type> + </properties> <build> <finalName>interfaces</finalName> <plugins> @@ -128,6 +198,9 @@ </profile> <profile> <id>debpackage</id> + <properties> + <packaging.type>jar</packaging.type> + </properties> <build> <finalName>dl-learner</finalName> <plugins> @@ -345,12 +418,12 @@ <logTimeZone>GMT</logTimeZone> </requestLog> <connectors> - <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector"> - <port>9099</port> - <maxIdleTime>60000</maxIdleTime> - </connector> - </connectors> - + <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector"> + <port>9099</port> + <maxIdleTime>60000</maxIdleTime> + </connector> + </connectors> + </configuration> <!--execution is used for testing --> <!--executions> <execution> <id>start-jetty</id> <phase>pre-integration-test</phase> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <lor...@us...> - 2013-06-12 09:13:46
|
Revision: 3992 http://sourceforge.net/p/dl-learner/code/3992 Author: lorenz_b Date: 2013-06-12 09:13:43 +0000 (Wed, 12 Jun 2013) Log Message: ----------- Added Maven exec plugin. Modified Paths: -------------- trunk/interfaces/pom.xml Modified: trunk/interfaces/pom.xml =================================================================== --- trunk/interfaces/pom.xml 2013-06-12 09:00:36 UTC (rev 3991) +++ trunk/interfaces/pom.xml 2013-06-12 09:13:43 UTC (rev 3992) @@ -447,8 +447,26 @@ </excludes> </configuration> </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <version>1.2</version> + <executions> + <execution> + <goals> + <goal>exec</goal> + </goals> + </execution> + </executions> + <configuration> + <executable>java</executable> + <arguments> + <argument>-Xms512m</argument> + <argument>-Xmx4000m</argument> + </arguments> + </configuration> + </plugin> - </plugins> </build> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |