├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── maven.yml │ └── release.yml ├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── LICENSE.txt ├── README.md ├── etc └── license.txt ├── mvnw ├── mvnw.cmd ├── oss-quickstart-simple-archetype ├── pom.xml └── src │ ├── main │ └── resources │ │ ├── META-INF │ │ ├── archetype-post-generate.groovy │ │ └── maven │ │ │ └── archetype-metadata.xml │ │ └── archetype-resources │ │ ├── .gitattributes.tmpl │ │ ├── .github │ │ └── workflows │ │ │ └── maven.yml │ │ ├── .gitignore.tmpl │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── etc │ │ ├── eclipse-formatter-config.xml │ │ └── license.txt │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ ├── App.java │ │ │ └── module-info.java │ │ └── resources │ │ │ └── .dontdelete │ │ └── test │ │ ├── java │ │ └── AppTest.java │ │ └── resources │ │ └── .dontdelete │ └── test │ └── resources │ └── projects │ └── basic │ ├── archetype.properties │ └── goal.txt ├── oss-quickstart-simple-template ├── .gitattributes.tmpl ├── .github │ └── workflows │ │ └── maven.yml ├── .gitignore.tmpl ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── LICENSE.txt ├── README.md ├── etc │ ├── eclipse-formatter-config.xml │ └── license.txt ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ ├── com │ │ │ └── example │ │ │ │ └── acme │ │ │ │ └── App.java │ │ └── module-info.java │ └── resources │ │ └── .dontdelete │ └── test │ ├── java │ └── com │ │ └── example │ │ └── acme │ │ └── AppTest.java │ └── resources │ └── .dontdelete ├── pom.xml └── update-from-templates.sh /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/maven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/.github/workflows/maven.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/README.md -------------------------------------------------------------------------------- /etc/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/etc/license.txt -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /oss-quickstart-simple-archetype/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-archetype/pom.xml -------------------------------------------------------------------------------- /oss-quickstart-simple-archetype/src/main/resources/META-INF/archetype-post-generate.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-archetype/src/main/resources/META-INF/archetype-post-generate.groovy -------------------------------------------------------------------------------- /oss-quickstart-simple-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml -------------------------------------------------------------------------------- /oss-quickstart-simple-archetype/src/main/resources/archetype-resources/.gitattributes.tmpl: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /oss-quickstart-simple-archetype/src/main/resources/archetype-resources/.github/workflows/maven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-archetype/src/main/resources/archetype-resources/.github/workflows/maven.yml -------------------------------------------------------------------------------- /oss-quickstart-simple-archetype/src/main/resources/archetype-resources/.gitignore.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-archetype/src/main/resources/archetype-resources/.gitignore.tmpl -------------------------------------------------------------------------------- /oss-quickstart-simple-archetype/src/main/resources/archetype-resources/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-archetype/src/main/resources/archetype-resources/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /oss-quickstart-simple-archetype/src/main/resources/archetype-resources/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-archetype/src/main/resources/archetype-resources/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /oss-quickstart-simple-archetype/src/main/resources/archetype-resources/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-archetype/src/main/resources/archetype-resources/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /oss-quickstart-simple-archetype/src/main/resources/archetype-resources/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-archetype/src/main/resources/archetype-resources/LICENSE.txt -------------------------------------------------------------------------------- /oss-quickstart-simple-archetype/src/main/resources/archetype-resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-archetype/src/main/resources/archetype-resources/README.md -------------------------------------------------------------------------------- /oss-quickstart-simple-archetype/src/main/resources/archetype-resources/etc/eclipse-formatter-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-archetype/src/main/resources/archetype-resources/etc/eclipse-formatter-config.xml -------------------------------------------------------------------------------- /oss-quickstart-simple-archetype/src/main/resources/archetype-resources/etc/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-archetype/src/main/resources/archetype-resources/etc/license.txt -------------------------------------------------------------------------------- /oss-quickstart-simple-archetype/src/main/resources/archetype-resources/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-archetype/src/main/resources/archetype-resources/mvnw -------------------------------------------------------------------------------- /oss-quickstart-simple-archetype/src/main/resources/archetype-resources/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-archetype/src/main/resources/archetype-resources/mvnw.cmd -------------------------------------------------------------------------------- /oss-quickstart-simple-archetype/src/main/resources/archetype-resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-archetype/src/main/resources/archetype-resources/pom.xml -------------------------------------------------------------------------------- /oss-quickstart-simple-archetype/src/main/resources/archetype-resources/src/main/java/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-archetype/src/main/resources/archetype-resources/src/main/java/App.java -------------------------------------------------------------------------------- /oss-quickstart-simple-archetype/src/main/resources/archetype-resources/src/main/java/module-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-archetype/src/main/resources/archetype-resources/src/main/java/module-info.java -------------------------------------------------------------------------------- /oss-quickstart-simple-archetype/src/main/resources/archetype-resources/src/main/resources/.dontdelete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oss-quickstart-simple-archetype/src/main/resources/archetype-resources/src/test/java/AppTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-archetype/src/main/resources/archetype-resources/src/test/java/AppTest.java -------------------------------------------------------------------------------- /oss-quickstart-simple-archetype/src/main/resources/archetype-resources/src/test/resources/.dontdelete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oss-quickstart-simple-archetype/src/test/resources/projects/basic/archetype.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-archetype/src/test/resources/projects/basic/archetype.properties -------------------------------------------------------------------------------- /oss-quickstart-simple-archetype/src/test/resources/projects/basic/goal.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oss-quickstart-simple-template/.gitattributes.tmpl: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /oss-quickstart-simple-template/.github/workflows/maven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-template/.github/workflows/maven.yml -------------------------------------------------------------------------------- /oss-quickstart-simple-template/.gitignore.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-template/.gitignore.tmpl -------------------------------------------------------------------------------- /oss-quickstart-simple-template/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-template/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /oss-quickstart-simple-template/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-template/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /oss-quickstart-simple-template/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-template/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /oss-quickstart-simple-template/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-template/LICENSE.txt -------------------------------------------------------------------------------- /oss-quickstart-simple-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-template/README.md -------------------------------------------------------------------------------- /oss-quickstart-simple-template/etc/eclipse-formatter-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-template/etc/eclipse-formatter-config.xml -------------------------------------------------------------------------------- /oss-quickstart-simple-template/etc/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-template/etc/license.txt -------------------------------------------------------------------------------- /oss-quickstart-simple-template/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-template/mvnw -------------------------------------------------------------------------------- /oss-quickstart-simple-template/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-template/mvnw.cmd -------------------------------------------------------------------------------- /oss-quickstart-simple-template/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-template/pom.xml -------------------------------------------------------------------------------- /oss-quickstart-simple-template/src/main/java/com/example/acme/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-template/src/main/java/com/example/acme/App.java -------------------------------------------------------------------------------- /oss-quickstart-simple-template/src/main/java/module-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-template/src/main/java/module-info.java -------------------------------------------------------------------------------- /oss-quickstart-simple-template/src/main/resources/.dontdelete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oss-quickstart-simple-template/src/test/java/com/example/acme/AppTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/oss-quickstart-simple-template/src/test/java/com/example/acme/AppTest.java -------------------------------------------------------------------------------- /oss-quickstart-simple-template/src/test/resources/.dontdelete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/pom.xml -------------------------------------------------------------------------------- /update-from-templates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moditect/oss-quickstart/HEAD/update-from-templates.sh --------------------------------------------------------------------------------