dropwizard-environment-configuration
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>de.thomaskrille.dropwizard</groupId>
<artifactId>dropwizard-environment-configuration</artifactId>
<version>1.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>de.thomaskrille.dropwizard</groupId>
<artifactId>dropwizard-environment-configuration</artifactId>
<name>Dropwizard Environment Configuration</name>
<version>1.1</version>
<description>Dropwizard ConfigurationFactory that allows specifying environment variables as values in YAML.</description>
<url>https://github.com/tkrille/dropwizard-environment-config</url>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/tkrille/dropwizard-environment-config/issues</url>
</issueManagement>
<developers>
<developer>
<name>Thomas Krille</name>
<email>krille@thomaskrille.de</email>
</developer>
</developers>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/tkrille/dropwizard-environment-config.git</connection>
<developerConnection>scm:git:git@github.com:tkrille/dropwizard-environment-config.git</developerConnection>
<tag>v1.1</tag>
<url>https://github.com/tkrille/dropwizard-environment-config</url>
</scm>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.5</version>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.5</version>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<id>shade-3rd-party-deps</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>true</minimizeJar>
<artifactSet>
<includes>
<include>commons-lang:commons-lang</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>org.apache.commons.lang</pattern>
<shadedPattern>de.thomaskrille.dropwizard.environment_configuration.redist.org.apache.commons.lang</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-core</artifactId>
<version>0.7.1</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>dropwizard-util</artifactId>
<groupId>io.dropwizard</groupId>
</exclusion>
<exclusion>
<artifactId>dropwizard-jackson</artifactId>
<groupId>io.dropwizard</groupId>
</exclusion>
<exclusion>
<artifactId>dropwizard-validation</artifactId>
<groupId>io.dropwizard</groupId>
</exclusion>
<exclusion>
<artifactId>dropwizard-configuration</artifactId>
<groupId>io.dropwizard</groupId>
</exclusion>
<exclusion>
<artifactId>dropwizard-logging</artifactId>
<groupId>io.dropwizard</groupId>
</exclusion>
<exclusion>
<artifactId>dropwizard-metrics</artifactId>
<groupId>io.dropwizard</groupId>
</exclusion>
<exclusion>
<artifactId>dropwizard-jersey</artifactId>
<groupId>io.dropwizard</groupId>
</exclusion>
<exclusion>
<artifactId>dropwizard-servlets</artifactId>
<groupId>io.dropwizard</groupId>
</exclusion>
<exclusion>
<artifactId>dropwizard-jetty</artifactId>
<groupId>io.dropwizard</groupId>
</exclusion>
<exclusion>
<artifactId>dropwizard-lifecycle</artifactId>
<groupId>io.dropwizard</groupId>
</exclusion>
<exclusion>
<artifactId>metrics-core</artifactId>
<groupId>com.codahale.metrics</groupId>
</exclusion>
<exclusion>
<artifactId>metrics-jvm</artifactId>
<groupId>com.codahale.metrics</groupId>
</exclusion>
<exclusion>
<artifactId>metrics-servlets</artifactId>
<groupId>com.codahale.metrics</groupId>
</exclusion>
<exclusion>
<artifactId>metrics-healthchecks</artifactId>
<groupId>com.codahale.metrics</groupId>
</exclusion>
<exclusion>
<artifactId>argparse4j</artifactId>
<groupId>net.sourceforge.argparse4j</groupId>
</exclusion>
<exclusion>
<artifactId>javax.servlet</artifactId>
<groupId>org.eclipse.jetty.orbit</groupId>
</exclusion>
<exclusion>
<artifactId>jetty-setuid-java</artifactId>
<groupId>org.eclipse.jetty.toolchain.setuid</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-testing</artifactId>
<version>0.7.1</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>jersey-test-framework-core</artifactId>
<groupId>com.sun.jersey.jersey-test-framework</groupId>
</exclusion>
<exclusion>
<artifactId>jersey-test-framework-inmemory</artifactId>
<groupId>com.sun.jersey.jersey-test-framework</groupId>
</exclusion>
<exclusion>
<artifactId>junit</artifactId>
<groupId>junit</groupId>
</exclusion>
<exclusion>
<artifactId>mockito-core</artifactId>
<groupId>org.mockito</groupId>
</exclusion>
<exclusion>
<artifactId>objenesis</artifactId>
<groupId>org.objenesis</groupId>
</exclusion>
<exclusion>
<artifactId>fest-assert-core</artifactId>
<groupId>org.easytesting</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.7</version>
<configuration>
<dependencyDetailsEnabled>true</dependencyDetailsEnabled>
<dependencyLocationsEnabled>true</dependencyLocationsEnabled>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<reportSets>
<reportSet>
<id>html</id>
<reports>
<report>javadoc</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
<distributionManagement>
<repository>
<id>ossrh</id>
<name>Nexus Release Repository</name>
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>ossrh</id>
<name>Sonatype Nexus Snapshots</name>
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>