├── .gitignore ├── .travis.yml ├── CHANGES.md ├── LICENSE.md ├── README.md ├── pom.xml └── src ├── main └── resources │ ├── META-INF │ └── maven │ │ ├── archetype-metadata.xml │ │ └── archetype.xml │ └── archetype-resources │ ├── .gitignore │ ├── pom.xml │ └── src │ ├── main │ └── scala │ │ └── App.scala │ └── test │ └── scala │ └── samples │ ├── junit.scala │ ├── scalatest.scala │ └── specs.scala └── test └── resources └── projects └── it-basic ├── archetype.properties └── goal.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidB/scala-archetype-simple/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: java 2 | 3 | script: 4 | - mvn integration-test -B -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidB/scala-archetype-simple/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidB/scala-archetype-simple/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidB/scala-archetype-simple/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidB/scala-archetype-simple/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/resources/META-INF/maven/archetype-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidB/scala-archetype-simple/HEAD/src/main/resources/META-INF/maven/archetype-metadata.xml -------------------------------------------------------------------------------- /src/main/resources/META-INF/maven/archetype.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidB/scala-archetype-simple/HEAD/src/main/resources/META-INF/maven/archetype.xml -------------------------------------------------------------------------------- /src/main/resources/archetype-resources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidB/scala-archetype-simple/HEAD/src/main/resources/archetype-resources/.gitignore -------------------------------------------------------------------------------- /src/main/resources/archetype-resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidB/scala-archetype-simple/HEAD/src/main/resources/archetype-resources/pom.xml -------------------------------------------------------------------------------- /src/main/resources/archetype-resources/src/main/scala/App.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidB/scala-archetype-simple/HEAD/src/main/resources/archetype-resources/src/main/scala/App.scala -------------------------------------------------------------------------------- /src/main/resources/archetype-resources/src/test/scala/samples/junit.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidB/scala-archetype-simple/HEAD/src/main/resources/archetype-resources/src/test/scala/samples/junit.scala -------------------------------------------------------------------------------- /src/main/resources/archetype-resources/src/test/scala/samples/scalatest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidB/scala-archetype-simple/HEAD/src/main/resources/archetype-resources/src/test/scala/samples/scalatest.scala -------------------------------------------------------------------------------- /src/main/resources/archetype-resources/src/test/scala/samples/specs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidB/scala-archetype-simple/HEAD/src/main/resources/archetype-resources/src/test/scala/samples/specs.scala -------------------------------------------------------------------------------- /src/test/resources/projects/it-basic/archetype.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidB/scala-archetype-simple/HEAD/src/test/resources/projects/it-basic/archetype.properties -------------------------------------------------------------------------------- /src/test/resources/projects/it-basic/goal.txt: -------------------------------------------------------------------------------- 1 | verify --------------------------------------------------------------------------------