├── .gitignore ├── CONTRIBUTING.adoc ├── Jenkinsfile ├── LICENSE.txt ├── LICENSE.writing.txt ├── README.adoc ├── complete ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ └── java │ │ └── hello │ │ ├── Greeter.java │ │ └── HelloWorld.java │ └── test │ └── java │ └── hello │ └── GreeterTest.java ├── initial ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ └── main │ └── java │ └── hello │ ├── Greeter.java │ └── HelloWorld.java └── test ├── expected.txt └── run.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-maven/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-maven/HEAD/CONTRIBUTING.adoc -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-maven/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-maven/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LICENSE.writing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-maven/HEAD/LICENSE.writing.txt -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-maven/HEAD/README.adoc -------------------------------------------------------------------------------- /complete/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-maven/HEAD/complete/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /complete/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-maven/HEAD/complete/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /complete/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-maven/HEAD/complete/mvnw -------------------------------------------------------------------------------- /complete/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-maven/HEAD/complete/mvnw.cmd -------------------------------------------------------------------------------- /complete/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-maven/HEAD/complete/pom.xml -------------------------------------------------------------------------------- /complete/src/main/java/hello/Greeter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-maven/HEAD/complete/src/main/java/hello/Greeter.java -------------------------------------------------------------------------------- /complete/src/main/java/hello/HelloWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-maven/HEAD/complete/src/main/java/hello/HelloWorld.java -------------------------------------------------------------------------------- /complete/src/test/java/hello/GreeterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-maven/HEAD/complete/src/test/java/hello/GreeterTest.java -------------------------------------------------------------------------------- /initial/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-maven/HEAD/initial/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /initial/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-maven/HEAD/initial/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /initial/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-maven/HEAD/initial/mvnw -------------------------------------------------------------------------------- /initial/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-maven/HEAD/initial/mvnw.cmd -------------------------------------------------------------------------------- /initial/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-maven/HEAD/initial/pom.xml -------------------------------------------------------------------------------- /initial/src/main/java/hello/Greeter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-maven/HEAD/initial/src/main/java/hello/Greeter.java -------------------------------------------------------------------------------- /initial/src/main/java/hello/HelloWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-maven/HEAD/initial/src/main/java/hello/HelloWorld.java -------------------------------------------------------------------------------- /test/expected.txt: -------------------------------------------------------------------------------- 1 | Hello world! -------------------------------------------------------------------------------- /test/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gs-maven/HEAD/test/run.sh --------------------------------------------------------------------------------