envy
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.statemachinesystems</groupId>
<artifactId>envy</artifactId>
<version>1.9</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.statemachinesystems</groupId>
<artifactId>envy</artifactId>
<version>1.9</version>
<packaging>jar</packaging>
<name>Envy</name>
<description>Super simple configuration for Java.</description>
<url>https://github.com/state-machine-systems/envy</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:state-machine-systems/envy.git</connection>
<developerConnection>scm:git:git@github.com:state-machine-systems/envy.git</developerConnection>
<url>git@github.com:state-machine-systems/envy.git</url>
<tag>envy-1.9</tag>
</scm>
<developers>
<developer>
<id>johnwright</id>
<name>John Wright</name>
<email>john@statemachinesystems.co.uk</email>
<organization>State Machine Systems</organization>
<organizationUrl>http://www.statemachinesystems.co.uk</organizationUrl>
</developer>
</developers>
<properties>
<junit.version>4.11</junit.version>
<mockito.version>1.9.5</mockito.version>
<guava.version>19.0</guava.version>
<scala.library.version>2.11.8</scala.library.version>
<maven.compiler.plugin.version>3.1</maven.compiler.plugin.version>
<maven.surefire.plugin.version>2.17</maven.surefire.plugin.version>
<maven.release.plugin.version>2.5.1</maven.release.plugin.version>
<maven.source.plugin.version>2.4</maven.source.plugin.version>
<maven.javadoc.plugin.version>2.10.1</maven.javadoc.plugin.version>
<maven.deploy.plugin.version>2.8.2</maven.deploy.plugin.version>
<maven.gpg.plugin.version>1.5</maven.gpg.plugin.version>
<jacoco.version>0.8.0</jacoco.version>
<java.source.version>1.8</java.source.version>
<java.target.version>1.8</java.target.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>${scala.library.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.plugin.version}</version>
<executions>
<execution>
<id>default-compile</id>
<configuration>
<source>${java.source.version}</source>
<target>${java.target.version}</target>
</configuration>
</execution>
<execution>
<id>default-testCompile</id>
<configuration>
<source>${java.source.version}</source>
<target>${java.target.version}</target>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven.surefire.plugin.version}</version>
<executions>
<execution>
<id>default-test</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<argLine>${jacocoAgentConfigArgs}</argLine>
<excludes>
<exclude>**/integration/*.*</exclude>
</excludes>
</configuration>
</execution>
<execution>
<id>integration-test</id>
<phase>integration-test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<argLine>${jacocoAgentConfigArgs}</argLine>
<includes>
<include>**/integration/*.*</include>
</includes>
<environmentVariables>
<NODE_TYPE>mellifluator</NODE_TYPE>
<SPLINE_RETICULATION_COUNT>143</SPLINE_RETICULATION_COUNT>
<DIRIGIBLE_ENABLED>n</DIRIGIBLE_ENABLED>
<DATA_POINTS>-1,-2,-3</DATA_POINTS>
<MORE_DATA_POINTS>a:3,b:91,c:74</MORE_DATA_POINTS>
</environmentVariables>
<systemProperties>
<endpoints>foo17,foo18,foo19</endpoints>
<foo.bars>FOO,BAR</foo.bars>
<dirigible.enabled>y</dirigible.enabled>
<data.points>0,1,2</data.points>
<more.data.points>x:7,y:18,z:41</more.data.points>
<ignores.the.default>foo-bar-63</ignores.the.default>
<com.foo.long.and.awkward.name>xyz</com.foo.long.and.awkward.name>
<object.type>example</object.type>
</systemProperties>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
<executions>
<execution>
<id>jacoco-init</id>
<phase>process-test-classes</phase>
<goals>
<goal>prepare-agent</goal>
</goals>
<configuration>
<propertyName>jacocoAgentConfigArgs</propertyName>
</configuration>
</execution>
<execution>
<id>jacoco-report</id>
<phase>verify</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${maven.release.plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven.source.plugin.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven.javadoc.plugin.version}</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>${maven.deploy.plugin.version}</version>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven.gpg.plugin.version}</version>
<configuration>
<useAgent>true</useAgent>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus snapshot repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<name>Sonatype Nexus release repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>