diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-07-29 17:27:23 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-07-29 17:27:23 +0200 |
commit | 6b940dfc46af5bf5f9cec42df089b8c9b02e5619 (patch) | |
tree | 1139b643a4b68ea1f1c92eff08aac0ddfb1d0e06 /doc/maven-pom.xml | |
parent | 5898d3c96a7f8573dc227e84c7c2aca5c49e4cd5 (diff) | |
download | lombok-6b940dfc46af5bf5f9cec42df089b8c9b02e5619.tar.gz lombok-6b940dfc46af5bf5f9cec42df089b8c9b02e5619.tar.bz2 lombok-6b940dfc46af5bf5f9cec42df089b8c9b02e5619.zip |
Added support for maven.
Diffstat (limited to 'doc/maven-pom.xml')
-rw-r--r-- | doc/maven-pom.xml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/doc/maven-pom.xml b/doc/maven-pom.xml new file mode 100644 index 00000000..bf22ea5d --- /dev/null +++ b/doc/maven-pom.xml @@ -0,0 +1,31 @@ +<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</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://www.opensource.org/licenses/mit-license.php</url> + <distribution>repo</distribution> + </license> + </licenses> + <scm> + <connection>scm:git:git://github.com/rzwitserloot/lombok.git</connection> + <url>scm:git:git://github.com/rzwitserloot/lombok.git</url> + </scm> + <!-- + For auto-syncing to the main maven repository: + "org.projectlombok","mavensync@projectlombok.org:/home/mavensync/public_html/m2repo","rsync_ssh","Reinier Zwitserloot", "reinier@projectlombok.org",, + + For deploying to the remote repo on projectlombok.org: + mvn deploy:deploy-file -DrepositoryId=projectlombok.org url=scp://reinier@projectlombok.org/home/mavensync/public_html/m2repo -Dfile=dist/lombok.jar -DpomFile=doc/maven-pom.xml + --> +</project> + |