diff options
Diffstat (limited to 'doc/utils-maven-pom.xml')
-rw-r--r-- | doc/utils-maven-pom.xml | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/doc/utils-maven-pom.xml b/doc/utils-maven-pom.xml new file mode 100644 index 00000000..60df78f0 --- /dev/null +++ b/doc/utils-maven-pom.xml @@ -0,0 +1,48 @@ +<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>org.projectlombok</groupId> + <artifactId>lombok-utils</artifactId> + <packaging>jar</packaging> + <version>@VERSION@</version> + <name>Project Lombok</name> + <url>http://projectlombok.org</url> + <description>Spice up your java: Automatic Resource Management, automatic generation of getters, setters, equals, hashCode and toString, and more!</description> + <dependencies></dependencies> + <licenses> + <license> + <name>The MIT License</name> + <url>http://projectlombok.org/LICENSE</url> + <distribution>repo</distribution> + </license> + </licenses> + <scm> + <connection>scm:git:git://github.com/rzwitserloot/lombok.git</connection> + <url>http://github.com/rzwitserloot/lombok</url> + </scm> + <issueManagement> + <system>Google Code</system> + <url>http://code.google.com/p/projectlombok/issues</url> + </issueManagement> + <developers> + <developer> + <id>rzwitserloot</id> + <name>Reinier Zwitserloot</name> + <email>reinier@projectlombok.org</email> + <url>http://zwitserloot.com</url> + <timezone>+1</timezone> + </developer> + <developer> + <id>rspilker</id> + <name>Roel Spilker</name> + <email>roel@projectlombok.org</email> + <timezone>+1</timezone> + </developer> + <developer> + <id>rgrootjans</id> + <name>Robbert Jan Grootjans</name> + <timezone>+1</timezone> + </developer> + </developers> +</project> + |