diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/maven-pom.xml | 35 | ||||
-rw-r--r-- | doc/publishing.txt | 2 |
2 files changed, 28 insertions, 9 deletions
diff --git a/doc/maven-pom.xml b/doc/maven-pom.xml index bf22ea5d..34955ab8 100644 --- a/doc/maven-pom.xml +++ b/doc/maven-pom.xml @@ -12,20 +12,37 @@ <licenses> <license> <name>The MIT License</name> - <url>http://www.opensource.org/licenses/mit-license.php</url> + <url>http://projectlombok.org/LICENSE</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> + <url>http://github.com/rzwitserloot/lombok</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 - --> + <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> diff --git a/doc/publishing.txt b/doc/publishing.txt index 01a2c294..85a13a9c 100644 --- a/doc/publishing.txt +++ b/doc/publishing.txt @@ -10,4 +10,6 @@ Step #4: git push && git push --tags Step #5: ant publish-all +Step #6: Follow the instructions that flew by when the maven-publish task ran, which involves going to http://oss.sonatype.org/ and logging in with the username/pass that are in your scroll log, to test and then 'release' the staged repo to maven central. Note that once you do this there's no turning back, and that version number is forever associated with this release. + Step #6: Change src/core/lombok/core/Version.java to "0.8.2-EDGE", and commit this. |