Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
salmonb committed Aug 19, 2022
1 parent 602f98e commit acc6d44
Show file tree
Hide file tree
Showing 17 changed files with 946 additions and 0 deletions.
40 changes: 40 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- File managed by WebFX (DO NOT EDIT MANUALLY) -->
<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.webfx</groupId>
<artifactId>webfx-parent</artifactId>
<version>0.1.0-SNAPSHOT</version>
</parent>

<artifactId>webfx-demo-demofx</artifactId>

<repositories>

<!-- For WebFX snapshots download (including webfx-parent) -->
<repository>
<id>webfx-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>

</repositories>

<packaging>pom</packaging>

<modules>
<module>webfx-demo-demofx-application</module>
<module>webfx-demo-demofx-application-gwt</module>
<module>webfx-demo-demofx-application-openjfx</module>
</modules>

</project>
268 changes: 268 additions & 0 deletions webfx-demo-demofx-application-gwt/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,268 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- File managed by WebFX (DO NOT EDIT MANUALLY) -->
<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.webfx</groupId>
<artifactId>webfx-demo-demofx</artifactId>
<version>0.1.0-SNAPSHOT</version>
</parent>

<artifactId>webfx-demo-demofx-application-gwt</artifactId>

<packaging>gwt-app</packaging>

<dependencies>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-kit-javafxbase-emul</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-kit-javafxcontrols-emul</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-kit-javafxgraphics-emul</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-kit-javafxmedia-emul</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>com.google.elemental2</groupId>
<artifactId>elemental2-svg</artifactId>
</dependency>

<dependency>
<groupId>org.jresearch.gwt.time</groupId>
<artifactId>org.jresearch.gwt.time</artifactId>
</dependency>

<dependency>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-dev</artifactId>
</dependency>

<dependency>
<groupId>org.treblereel.gwt.nio</groupId>
<artifactId>gwt-nio</artifactId>
<version>1.1</version>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-demo-demofx-application</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-extras-imagestore</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-kit-gwt</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-kit-javafxcontrols-peers-base</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-kit-javafxcontrols-peers-gwt</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-kit-javafxcontrols-registry-gwt</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-kit-javafxgraphics-peers</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-kit-javafxgraphics-peers-base</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-kit-javafxgraphics-peers-gwt</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-kit-javafxgraphics-registry-gwt</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-kit-javafxmedia-peers-gwt</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-kit-launcher</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-kit-util</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-lib-demofx</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-platform-boot</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-platform-boot-gwt</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-platform-console</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-platform-console-gwt</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-platform-javabase-emul-gwt</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>shaded-sources</classifier>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-platform-resource</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-platform-resource-gwt</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-platform-scheduler</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-platform-shutdown</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-platform-shutdown-gwt</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-platform-uischeduler</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-platform-uischeduler-gwt</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>dev.webfx</groupId>
<artifactId>webfx-platform-util</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>sources</classifier>
</dependency>

</dependencies>

<!-- Redefining the GWT profile here, so it can be activated locally when invoking this pom directly. -->
<!-- Activating a local profile here will trigger the properties defined in the root pom. -->
<profiles>
<profile>
<id>gwt-compile</id>
</profile>
</profiles>

</project>
Loading

0 comments on commit acc6d44

Please sign in to comment.