├── .gitignore ├── README.asciidoc ├── ant-aether ├── another-project │ ├── build.xml │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── .placeholder ├── simple-project-staging │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── sonatype │ │ │ └── nexus │ │ │ └── examples │ │ │ └── App.java │ │ └── test │ │ └── java │ │ └── org │ │ └── sonatype │ │ └── nexus │ │ └── examples │ │ └── AppTest.java └── simple-project │ ├── build.xml │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ └── org │ │ └── sonatype │ │ └── nexus │ │ └── examples │ │ └── App.java │ └── test │ └── java │ └── org │ └── sonatype │ └── nexus │ └── examples │ └── AppTest.java ├── ant-ivy ├── another-project │ ├── build.xml │ ├── ivy.xml │ ├── ivysettings.xml │ └── src │ │ └── main │ │ └── java │ │ └── .placeholder ├── simple-project-staging │ ├── build.xml │ ├── ivy.xml │ ├── ivysettings.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── sonatype │ │ │ └── nexus │ │ │ └── examples │ │ │ └── App.java │ │ └── test │ │ └── java │ │ └── org │ │ └── sonatype │ │ └── nexus │ │ └── examples │ │ └── AppTest.java └── simple-project │ ├── build.xml │ ├── ivy.xml │ ├── ivysettings.xml │ └── src │ ├── main │ └── java │ │ └── org │ │ └── sonatype │ │ └── nexus │ │ └── examples │ │ └── App.java │ └── test │ └── java │ └── org │ └── sonatype │ └── nexus │ └── examples │ └── AppTest.java ├── ant-tasks ├── aether-ant-tasks-1.0.0.v20140518-uber.jar ├── aether-ant-tasks.xml ├── nexus-staging-ant-tasks-1.6.3-uber.jar └── nexus-staging-ant-tasks.xml ├── gradle ├── another-project │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ └── gradlew.bat ├── init │ └── init.gradle ├── simple-project-staging │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── sonatype │ │ │ └── nexus │ │ │ └── examples │ │ │ └── App.java │ │ └── test │ │ └── java │ │ └── org │ │ └── sonatype │ │ └── nexus │ │ └── examples │ │ └── AppTest.java └── simple-project │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── src │ ├── main │ └── java │ │ └── org │ │ └── sonatype │ │ └── nexus │ │ └── examples │ │ └── App.java │ └── test │ └── java │ └── org │ └── sonatype │ └── nexus │ └── examples │ └── AppTest.java └── maven ├── another-project └── pom.xml ├── apache-maven ├── LICENSE ├── NOTICE ├── README.txt ├── bin │ ├── m2.conf │ ├── mvn │ ├── mvn.cmd │ ├── mvnDebug │ ├── mvnDebug.cmd │ └── mvnyjp ├── boot │ └── plexus-classworlds-2.5.2.jar ├── conf │ ├── logging │ │ └── simplelogger.properties │ ├── settings.xml │ └── toolchains.xml └── lib │ ├── aether-api-1.0.2.v20150114.jar │ ├── aether-api.license │ ├── aether-connector-basic-1.0.2.v20150114.jar │ ├── aether-connector-basic.license │ ├── aether-impl-1.0.2.v20150114.jar │ ├── aether-impl.license │ ├── aether-spi-1.0.2.v20150114.jar │ ├── aether-spi.license │ ├── aether-transport-wagon-1.0.2.v20150114.jar │ ├── aether-transport-wagon.license │ ├── aether-util-1.0.2.v20150114.jar │ ├── aether-util.license │ ├── aopalliance-1.0.jar │ ├── cdi-api-1.0.jar │ ├── cdi-api.license │ ├── commons-cli-1.2.jar │ ├── commons-io-2.2.jar │ ├── commons-lang-2.6.jar │ ├── ext │ └── README.txt │ ├── guava-18.0.jar │ ├── javax.inject-1.jar │ ├── jsoup-1.7.2.jar │ ├── jsoup.license │ ├── jsr250-api-1.0.jar │ ├── jsr250-api.license │ ├── maven-aether-provider-3.3.3.jar │ ├── maven-aether-provider.license │ ├── maven-artifact-3.3.3.jar │ ├── maven-artifact.license │ ├── maven-builder-support-3.3.3.jar │ ├── maven-builder-support.license │ ├── maven-compat-3.3.3.jar │ ├── maven-compat.license │ ├── maven-core-3.3.3.jar │ ├── maven-core.license │ ├── maven-embedder-3.3.3.jar │ ├── maven-embedder.license │ ├── maven-model-3.3.3.jar │ ├── maven-model-builder-3.3.3.jar │ ├── maven-model-builder.license │ ├── maven-model.license │ ├── maven-plugin-api-3.3.3.jar │ ├── maven-plugin-api.license │ ├── maven-repository-metadata-3.3.3.jar │ ├── maven-repository-metadata.license │ ├── maven-settings-3.3.3.jar │ ├── maven-settings-builder-3.3.3.jar │ ├── maven-settings-builder.license │ ├── maven-settings.license │ ├── org.eclipse.sisu.inject-0.3.0.jar │ ├── org.eclipse.sisu.inject.license │ ├── org.eclipse.sisu.plexus-0.3.0.jar │ ├── org.eclipse.sisu.plexus.license │ ├── plexus-cipher-1.7.jar │ ├── plexus-cipher.license │ ├── plexus-component-annotations-1.5.5.jar │ ├── plexus-interpolation-1.21.jar │ ├── plexus-sec-dispatcher-1.3.jar │ ├── plexus-sec-dispatcher.license │ ├── plexus-utils-3.0.20.jar │ ├── sisu-guice-3.2.5-no_aop.jar │ ├── slf4j-api-1.7.5.jar │ ├── slf4j-api.license │ ├── slf4j-simple-1.7.5.jar │ ├── slf4j-simple.license │ ├── wagon-file-2.9.jar │ ├── wagon-file.license │ ├── wagon-http-2.9-shaded.jar │ ├── wagon-http-shared-2.9.jar │ ├── wagon-http-shared.license │ ├── wagon-http.license │ ├── wagon-provider-api-2.9.jar │ └── wagon-provider-api.license ├── build ├── build.bat ├── settings ├── settings-localrepo.xml └── settings.xml └── simple-project ├── pom.xml └── src ├── main └── java │ └── org │ └── sonatype │ └── nexus │ └── examples │ └── App.java └── test └── java └── org └── sonatype └── nexus └── examples └── AppTest.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /README.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/README.asciidoc -------------------------------------------------------------------------------- /ant-aether/another-project/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/ant-aether/another-project/build.xml -------------------------------------------------------------------------------- /ant-aether/another-project/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/ant-aether/another-project/pom.xml -------------------------------------------------------------------------------- /ant-aether/another-project/src/main/java/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ant-aether/simple-project-staging/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/ant-aether/simple-project-staging/build.xml -------------------------------------------------------------------------------- /ant-aether/simple-project-staging/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/ant-aether/simple-project-staging/pom.xml -------------------------------------------------------------------------------- /ant-aether/simple-project-staging/src/main/java/org/sonatype/nexus/examples/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/ant-aether/simple-project-staging/src/main/java/org/sonatype/nexus/examples/App.java -------------------------------------------------------------------------------- /ant-aether/simple-project-staging/src/test/java/org/sonatype/nexus/examples/AppTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/ant-aether/simple-project-staging/src/test/java/org/sonatype/nexus/examples/AppTest.java -------------------------------------------------------------------------------- /ant-aether/simple-project/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/ant-aether/simple-project/build.xml -------------------------------------------------------------------------------- /ant-aether/simple-project/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/ant-aether/simple-project/pom.xml -------------------------------------------------------------------------------- /ant-aether/simple-project/src/main/java/org/sonatype/nexus/examples/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/ant-aether/simple-project/src/main/java/org/sonatype/nexus/examples/App.java -------------------------------------------------------------------------------- /ant-aether/simple-project/src/test/java/org/sonatype/nexus/examples/AppTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/ant-aether/simple-project/src/test/java/org/sonatype/nexus/examples/AppTest.java -------------------------------------------------------------------------------- /ant-ivy/another-project/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/ant-ivy/another-project/build.xml -------------------------------------------------------------------------------- /ant-ivy/another-project/ivy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/ant-ivy/another-project/ivy.xml -------------------------------------------------------------------------------- /ant-ivy/another-project/ivysettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/ant-ivy/another-project/ivysettings.xml -------------------------------------------------------------------------------- /ant-ivy/another-project/src/main/java/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ant-ivy/simple-project-staging/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/ant-ivy/simple-project-staging/build.xml -------------------------------------------------------------------------------- /ant-ivy/simple-project-staging/ivy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/ant-ivy/simple-project-staging/ivy.xml -------------------------------------------------------------------------------- /ant-ivy/simple-project-staging/ivysettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/ant-ivy/simple-project-staging/ivysettings.xml -------------------------------------------------------------------------------- /ant-ivy/simple-project-staging/src/main/java/org/sonatype/nexus/examples/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/ant-ivy/simple-project-staging/src/main/java/org/sonatype/nexus/examples/App.java -------------------------------------------------------------------------------- /ant-ivy/simple-project-staging/src/test/java/org/sonatype/nexus/examples/AppTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/ant-ivy/simple-project-staging/src/test/java/org/sonatype/nexus/examples/AppTest.java -------------------------------------------------------------------------------- /ant-ivy/simple-project/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/ant-ivy/simple-project/build.xml -------------------------------------------------------------------------------- /ant-ivy/simple-project/ivy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/ant-ivy/simple-project/ivy.xml -------------------------------------------------------------------------------- /ant-ivy/simple-project/ivysettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/ant-ivy/simple-project/ivysettings.xml -------------------------------------------------------------------------------- /ant-ivy/simple-project/src/main/java/org/sonatype/nexus/examples/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/ant-ivy/simple-project/src/main/java/org/sonatype/nexus/examples/App.java -------------------------------------------------------------------------------- /ant-ivy/simple-project/src/test/java/org/sonatype/nexus/examples/AppTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/ant-ivy/simple-project/src/test/java/org/sonatype/nexus/examples/AppTest.java -------------------------------------------------------------------------------- /ant-tasks/aether-ant-tasks-1.0.0.v20140518-uber.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/ant-tasks/aether-ant-tasks-1.0.0.v20140518-uber.jar -------------------------------------------------------------------------------- /ant-tasks/aether-ant-tasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/ant-tasks/aether-ant-tasks.xml -------------------------------------------------------------------------------- /ant-tasks/nexus-staging-ant-tasks-1.6.3-uber.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/ant-tasks/nexus-staging-ant-tasks-1.6.3-uber.jar -------------------------------------------------------------------------------- /ant-tasks/nexus-staging-ant-tasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/ant-tasks/nexus-staging-ant-tasks.xml -------------------------------------------------------------------------------- /gradle/another-project/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/gradle/another-project/build.gradle -------------------------------------------------------------------------------- /gradle/another-project/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/gradle/another-project/gradle.properties -------------------------------------------------------------------------------- /gradle/another-project/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/gradle/another-project/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/another-project/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/gradle/another-project/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradle/another-project/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/gradle/another-project/gradlew -------------------------------------------------------------------------------- /gradle/another-project/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/gradle/another-project/gradlew.bat -------------------------------------------------------------------------------- /gradle/init/init.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/gradle/init/init.gradle -------------------------------------------------------------------------------- /gradle/simple-project-staging/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/gradle/simple-project-staging/build.gradle -------------------------------------------------------------------------------- /gradle/simple-project-staging/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/gradle/simple-project-staging/gradle.properties -------------------------------------------------------------------------------- /gradle/simple-project-staging/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/gradle/simple-project-staging/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/simple-project-staging/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/gradle/simple-project-staging/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradle/simple-project-staging/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/gradle/simple-project-staging/gradlew -------------------------------------------------------------------------------- /gradle/simple-project-staging/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/gradle/simple-project-staging/gradlew.bat -------------------------------------------------------------------------------- /gradle/simple-project-staging/src/main/java/org/sonatype/nexus/examples/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/gradle/simple-project-staging/src/main/java/org/sonatype/nexus/examples/App.java -------------------------------------------------------------------------------- /gradle/simple-project-staging/src/test/java/org/sonatype/nexus/examples/AppTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/gradle/simple-project-staging/src/test/java/org/sonatype/nexus/examples/AppTest.java -------------------------------------------------------------------------------- /gradle/simple-project/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/gradle/simple-project/build.gradle -------------------------------------------------------------------------------- /gradle/simple-project/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/gradle/simple-project/gradle.properties -------------------------------------------------------------------------------- /gradle/simple-project/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/gradle/simple-project/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/simple-project/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/gradle/simple-project/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradle/simple-project/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/gradle/simple-project/gradlew -------------------------------------------------------------------------------- /gradle/simple-project/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/gradle/simple-project/gradlew.bat -------------------------------------------------------------------------------- /gradle/simple-project/src/main/java/org/sonatype/nexus/examples/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/gradle/simple-project/src/main/java/org/sonatype/nexus/examples/App.java -------------------------------------------------------------------------------- /gradle/simple-project/src/test/java/org/sonatype/nexus/examples/AppTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/gradle/simple-project/src/test/java/org/sonatype/nexus/examples/AppTest.java -------------------------------------------------------------------------------- /maven/another-project/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/another-project/pom.xml -------------------------------------------------------------------------------- /maven/apache-maven/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/LICENSE -------------------------------------------------------------------------------- /maven/apache-maven/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/NOTICE -------------------------------------------------------------------------------- /maven/apache-maven/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/README.txt -------------------------------------------------------------------------------- /maven/apache-maven/bin/m2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/bin/m2.conf -------------------------------------------------------------------------------- /maven/apache-maven/bin/mvn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/bin/mvn -------------------------------------------------------------------------------- /maven/apache-maven/bin/mvn.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/bin/mvn.cmd -------------------------------------------------------------------------------- /maven/apache-maven/bin/mvnDebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/bin/mvnDebug -------------------------------------------------------------------------------- /maven/apache-maven/bin/mvnDebug.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/bin/mvnDebug.cmd -------------------------------------------------------------------------------- /maven/apache-maven/bin/mvnyjp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/bin/mvnyjp -------------------------------------------------------------------------------- /maven/apache-maven/boot/plexus-classworlds-2.5.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/boot/plexus-classworlds-2.5.2.jar -------------------------------------------------------------------------------- /maven/apache-maven/conf/logging/simplelogger.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/conf/logging/simplelogger.properties -------------------------------------------------------------------------------- /maven/apache-maven/conf/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/conf/settings.xml -------------------------------------------------------------------------------- /maven/apache-maven/conf/toolchains.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/conf/toolchains.xml -------------------------------------------------------------------------------- /maven/apache-maven/lib/aether-api-1.0.2.v20150114.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/aether-api-1.0.2.v20150114.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/aether-api.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/aether-api.license -------------------------------------------------------------------------------- /maven/apache-maven/lib/aether-connector-basic-1.0.2.v20150114.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/aether-connector-basic-1.0.2.v20150114.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/aether-connector-basic.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/aether-connector-basic.license -------------------------------------------------------------------------------- /maven/apache-maven/lib/aether-impl-1.0.2.v20150114.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/aether-impl-1.0.2.v20150114.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/aether-impl.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/aether-impl.license -------------------------------------------------------------------------------- /maven/apache-maven/lib/aether-spi-1.0.2.v20150114.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/aether-spi-1.0.2.v20150114.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/aether-spi.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/aether-spi.license -------------------------------------------------------------------------------- /maven/apache-maven/lib/aether-transport-wagon-1.0.2.v20150114.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/aether-transport-wagon-1.0.2.v20150114.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/aether-transport-wagon.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/aether-transport-wagon.license -------------------------------------------------------------------------------- /maven/apache-maven/lib/aether-util-1.0.2.v20150114.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/aether-util-1.0.2.v20150114.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/aether-util.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/aether-util.license -------------------------------------------------------------------------------- /maven/apache-maven/lib/aopalliance-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/aopalliance-1.0.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/cdi-api-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/cdi-api-1.0.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/cdi-api.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/cdi-api.license -------------------------------------------------------------------------------- /maven/apache-maven/lib/commons-cli-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/commons-cli-1.2.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/commons-io-2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/commons-io-2.2.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/commons-lang-2.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/commons-lang-2.6.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/ext/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/ext/README.txt -------------------------------------------------------------------------------- /maven/apache-maven/lib/guava-18.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/guava-18.0.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/javax.inject-1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/javax.inject-1.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/jsoup-1.7.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/jsoup-1.7.2.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/jsoup.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/jsoup.license -------------------------------------------------------------------------------- /maven/apache-maven/lib/jsr250-api-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/jsr250-api-1.0.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/jsr250-api.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/jsr250-api.license -------------------------------------------------------------------------------- /maven/apache-maven/lib/maven-aether-provider-3.3.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/maven-aether-provider-3.3.3.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/maven-aether-provider.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/maven-aether-provider.license -------------------------------------------------------------------------------- /maven/apache-maven/lib/maven-artifact-3.3.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/maven-artifact-3.3.3.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/maven-artifact.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/maven-artifact.license -------------------------------------------------------------------------------- /maven/apache-maven/lib/maven-builder-support-3.3.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/maven-builder-support-3.3.3.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/maven-builder-support.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/maven-builder-support.license -------------------------------------------------------------------------------- /maven/apache-maven/lib/maven-compat-3.3.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/maven-compat-3.3.3.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/maven-compat.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/maven-compat.license -------------------------------------------------------------------------------- /maven/apache-maven/lib/maven-core-3.3.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/maven-core-3.3.3.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/maven-core.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/maven-core.license -------------------------------------------------------------------------------- /maven/apache-maven/lib/maven-embedder-3.3.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/maven-embedder-3.3.3.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/maven-embedder.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/maven-embedder.license -------------------------------------------------------------------------------- /maven/apache-maven/lib/maven-model-3.3.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/maven-model-3.3.3.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/maven-model-builder-3.3.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/maven-model-builder-3.3.3.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/maven-model-builder.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/maven-model-builder.license -------------------------------------------------------------------------------- /maven/apache-maven/lib/maven-model.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/maven-model.license -------------------------------------------------------------------------------- /maven/apache-maven/lib/maven-plugin-api-3.3.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/maven-plugin-api-3.3.3.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/maven-plugin-api.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/maven-plugin-api.license -------------------------------------------------------------------------------- /maven/apache-maven/lib/maven-repository-metadata-3.3.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/maven-repository-metadata-3.3.3.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/maven-repository-metadata.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/maven-repository-metadata.license -------------------------------------------------------------------------------- /maven/apache-maven/lib/maven-settings-3.3.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/maven-settings-3.3.3.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/maven-settings-builder-3.3.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/maven-settings-builder-3.3.3.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/maven-settings-builder.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/maven-settings-builder.license -------------------------------------------------------------------------------- /maven/apache-maven/lib/maven-settings.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/maven-settings.license -------------------------------------------------------------------------------- /maven/apache-maven/lib/org.eclipse.sisu.inject-0.3.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/org.eclipse.sisu.inject-0.3.0.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/org.eclipse.sisu.inject.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/org.eclipse.sisu.inject.license -------------------------------------------------------------------------------- /maven/apache-maven/lib/org.eclipse.sisu.plexus-0.3.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/org.eclipse.sisu.plexus-0.3.0.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/org.eclipse.sisu.plexus.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/org.eclipse.sisu.plexus.license -------------------------------------------------------------------------------- /maven/apache-maven/lib/plexus-cipher-1.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/plexus-cipher-1.7.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/plexus-cipher.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/plexus-cipher.license -------------------------------------------------------------------------------- /maven/apache-maven/lib/plexus-component-annotations-1.5.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/plexus-component-annotations-1.5.5.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/plexus-interpolation-1.21.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/plexus-interpolation-1.21.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/plexus-sec-dispatcher-1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/plexus-sec-dispatcher-1.3.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/plexus-sec-dispatcher.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/plexus-sec-dispatcher.license -------------------------------------------------------------------------------- /maven/apache-maven/lib/plexus-utils-3.0.20.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/plexus-utils-3.0.20.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/sisu-guice-3.2.5-no_aop.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/sisu-guice-3.2.5-no_aop.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/slf4j-api-1.7.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/slf4j-api-1.7.5.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/slf4j-api.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/slf4j-api.license -------------------------------------------------------------------------------- /maven/apache-maven/lib/slf4j-simple-1.7.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/slf4j-simple-1.7.5.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/slf4j-simple.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/slf4j-simple.license -------------------------------------------------------------------------------- /maven/apache-maven/lib/wagon-file-2.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/wagon-file-2.9.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/wagon-file.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/wagon-file.license -------------------------------------------------------------------------------- /maven/apache-maven/lib/wagon-http-2.9-shaded.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/wagon-http-2.9-shaded.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/wagon-http-shared-2.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/wagon-http-shared-2.9.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/wagon-http-shared.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/wagon-http-shared.license -------------------------------------------------------------------------------- /maven/apache-maven/lib/wagon-http.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/wagon-http.license -------------------------------------------------------------------------------- /maven/apache-maven/lib/wagon-provider-api-2.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/wagon-provider-api-2.9.jar -------------------------------------------------------------------------------- /maven/apache-maven/lib/wagon-provider-api.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/apache-maven/lib/wagon-provider-api.license -------------------------------------------------------------------------------- /maven/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/build -------------------------------------------------------------------------------- /maven/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/build.bat -------------------------------------------------------------------------------- /maven/settings/settings-localrepo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/settings/settings-localrepo.xml -------------------------------------------------------------------------------- /maven/settings/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/settings/settings.xml -------------------------------------------------------------------------------- /maven/simple-project/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/simple-project/pom.xml -------------------------------------------------------------------------------- /maven/simple-project/src/main/java/org/sonatype/nexus/examples/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/simple-project/src/main/java/org/sonatype/nexus/examples/App.java -------------------------------------------------------------------------------- /maven/simple-project/src/test/java/org/sonatype/nexus/examples/AppTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonatype/nexus-book-examples/HEAD/maven/simple-project/src/test/java/org/sonatype/nexus/examples/AppTest.java --------------------------------------------------------------------------------