bulletproof
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.tvinke</groupId>
<artifactId>bulletproof</artifactId>
<version>0.2</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.tvinke</groupId>
<artifactId>bulletproof</artifactId>
<version>0.2</version>
<name>bulletproof</name>
<description>Groovy AST transformations, such as @ValueObject and @NonNull, which makes constructing an instance more bullet-proof</description>
<url>https://github.com/tvinke/bulletproof</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<id>tvinke</id>
<name>Ted Vinke</name>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com//tvinke/bulletproof.git</connection>
<developerConnection>scm:git:ssh://github.com:tvinke/bulletproof.git</developerConnection>
<url>https://github.com/tvinke/bulletproof/tree/master</url>
</scm>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.4.9</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.spockframework</groupId>
<artifactId>spock-core</artifactId>
<version>1.1-groovy-2.4</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>