Skip to content

Instantly share code, notes, and snippets.

Created March 15, 2010 15:32
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 anonymous/332954 to your computer and use it in GitHub Desktop.
Save anonymous/332954 to your computer and use it in GitHub Desktop.
<plugin>
<groupId>org.jfrog.maven.plugins</groupId>
<artifactId>jfrog-javafx-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>main</id>
<phase>compile</phase>
<configuration>
<source>1.6</source>
<target>1.6</target>
<j2seVersion>1.5+</j2seVersion>
<encoding>UTF-8</encoding>
</configuration>
<goals>
<goal>resources</goal>
<goal>compile</goal>
<goal>jnlp</goal>
</goals>
</execution>
<execution>
<id>test</id>
<phase>test-compile</phase>
<configuration>
<source>1.6</source>
<target>1.6</target>
<j2seVersion>1.5+</j2seVersion>
<encoding>UTF-8</encoding>
<sourceDirectory>${basedir}/src/test/javafx</sourceDirectory>
<outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
</configuration>
<goals>
<goal>resources</goal>
<goal>compile</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
<scope>test</scope>
</dependency>
</dependencies>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment