mirror of
https://github.com/badvision/lawless-legends.git
synced 2024-11-06 05:07:34 +00:00
95 lines
3.8 KiB
XML
95 lines
3.8 KiB
XML
<?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>org.badvision</groupId>
|
|
<artifactId>OutlawEditor</artifactId>
|
|
<name>OutlawEditor</name>
|
|
<packaging>jar</packaging>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<organization>
|
|
<!-- Used as the 'Vendor' for JNLP generation -->
|
|
<name>org.badvision</name>
|
|
</organization>
|
|
<build>
|
|
<finalName>OutlawEditor</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.zenjava</groupId>
|
|
<artifactId>javafx-maven-plugin</artifactId>
|
|
<version>8.1.2</version>
|
|
<configuration>
|
|
outlawEditor
|
|
<mainClass>org.badvision.outlaweditor.Application</mainClass>
|
|
<!-- only required if signing the jar file -->
|
|
<keyStoreAlias>example-user</keyStoreAlias>
|
|
<keyStorePassword>example-password</keyStorePassword>
|
|
<allPermissions>true</allPermissions>
|
|
<bundleType>ALL</bundleType>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>package</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
<version>3.1</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.jvnet.jaxb2.maven2</groupId>
|
|
<artifactId>maven-jaxb2-plugin</artifactId>
|
|
<version>0.12.3</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>generate</goal>
|
|
</goals>
|
|
<configuration>
|
|
<schemaIncludes>
|
|
<include>jaxb/OutlawSchema/*.xsd</include>
|
|
</schemaIncludes>
|
|
<episodeFile>${project.build.directory}/generated-sources/xjc/META-INF/jaxb-OutlawSchema.episode</episodeFile>
|
|
<generatePackage>org.badvision.outlaweditor.data.xml</generatePackage>
|
|
</configuration>
|
|
<id>jaxb-generate-OutlawSchema</id>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<!-- <dependency>
|
|
<groupId>com.oracle</groupId>
|
|
<artifactId>javafx</artifactId>
|
|
<version>2</version>
|
|
<systemPath>${java.home}/lib/jfxrt.jar</systemPath>
|
|
<scope>system</scope>
|
|
</dependency>-->
|
|
<dependency>
|
|
<groupId>javafx-packager</groupId>
|
|
<artifactId>javafx-packager</artifactId>
|
|
<version>1.8</version>
|
|
<systemPath>${java.home}/../lib/ant-javafx.jar</systemPath>
|
|
<scope>system</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.11</version>
|
|
<scope>test</scope>
|
|
<type>jar</type>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|