Skip to content

Commit

Permalink
Initial release of drift-fx-jogl
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Anctil committed May 1, 2019
1 parent 3e8bfe7 commit e270903
Show file tree
Hide file tree
Showing 83 changed files with 67,524 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
target/
.classpath
.flattened-pom.xml
.settings/
.project
.vs/
CMakeFiles/
CMakeCache.txt
*.cmake
*.vcxproj.user
pom.xml.versionsBackup
drift-fx-jogl-native/win-x64/*.vcxproj*
drift-fx-jogl-native/win-x64/*.sln
drift-fx-jogl-native/win-x64/DriftFX/
drift-fx-jogl-native/win-x64/lib/
drift-fx-jogl-native/win-x64/x64/
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
# drift-fx-jogl
A modified drift-fx implementation for integrating javafx with opengl on jogl
Drift-fx is available here: https://github.com/eclipse-efx/efxclipse-drift

Support for java 11 is included and the maven setup is a multi-release jar, but the java 11 is mostly untested.

This was forked from the very first released code and is mostly for personal projects, don't expect much support. When time permits, I will try to upstream if desired.
49 changes: 49 additions & 0 deletions drift-fx-jogl-jfx11/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<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>dev.anctil.drift-fx</groupId>
<artifactId>drift-fx-jogl-parent</artifactId>
<version>0.5.0</version>
</parent>

<artifactId>drift-fx-jogl-jfx11</artifactId>

<properties>
<maven.compiler.release>11</maven.compiler.release>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.install.skip>true</maven.install.skip>
</properties>

<dependencies>
<dependency>
<groupId>dev.anctil.drift-fx</groupId>
<artifactId>drift-fx-jogl-jfx8</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-graphics</artifactId>
<version>11.0.2</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<archive>
<addMavenDescriptor>false</addMavenDescriptor>
</archive>
</configuration>
</plugin>
</plugins>
</build>

</project>
Loading

0 comments on commit e270903

Please sign in to comment.