tutorial-parent-client-javafx8
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.graniteds.tutorials</groupId> <artifactId>tutorial-parent-client-javafx8</artifactId> <version>3.1.0.GA</version> </dependency>
<?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> <parent> <groupId>org.graniteds.tutorials</groupId> <artifactId>tutorial-parent-client-java-base</artifactId> <version>3.1.0.GA</version> </parent> <artifactId>tutorial-parent-client-javafx8</artifactId> <packaging>pom</packaging> <name>GraniteDS Tutorial Parent - JavaFX 8 Client</name> <properties> <client>javafx</client> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>com.zenjava</groupId> <artifactId>javafx-maven-plugin</artifactId> <version>2.0</version> <configuration> <mainClass>${mainclass.name}</mainClass> <jfxMainAppJarName>${app.name}</jfxMainAppJarName> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>add-source</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>${project.build.directory}/generated-sources/gfx</source> </sources> </configuration> </execution> </executions> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>1.7</version> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <taskdef name="gfx" classname="org.granite.generator.javafx.AntJavaFXTask"/> <gfx outputdir="${basedir}/src/main/java" baseoutputdir="${project.build.directory}/generated-sources/gfx" tide="true" uid="uid" entityfactory="org.granite.generator.as3.BVEntityFactory"> <translator java="org.graniteds.tutorial.${app.name}.entities" client="org.graniteds.tutorial.${app.name}.client"/> <translator java="org.graniteds.tutorial.${app.name}.services" client="org.graniteds.tutorial.${app.name}.client"/> <classpath> <path refid="maven.plugin.classpath"/> </classpath> <fileset dir="${basedir}/../server-model/target/classes"> <include name="**/entities/*.class"/> <include name="**/services/*Service.class"/> <include name="**/services/*Repository.class"/> </fileset> </gfx> </target> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> <version>1.8.2</version> </dependency> <dependency> <groupId>org.hibernate.javax.persistence</groupId> <artifactId>hibernate-jpa-2.1-api</artifactId> <version>1.0.0.Final</version> </dependency> <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> <version>1.1.0.Final</version> </dependency> <dependency> <groupId>javax.jdo</groupId> <artifactId>jdo2-api</artifactId> <version>2.3-eb</version> </dependency> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy</artifactId> <version>1.6.0</version> </dependency> <dependency> <groupId>antlr</groupId> <artifactId>antlr</artifactId> <version>2.7.7</version> </dependency> <dependency> <groupId>asm</groupId> <artifactId>asm</artifactId> <version>2.2.3</version> </dependency> <dependency> <groupId>com.thoughtworks.xstream</groupId> <artifactId>xstream</artifactId> <version>1.2.2</version> </dependency> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-jpa</artifactId> <version>1.5.2.RELEASE</version> </dependency> <dependency> <groupId>org.graniteds</groupId> <artifactId>granite-server-core</artifactId> <version>${graniteds.version}</version> </dependency> <dependency> <groupId>org.graniteds</groupId> <artifactId>granite-generator-share</artifactId> <version>${graniteds.version}</version> </dependency> <dependency> <groupId>org.graniteds</groupId> <artifactId>granite-generator</artifactId> <version>${graniteds.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>tutorial-${app.name}-server-model</artifactId> <version>${project.version}</version> <type>jar</type> </dependency> </dependencies> </plugin> </plugins> </pluginManagement> </build> <dependencies> <!-- tag::maven-deps[] --> <dependency> <groupId>org.graniteds</groupId> <artifactId>granite-client-javafx</artifactId> <version>${graniteds.version}</version> <type>jar</type> </dependency> <dependency> <groupId>org.graniteds</groupId> <artifactId>granite-client-javafx-advanced</artifactId> <version>${graniteds.version}</version> <type>jar</type> </dependency> <!-- end::maven-deps[] --> </dependencies> </project>