From: <lor...@us...> - 2011-11-28 10:01:18
|
Revision: 3441 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=3441&view=rev Author: lorenz_b Date: 2011-11-28 10:01:07 +0000 (Mon, 28 Nov 2011) Log Message: ----------- Added exec-maven-plugin. Modified Paths: -------------- trunk/scripts/pom.xml Modified: trunk/scripts/pom.xml =================================================================== --- trunk/scripts/pom.xml 2011-11-28 09:58:31 UTC (rev 3440) +++ trunk/scripts/pom.xml 2011-11-28 10:01:07 UTC (rev 3441) @@ -1,61 +1,61 @@ <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>scripts</artifactId> - <packaging>jar</packaging> + <groupId>org.dllearner</groupId> + <artifactId>scripts</artifactId> + <packaging>jar</packaging> - <name>Executable scripts</name> - <url>http://aksw.org/Projects/DLLearner</url> + <name>Executable scripts</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> - <dependencies> - <dependency> - <groupId>org.dllearner</groupId> - <artifactId>components-core</artifactId> - </dependency> - <dependency> - <groupId>org.dllearner</groupId> - <artifactId>components-ext</artifactId> - </dependency> - <dependency> - <groupId>org.dllearner</groupId> - <artifactId>interfaces</artifactId> - </dependency> - <dependency> - <groupId>net.sourceforge.secondstring</groupId> - <artifactId>secondstring</artifactId> - </dependency> - <dependency> - <groupId>postgresql</groupId> - <artifactId>postgresql</artifactId> - </dependency> - <dependency> - <groupId>com.dumontierlab</groupId> - <artifactId>pdb2rdf-parser</artifactId> - <exclusions> - <exclusion> - <artifactId>slf4j-log4j12</artifactId> - <groupId>org.slf4j</groupId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>com.dumontierlab</groupId> - <artifactId>pdb2rdf-cli</artifactId> - </dependency> - <dependency> - <groupId>org.aksw.commons</groupId> - <artifactId>sparql</artifactId> - </dependency> + <dependencies> <dependency> + <groupId>org.dllearner</groupId> + <artifactId>components-core</artifactId> + </dependency> + <dependency> + <groupId>org.dllearner</groupId> + <artifactId>components-ext</artifactId> + </dependency> + <dependency> + <groupId>org.dllearner</groupId> + <artifactId>interfaces</artifactId> + </dependency> + <dependency> + <groupId>net.sourceforge.secondstring</groupId> + <artifactId>secondstring</artifactId> + </dependency> + <dependency> + <groupId>postgresql</groupId> + <artifactId>postgresql</artifactId> + </dependency> + <dependency> + <groupId>com.dumontierlab</groupId> + <artifactId>pdb2rdf-parser</artifactId> + <exclusions> + <exclusion> + <artifactId>slf4j-log4j12</artifactId> + <groupId>org.slf4j</groupId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>com.dumontierlab</groupId> + <artifactId>pdb2rdf-cli</artifactId> + </dependency> + <dependency> + <groupId>org.aksw.commons</groupId> + <artifactId>sparql</artifactId> + </dependency> + <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> </dependency> @@ -69,6 +69,32 @@ <artifactId>weka</artifactId> <version>3.6.5</version> </dependency> - - </dependencies> + + </dependencies> + + <build> + <plugins> + <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> </project> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |