Skip to content

Commit 8a77b89

Browse files
committedMay 19, 2015
Initial commit of ContractR FX. This is non-functional and misses proper build files. We'll have to rework this considerably to work with the latest JavaFXPorts Gradle plugin
1 parent 45a7068 commit 8a77b89

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+4069
-0
lines changed
 

‎ContractRFX/README.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
ContractR FX
2+
============
3+
A JavaFX port of our [ContractR](https://github.com/robovm/robovm-samples/ContractR). This is a work in progress and not fully functional yet.
4+
5+
The project setup follows the recommendations of [JavaFXPorts](http://javafxports.org/page/Getting_Started). Please refer to this documentation on how to run the app on mobile devices.

‎ContractRFX/core/pom.xml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<?xml version="1.0"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<parent>
8+
<groupId>org.robovm</groupId>
9+
<artifactId>ContractR-parent</artifactId>
10+
<version>1.0</version>
11+
<relativePath>../../pom.xml</relativePath>
12+
</parent>
13+
14+
<artifactId>ContractR-fx-core</artifactId>
15+
<name>Core classes for the JavaFX version of the ContractR sample</name>
16+
17+
<packaging>jar</packaging>
18+
19+
<dependencies>
20+
<dependency>
21+
<groupId>org.robovm</groupId>
22+
<artifactId>ContractR-core</artifactId>
23+
<version>${project.version}</version>
24+
</dependency>
25+
</dependencies>
26+
27+
<build>
28+
<plugins>
29+
<plugin>
30+
<artifactId>maven-compiler-plugin</artifactId>
31+
<configuration>
32+
<source>1.8</source>
33+
<target>1.8</target>
34+
</configuration>
35+
</plugin>
36+
</plugins>
37+
</build>
38+
39+
</project>

0 commit comments

Comments
 (0)
Please sign in to comment.