Skip to content

Commit

Permalink
Extracted files from WebFx main repository
Browse files Browse the repository at this point in the history
  • Loading branch information
salmonb committed Dec 2, 2020
1 parent 8ef4067 commit 15bb051
Show file tree
Hide file tree
Showing 35 changed files with 11,401 additions and 0 deletions.
439 changes: 439 additions & 0 deletions .github/workflows/builds.yml

Large diffs are not rendered by default.

80 changes: 80 additions & 0 deletions .gitignore
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
22 changes: 22 additions & 0 deletions pom.xml
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>
69 changes: 69 additions & 0 deletions webfx-demo-moderngauge-application-gluon/pom.xml
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>
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" : [] }
]
}
]
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;

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<module executable="true">

</module>
Loading

0 comments on commit 15bb051

Please sign in to comment.