-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extracted files from WebFx main repository
- Loading branch information
Showing
35 changed files
with
11,401 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
### Maven | ||
target/ | ||
|
||
### Java | ||
*.class | ||
|
||
### JetBrains IntelliJ IDEA | ||
|
||
/out/ | ||
|
||
# User-specific stuff: | ||
.idea/ | ||
|
||
.idea/libraries/ | ||
|
||
## File-based project format: | ||
*.ipr | ||
*.iws | ||
*.iml | ||
|
||
### Eclipse template | ||
|
||
.metadata | ||
bin/ | ||
tmp/ | ||
*.tmp | ||
*.bak | ||
*.swp | ||
*~.nib | ||
local.properties | ||
.settings/ | ||
.loadpath | ||
.recommenders | ||
|
||
# External tool builders | ||
.externalToolBuilders/ | ||
|
||
# Locally stored "Eclipse launch configurations" | ||
*.launch | ||
|
||
# PyDev specific (Python IDE for Eclipse) | ||
*.pydevproject | ||
|
||
# CDT-specific (C/C++ Development Tooling) | ||
.cproject | ||
|
||
# CDT- autotools | ||
.autotools | ||
|
||
# Java annotation processor (APT) | ||
.factorypath | ||
|
||
# PDT-specific (PHP Development Tools) | ||
.buildpath | ||
|
||
# sbteclipse plugin | ||
.target | ||
|
||
# Tern plugin | ||
.tern-project | ||
|
||
# TeXlipse plugin | ||
.texlipse | ||
|
||
# STS (Spring Tool Suite) | ||
.springBeans | ||
|
||
# Code Recommenders | ||
.recommenders/ | ||
|
||
# Annotation Processing | ||
.apt_generated/ | ||
|
||
# Scala IDE specific (Scala & Java development for Eclipse) | ||
.cache-main | ||
.scala_dependencies | ||
.worksheet | ||
|
||
.classpath | ||
.project |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?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"> | ||
<parent> | ||
<artifactId>webfx-demos</artifactId> | ||
<groupId>org.webfx</groupId> | ||
<version>0.1.0-SNAPSHOT</version> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<artifactId>webfx-demo-moderngauge</artifactId> | ||
<packaging>pom</packaging> | ||
|
||
<modules> | ||
<module>webfx-demo-moderngauge-application</module> | ||
<module>webfx-demo-moderngauge-application-javafx</module> | ||
<module>webfx-demo-moderngauge-application-gwt</module> | ||
<module>webfx-demo-moderngauge-application-gluon</module> | ||
</modules> | ||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><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"> | ||
<parent> | ||
<artifactId>webfx-demo-moderngauge</artifactId> | ||
<groupId>org.webfx</groupId> | ||
<version>0.1.0-SNAPSHOT</version> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<artifactId>webfx-demo-moderngauge-application-gluon</artifactId> | ||
|
||
<dependencies> <!-- Generated by WebFx --> | ||
|
||
<dependency> | ||
<artifactId>webfx-demo-moderngauge-application</artifactId> | ||
<groupId>${webfx.groupId}</groupId> | ||
<version>${webfx.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<artifactId>webfx-kit-javafx</artifactId> | ||
<groupId>${webfx.groupId}</groupId> | ||
<version>${webfx.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<artifactId>webfx-platform-java-appcontainer-impl</artifactId> | ||
<groupId>${webfx.groupId}</groupId> | ||
<version>${webfx.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<artifactId>webfx-platform-java-scheduler-impl</artifactId> | ||
<groupId>${webfx.groupId}</groupId> | ||
<version>${webfx.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<artifactId>webfx-platform-java-shutdown-impl</artifactId> | ||
<groupId>${webfx.groupId}</groupId> | ||
<version>${webfx.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<artifactId>webfx-platform-shared-log-impl-simple</artifactId> | ||
<groupId>${webfx.groupId}</groupId> | ||
<version>${webfx.version}</version> | ||
</dependency> | ||
|
||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
|
||
<plugin> | ||
<groupId>com.gluonhq</groupId> | ||
<artifactId>client-maven-plugin</artifactId> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<!-- Redefining the gluon profiles here so they can be activated locally when invoking this pom directly --> | ||
<!-- Note: activating a profile locally here will trigger the properties defined in the root pom --> | ||
<profiles> | ||
<profile><id>gluon-desktop</id></profile> | ||
<profile><id>gluon-android</id></profile> | ||
<profile><id>gluon-ios</id></profile> | ||
</profiles> | ||
|
||
</project> |
20 changes: 20 additions & 0 deletions
20
webfx-demo-moderngauge-application-gluon/src/main/graalvm_conf/reflection.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[ | ||
{ | ||
"name" : "webfx.kit.launcher.spi.javafx.JavaFxWebFxKitLauncherProvider$FxKitWrapperApplication", | ||
"methods" : [ | ||
{ "name" : "<init>", "parameterTypes" : [] } | ||
] | ||
}, | ||
{ | ||
"name" : "webfx.kit.mapper.peers.javafxcontrols.javafx.skin.FxControlPeerSkin", | ||
"methods" : [ | ||
{ "name" : "<init>", "parameterTypes" : ["javafx.scene.control.Control"] } | ||
] | ||
}, | ||
{ | ||
"name" : "javafx.scene.control.TableColumnBase", | ||
"methods" : [ | ||
{ "name" : "<init>", "parameterTypes" : [] } | ||
] | ||
} | ||
] |
13 changes: 13 additions & 0 deletions
13
webfx-demo-moderngauge-application-gluon/src/main/java/module-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// Generated by WebFx | ||
|
||
module webfx.demo.moderngauge.application.gluon { | ||
|
||
// Direct dependencies modules | ||
requires webfx.demo.moderngauge.application; | ||
requires webfx.kit.javafx; | ||
requires webfx.platform.java.appcontainer.impl; | ||
requires webfx.platform.java.scheduler.impl; | ||
requires webfx.platform.java.shutdown.impl; | ||
requires webfx.platform.shared.log.impl.simple; | ||
|
||
} |
3 changes: 3 additions & 0 deletions
3
webfx-demo-moderngauge-application-gluon/src/main/resources/META-INF/webfx.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<module executable="true"> | ||
|
||
</module> |
Oops, something went wrong.