Skip to content

Instantly share code, notes, and snippets.

@christophe-dooapp
Created December 30, 2013 09:46
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/8179945 to your computer and use it in GitHub Desktop.
Save christophe-dooapp/8179945 to your computer and use it in GitHub Desktop.
The gist
<?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>AProject</groupId>
<artifactId>AProject</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>com.dooapp</groupId>
<artifactId>dsdk-runtime</artifactId>
<version>3.4.0-SNAPSHOT</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.dooapp</groupId>
<artifactId>spoon-maven-plugin</artifactId>
<version>1.1</version>
<dependencies>
<dependency>
<groupId>com.dooapp</groupId>
<artifactId>fx-spoon</artifactId>
<version>2.0-SNAPSHOT</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>visitor-generation</id>
<phase>generate-sources</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<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