├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── Vagrantfile ├── pom.xml ├── settings.xml └── src ├── main ├── java │ └── com │ │ └── jamierf │ │ └── dropwizard │ │ └── debpkg │ │ ├── DropwizardMojo.java │ │ ├── config │ │ ├── DebConfiguration.java │ │ ├── JvmConfiguration.java │ │ ├── PathConfiguration.java │ │ ├── PgpConfiguration.java │ │ ├── ResourceConfiguration.java │ │ └── UnixConfiguration.java │ │ ├── filter │ │ ├── DependencyFilter.java │ │ └── StringMatchingFilter.java │ │ ├── packaging │ │ ├── PackageBuilder.java │ │ └── ResourceExtractor.java │ │ ├── resource │ │ ├── EmbeddedResource.java │ │ ├── FileResource.java │ │ ├── Resource.java │ │ └── StringResource.java │ │ ├── template │ │ ├── MissingParameterException.java │ │ ├── Templater.java │ │ └── mustache │ │ │ ├── MustacheTemplater.java │ │ │ └── StrictReflectionObjectHandler.java │ │ ├── transforms │ │ ├── ResourceDataProducer.java │ │ └── ResourceProducer.java │ │ ├── util │ │ ├── LogConsole.java │ │ └── SystemConsole.java │ │ └── validation │ │ ├── ApplicationValidator.java │ │ └── DelegatingNoExitSecurityManager.java └── resources │ ├── control │ ├── conffiles │ ├── control │ ├── postinst │ ├── postrm │ ├── preinst │ └── prerm │ └── files │ ├── jvm.conf │ ├── start.sh │ ├── systemd.service │ ├── systemv.sh │ └── upstart.conf └── test ├── java └── com │ └── jamierf │ └── dropwizard │ └── debpkg │ ├── AbstractDropwizardMojoTest.java │ ├── ConfiguredDropwizardMojoTest.java │ ├── DefaultDropwizardMojoTest.java │ ├── InvalidDropwizardMojoTest.java │ ├── filter │ ├── DependencyFilterTest.java │ └── StringMatchingFilterTest.java │ ├── packaging │ └── PackageBuilderTest.java │ ├── resource │ └── ResourceTest.java │ ├── stub │ ├── TestArtifactStub.java │ ├── TestBuildStub.java │ ├── TestJarProjectStub.java │ ├── TestPomProjectStub.java │ └── TestProjectStub.java │ ├── template │ └── MustacheTemplateTest.java │ ├── transforms │ └── ResourceProducerTest.java │ ├── util │ ├── ArchiveUtils.java │ └── LogConsoleTest.java │ └── validation │ ├── ApplicationValidatorTest.java │ └── DelegatingNoExitSecurityManagerTest.java └── resources └── com └── jamierf └── dropwizard └── debpkg ├── configured.xml ├── default.xml ├── empty.xml ├── packaging ├── private.asc └── public.asc ├── resource ├── embedded.txt └── file.txt ├── template ├── conditional.mustache ├── invalid.mustache ├── simple.mustache └── text.mustache ├── test.yml ├── type.xml └── validation ├── invalid.yml ├── invalid_syntax.yml ├── no_main_class.jar ├── no_manifest.jar ├── private.jar └── valid.yml /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | .idea/ 3 | *.iml 4 | .vagrant/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/Vagrantfile -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/settings.xml -------------------------------------------------------------------------------- /src/main/java/com/jamierf/dropwizard/debpkg/DropwizardMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/java/com/jamierf/dropwizard/debpkg/DropwizardMojo.java -------------------------------------------------------------------------------- /src/main/java/com/jamierf/dropwizard/debpkg/config/DebConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/java/com/jamierf/dropwizard/debpkg/config/DebConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/jamierf/dropwizard/debpkg/config/JvmConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/java/com/jamierf/dropwizard/debpkg/config/JvmConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/jamierf/dropwizard/debpkg/config/PathConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/java/com/jamierf/dropwizard/debpkg/config/PathConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/jamierf/dropwizard/debpkg/config/PgpConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/java/com/jamierf/dropwizard/debpkg/config/PgpConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/jamierf/dropwizard/debpkg/config/ResourceConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/java/com/jamierf/dropwizard/debpkg/config/ResourceConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/jamierf/dropwizard/debpkg/config/UnixConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/java/com/jamierf/dropwizard/debpkg/config/UnixConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/jamierf/dropwizard/debpkg/filter/DependencyFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/java/com/jamierf/dropwizard/debpkg/filter/DependencyFilter.java -------------------------------------------------------------------------------- /src/main/java/com/jamierf/dropwizard/debpkg/filter/StringMatchingFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/java/com/jamierf/dropwizard/debpkg/filter/StringMatchingFilter.java -------------------------------------------------------------------------------- /src/main/java/com/jamierf/dropwizard/debpkg/packaging/PackageBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/java/com/jamierf/dropwizard/debpkg/packaging/PackageBuilder.java -------------------------------------------------------------------------------- /src/main/java/com/jamierf/dropwizard/debpkg/packaging/ResourceExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/java/com/jamierf/dropwizard/debpkg/packaging/ResourceExtractor.java -------------------------------------------------------------------------------- /src/main/java/com/jamierf/dropwizard/debpkg/resource/EmbeddedResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/java/com/jamierf/dropwizard/debpkg/resource/EmbeddedResource.java -------------------------------------------------------------------------------- /src/main/java/com/jamierf/dropwizard/debpkg/resource/FileResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/java/com/jamierf/dropwizard/debpkg/resource/FileResource.java -------------------------------------------------------------------------------- /src/main/java/com/jamierf/dropwizard/debpkg/resource/Resource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/java/com/jamierf/dropwizard/debpkg/resource/Resource.java -------------------------------------------------------------------------------- /src/main/java/com/jamierf/dropwizard/debpkg/resource/StringResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/java/com/jamierf/dropwizard/debpkg/resource/StringResource.java -------------------------------------------------------------------------------- /src/main/java/com/jamierf/dropwizard/debpkg/template/MissingParameterException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/java/com/jamierf/dropwizard/debpkg/template/MissingParameterException.java -------------------------------------------------------------------------------- /src/main/java/com/jamierf/dropwizard/debpkg/template/Templater.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/java/com/jamierf/dropwizard/debpkg/template/Templater.java -------------------------------------------------------------------------------- /src/main/java/com/jamierf/dropwizard/debpkg/template/mustache/MustacheTemplater.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/java/com/jamierf/dropwizard/debpkg/template/mustache/MustacheTemplater.java -------------------------------------------------------------------------------- /src/main/java/com/jamierf/dropwizard/debpkg/template/mustache/StrictReflectionObjectHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/java/com/jamierf/dropwizard/debpkg/template/mustache/StrictReflectionObjectHandler.java -------------------------------------------------------------------------------- /src/main/java/com/jamierf/dropwizard/debpkg/transforms/ResourceDataProducer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/java/com/jamierf/dropwizard/debpkg/transforms/ResourceDataProducer.java -------------------------------------------------------------------------------- /src/main/java/com/jamierf/dropwizard/debpkg/transforms/ResourceProducer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/java/com/jamierf/dropwizard/debpkg/transforms/ResourceProducer.java -------------------------------------------------------------------------------- /src/main/java/com/jamierf/dropwizard/debpkg/util/LogConsole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/java/com/jamierf/dropwizard/debpkg/util/LogConsole.java -------------------------------------------------------------------------------- /src/main/java/com/jamierf/dropwizard/debpkg/util/SystemConsole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/java/com/jamierf/dropwizard/debpkg/util/SystemConsole.java -------------------------------------------------------------------------------- /src/main/java/com/jamierf/dropwizard/debpkg/validation/ApplicationValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/java/com/jamierf/dropwizard/debpkg/validation/ApplicationValidator.java -------------------------------------------------------------------------------- /src/main/java/com/jamierf/dropwizard/debpkg/validation/DelegatingNoExitSecurityManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/java/com/jamierf/dropwizard/debpkg/validation/DelegatingNoExitSecurityManager.java -------------------------------------------------------------------------------- /src/main/resources/control/conffiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/resources/control/conffiles -------------------------------------------------------------------------------- /src/main/resources/control/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/resources/control/control -------------------------------------------------------------------------------- /src/main/resources/control/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/resources/control/postinst -------------------------------------------------------------------------------- /src/main/resources/control/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/resources/control/postrm -------------------------------------------------------------------------------- /src/main/resources/control/preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/resources/control/preinst -------------------------------------------------------------------------------- /src/main/resources/control/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/resources/control/prerm -------------------------------------------------------------------------------- /src/main/resources/files/jvm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/resources/files/jvm.conf -------------------------------------------------------------------------------- /src/main/resources/files/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/resources/files/start.sh -------------------------------------------------------------------------------- /src/main/resources/files/systemd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/resources/files/systemd.service -------------------------------------------------------------------------------- /src/main/resources/files/systemv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/resources/files/systemv.sh -------------------------------------------------------------------------------- /src/main/resources/files/upstart.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/main/resources/files/upstart.conf -------------------------------------------------------------------------------- /src/test/java/com/jamierf/dropwizard/debpkg/AbstractDropwizardMojoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/java/com/jamierf/dropwizard/debpkg/AbstractDropwizardMojoTest.java -------------------------------------------------------------------------------- /src/test/java/com/jamierf/dropwizard/debpkg/ConfiguredDropwizardMojoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/java/com/jamierf/dropwizard/debpkg/ConfiguredDropwizardMojoTest.java -------------------------------------------------------------------------------- /src/test/java/com/jamierf/dropwizard/debpkg/DefaultDropwizardMojoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/java/com/jamierf/dropwizard/debpkg/DefaultDropwizardMojoTest.java -------------------------------------------------------------------------------- /src/test/java/com/jamierf/dropwizard/debpkg/InvalidDropwizardMojoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/java/com/jamierf/dropwizard/debpkg/InvalidDropwizardMojoTest.java -------------------------------------------------------------------------------- /src/test/java/com/jamierf/dropwizard/debpkg/filter/DependencyFilterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/java/com/jamierf/dropwizard/debpkg/filter/DependencyFilterTest.java -------------------------------------------------------------------------------- /src/test/java/com/jamierf/dropwizard/debpkg/filter/StringMatchingFilterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/java/com/jamierf/dropwizard/debpkg/filter/StringMatchingFilterTest.java -------------------------------------------------------------------------------- /src/test/java/com/jamierf/dropwizard/debpkg/packaging/PackageBuilderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/java/com/jamierf/dropwizard/debpkg/packaging/PackageBuilderTest.java -------------------------------------------------------------------------------- /src/test/java/com/jamierf/dropwizard/debpkg/resource/ResourceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/java/com/jamierf/dropwizard/debpkg/resource/ResourceTest.java -------------------------------------------------------------------------------- /src/test/java/com/jamierf/dropwizard/debpkg/stub/TestArtifactStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/java/com/jamierf/dropwizard/debpkg/stub/TestArtifactStub.java -------------------------------------------------------------------------------- /src/test/java/com/jamierf/dropwizard/debpkg/stub/TestBuildStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/java/com/jamierf/dropwizard/debpkg/stub/TestBuildStub.java -------------------------------------------------------------------------------- /src/test/java/com/jamierf/dropwizard/debpkg/stub/TestJarProjectStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/java/com/jamierf/dropwizard/debpkg/stub/TestJarProjectStub.java -------------------------------------------------------------------------------- /src/test/java/com/jamierf/dropwizard/debpkg/stub/TestPomProjectStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/java/com/jamierf/dropwizard/debpkg/stub/TestPomProjectStub.java -------------------------------------------------------------------------------- /src/test/java/com/jamierf/dropwizard/debpkg/stub/TestProjectStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/java/com/jamierf/dropwizard/debpkg/stub/TestProjectStub.java -------------------------------------------------------------------------------- /src/test/java/com/jamierf/dropwizard/debpkg/template/MustacheTemplateTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/java/com/jamierf/dropwizard/debpkg/template/MustacheTemplateTest.java -------------------------------------------------------------------------------- /src/test/java/com/jamierf/dropwizard/debpkg/transforms/ResourceProducerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/java/com/jamierf/dropwizard/debpkg/transforms/ResourceProducerTest.java -------------------------------------------------------------------------------- /src/test/java/com/jamierf/dropwizard/debpkg/util/ArchiveUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/java/com/jamierf/dropwizard/debpkg/util/ArchiveUtils.java -------------------------------------------------------------------------------- /src/test/java/com/jamierf/dropwizard/debpkg/util/LogConsoleTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/java/com/jamierf/dropwizard/debpkg/util/LogConsoleTest.java -------------------------------------------------------------------------------- /src/test/java/com/jamierf/dropwizard/debpkg/validation/ApplicationValidatorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/java/com/jamierf/dropwizard/debpkg/validation/ApplicationValidatorTest.java -------------------------------------------------------------------------------- /src/test/java/com/jamierf/dropwizard/debpkg/validation/DelegatingNoExitSecurityManagerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/java/com/jamierf/dropwizard/debpkg/validation/DelegatingNoExitSecurityManagerTest.java -------------------------------------------------------------------------------- /src/test/resources/com/jamierf/dropwizard/debpkg/configured.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/resources/com/jamierf/dropwizard/debpkg/configured.xml -------------------------------------------------------------------------------- /src/test/resources/com/jamierf/dropwizard/debpkg/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/resources/com/jamierf/dropwizard/debpkg/default.xml -------------------------------------------------------------------------------- /src/test/resources/com/jamierf/dropwizard/debpkg/empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/resources/com/jamierf/dropwizard/debpkg/empty.xml -------------------------------------------------------------------------------- /src/test/resources/com/jamierf/dropwizard/debpkg/packaging/private.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/resources/com/jamierf/dropwizard/debpkg/packaging/private.asc -------------------------------------------------------------------------------- /src/test/resources/com/jamierf/dropwizard/debpkg/packaging/public.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/resources/com/jamierf/dropwizard/debpkg/packaging/public.asc -------------------------------------------------------------------------------- /src/test/resources/com/jamierf/dropwizard/debpkg/resource/embedded.txt: -------------------------------------------------------------------------------- 1 | embedded -------------------------------------------------------------------------------- /src/test/resources/com/jamierf/dropwizard/debpkg/resource/file.txt: -------------------------------------------------------------------------------- 1 | file -------------------------------------------------------------------------------- /src/test/resources/com/jamierf/dropwizard/debpkg/template/conditional.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/resources/com/jamierf/dropwizard/debpkg/template/conditional.mustache -------------------------------------------------------------------------------- /src/test/resources/com/jamierf/dropwizard/debpkg/template/invalid.mustache: -------------------------------------------------------------------------------- 1 | hello {{{location}} -------------------------------------------------------------------------------- /src/test/resources/com/jamierf/dropwizard/debpkg/template/simple.mustache: -------------------------------------------------------------------------------- 1 | hello {{location}} -------------------------------------------------------------------------------- /src/test/resources/com/jamierf/dropwizard/debpkg/template/text.mustache: -------------------------------------------------------------------------------- 1 | hello world -------------------------------------------------------------------------------- /src/test/resources/com/jamierf/dropwizard/debpkg/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/resources/com/jamierf/dropwizard/debpkg/test.yml -------------------------------------------------------------------------------- /src/test/resources/com/jamierf/dropwizard/debpkg/type.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/resources/com/jamierf/dropwizard/debpkg/type.xml -------------------------------------------------------------------------------- /src/test/resources/com/jamierf/dropwizard/debpkg/validation/invalid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/resources/com/jamierf/dropwizard/debpkg/validation/invalid.yml -------------------------------------------------------------------------------- /src/test/resources/com/jamierf/dropwizard/debpkg/validation/invalid_syntax.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/resources/com/jamierf/dropwizard/debpkg/validation/invalid_syntax.yml -------------------------------------------------------------------------------- /src/test/resources/com/jamierf/dropwizard/debpkg/validation/no_main_class.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/resources/com/jamierf/dropwizard/debpkg/validation/no_main_class.jar -------------------------------------------------------------------------------- /src/test/resources/com/jamierf/dropwizard/debpkg/validation/no_manifest.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/resources/com/jamierf/dropwizard/debpkg/validation/no_manifest.jar -------------------------------------------------------------------------------- /src/test/resources/com/jamierf/dropwizard/debpkg/validation/private.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/resources/com/jamierf/dropwizard/debpkg/validation/private.jar -------------------------------------------------------------------------------- /src/test/resources/com/jamierf/dropwizard/debpkg/validation/valid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reines/dropwizard-debpkg-maven-plugin/HEAD/src/test/resources/com/jamierf/dropwizard/debpkg/validation/valid.yml --------------------------------------------------------------------------------