Skip to content

Instantly share code, notes, and snippets.

@christophe-dooapp
Created November 26, 2013 16:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save christophe-dooapp/7661234 to your computer and use it in GitHub Desktop.
Save christophe-dooapp/7661234 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>DSDK-entity</groupId>
<artifactId>DSDK-entity</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>com.dooapp</groupId>
<artifactId>dsdk-runtime</artifactId>
<version>3.2.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.jdom</groupId>
<artifactId>jdom2</artifactId>
<version>2.0.4</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
<version>3.2</version>
</dependency>
<dependency>
<groupId>com.dooapp</groupId>
<artifactId>viewbinder</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<encoding>UTF-8</encoding>
<source>1.6</source>
<target>1.7</target>
<optimize>true</optimize>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>com.dooapp.init.DsdkLauncher</mainClass>
<systemProperties>
<systemProperty>
<key>PRODUCTION</key>
<value>true</value>
</systemProperty>
<systemProperty>
<key>WORKSPACE</key>
<value>${project.build.directory}</value>
</systemProperty>
<systemProperty>
<key>hibernate.connection.url</key>
<value>jdbc:h2:mem:test;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE</value>
</systemProperty>
<systemProperty>
<key>hibernate.connection.username</key>
<value>sa</value>
</systemProperty>
<systemProperty>
<key>hibernate.connection.password</key>
<value></value>
</systemProperty>
</systemProperties>
</configuration>
</plugin>
<plugin>
<groupId>com.dooapp</groupId>
<artifactId>spoon-maven-plugin</artifactId>
<version>1.1-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>com.dooapp</groupId>
<artifactId>fx-spoon</artifactId>
<version>2.0-SNAPSHOT</version>
</dependency>
</dependencies>
<configuration>
<outFolder>${basedir}/src/main/java</outFolder>
</configuration>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment