├── .ci ├── gpg_keys.tar.enc └── release.sh ├── .gitignore ├── .test.sh ├── .travis.settings.xml ├── .travis.yml ├── LICENSE ├── README.md ├── javafx-archetype-fxml ├── README.md ├── pom.xml └── src │ └── main │ └── resources │ ├── META-INF │ └── maven │ │ └── archetype-metadata.xml │ └── archetype-resources │ ├── pom.xml │ └── src │ └── main │ ├── java │ ├── App.java │ ├── PrimaryController.java │ ├── SecondaryController.java │ └── module-info.java │ └── resources │ ├── primary.fxml │ └── secondary.fxml ├── javafx-archetype-simple ├── README.md ├── pom.xml └── src │ └── main │ └── resources │ ├── META-INF │ └── maven │ │ └── archetype-metadata.xml │ └── archetype-resources │ ├── pom.xml │ └── src │ └── main │ └── java │ ├── App.java │ ├── SystemInfo.java │ └── module-info.java └── pom.xml /.ci/gpg_keys.tar.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openjfx/javafx-maven-archetypes/HEAD/.ci/gpg_keys.tar.enc -------------------------------------------------------------------------------- /.ci/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openjfx/javafx-maven-archetypes/HEAD/.ci/release.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Maven 2 | target/ 3 | 4 | # IntelliJ IDEA 5 | .idea/ 6 | *.iml -------------------------------------------------------------------------------- /.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openjfx/javafx-maven-archetypes/HEAD/.test.sh -------------------------------------------------------------------------------- /.travis.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openjfx/javafx-maven-archetypes/HEAD/.travis.settings.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openjfx/javafx-maven-archetypes/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openjfx/javafx-maven-archetypes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openjfx/javafx-maven-archetypes/HEAD/README.md -------------------------------------------------------------------------------- /javafx-archetype-fxml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openjfx/javafx-maven-archetypes/HEAD/javafx-archetype-fxml/README.md -------------------------------------------------------------------------------- /javafx-archetype-fxml/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openjfx/javafx-maven-archetypes/HEAD/javafx-archetype-fxml/pom.xml -------------------------------------------------------------------------------- /javafx-archetype-fxml/src/main/resources/META-INF/maven/archetype-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openjfx/javafx-maven-archetypes/HEAD/javafx-archetype-fxml/src/main/resources/META-INF/maven/archetype-metadata.xml -------------------------------------------------------------------------------- /javafx-archetype-fxml/src/main/resources/archetype-resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openjfx/javafx-maven-archetypes/HEAD/javafx-archetype-fxml/src/main/resources/archetype-resources/pom.xml -------------------------------------------------------------------------------- /javafx-archetype-fxml/src/main/resources/archetype-resources/src/main/java/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openjfx/javafx-maven-archetypes/HEAD/javafx-archetype-fxml/src/main/resources/archetype-resources/src/main/java/App.java -------------------------------------------------------------------------------- /javafx-archetype-fxml/src/main/resources/archetype-resources/src/main/java/PrimaryController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openjfx/javafx-maven-archetypes/HEAD/javafx-archetype-fxml/src/main/resources/archetype-resources/src/main/java/PrimaryController.java -------------------------------------------------------------------------------- /javafx-archetype-fxml/src/main/resources/archetype-resources/src/main/java/SecondaryController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openjfx/javafx-maven-archetypes/HEAD/javafx-archetype-fxml/src/main/resources/archetype-resources/src/main/java/SecondaryController.java -------------------------------------------------------------------------------- /javafx-archetype-fxml/src/main/resources/archetype-resources/src/main/java/module-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openjfx/javafx-maven-archetypes/HEAD/javafx-archetype-fxml/src/main/resources/archetype-resources/src/main/java/module-info.java -------------------------------------------------------------------------------- /javafx-archetype-fxml/src/main/resources/archetype-resources/src/main/resources/primary.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openjfx/javafx-maven-archetypes/HEAD/javafx-archetype-fxml/src/main/resources/archetype-resources/src/main/resources/primary.fxml -------------------------------------------------------------------------------- /javafx-archetype-fxml/src/main/resources/archetype-resources/src/main/resources/secondary.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openjfx/javafx-maven-archetypes/HEAD/javafx-archetype-fxml/src/main/resources/archetype-resources/src/main/resources/secondary.fxml -------------------------------------------------------------------------------- /javafx-archetype-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openjfx/javafx-maven-archetypes/HEAD/javafx-archetype-simple/README.md -------------------------------------------------------------------------------- /javafx-archetype-simple/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openjfx/javafx-maven-archetypes/HEAD/javafx-archetype-simple/pom.xml -------------------------------------------------------------------------------- /javafx-archetype-simple/src/main/resources/META-INF/maven/archetype-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openjfx/javafx-maven-archetypes/HEAD/javafx-archetype-simple/src/main/resources/META-INF/maven/archetype-metadata.xml -------------------------------------------------------------------------------- /javafx-archetype-simple/src/main/resources/archetype-resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openjfx/javafx-maven-archetypes/HEAD/javafx-archetype-simple/src/main/resources/archetype-resources/pom.xml -------------------------------------------------------------------------------- /javafx-archetype-simple/src/main/resources/archetype-resources/src/main/java/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openjfx/javafx-maven-archetypes/HEAD/javafx-archetype-simple/src/main/resources/archetype-resources/src/main/java/App.java -------------------------------------------------------------------------------- /javafx-archetype-simple/src/main/resources/archetype-resources/src/main/java/SystemInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openjfx/javafx-maven-archetypes/HEAD/javafx-archetype-simple/src/main/resources/archetype-resources/src/main/java/SystemInfo.java -------------------------------------------------------------------------------- /javafx-archetype-simple/src/main/resources/archetype-resources/src/main/java/module-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openjfx/javafx-maven-archetypes/HEAD/javafx-archetype-simple/src/main/resources/archetype-resources/src/main/java/module-info.java -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openjfx/javafx-maven-archetypes/HEAD/pom.xml --------------------------------------------------------------------------------