diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2015-05-29 14:39:33 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2015-06-01 16:07:53 +0200 |
commit | 6fc5af47d102c37adfa5fb6c325616214d297085 (patch) | |
tree | 3ecbc93d0fff55c2ca1a4f166e798ec67675a372 | |
parent | ce8baa37154b806b2dbb0e04e681f365c4dbd3ec (diff) | |
download | jgit-6fc5af47d102c37adfa5fb6c325616214d297085.tar.gz jgit-6fc5af47d102c37adfa5fb6c325616214d297085.zip |
Update project meta-data in pom.xml used for site generation
- Update list of committers
- Update scm information
- Expose jgit hudson for Maven site
- Name our project's organization
- Scm URL should point to a web-enabled view on the repository
- Extract tycho-extras version used during signing to a property
Change-Id: If32bed323ec283b5e83d28ffe8775220f7c4cecd
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
-rw-r--r-- | pom.xml | 25 |
1 files changed, 21 insertions, 4 deletions
@@ -56,15 +56,25 @@ <name>JGit - Parent</name> <url>${jgit-url}</url> + <organization> + <name>Eclipse JGit Project</name> + <url>http://www.eclipse.org/jgit</url> + </organization> + <description> Pure Java implementation of Git </description> <scm> - <url>http://egit.eclipse.org/w/?p=jgit.git</url> - <connection>scm:git:git://egit.eclipse.org/jgit.git</connection> + <url>http://git.eclipse.org/c/jgit/jgit.git/</url> + <connection>scm:git:https://git.eclipse.org/r/jgit/jgit</connection> </scm> + <ciManagement> + <system>hudson</system> + <url>https://hudson.eclipse.org/jgit/</url> + </ciManagement> + <developers> <developer> <name>Chris Aniszczyk</name> @@ -82,6 +92,9 @@ <name>Gunnar Wagenknecht</name> </developer> <developer> + <name>Jonathan Nieder</name> + </developer> + <developer> <name>Kevin Sawicki</name> </developer> <developer> @@ -94,6 +107,9 @@ <name>Robin Rosenberg</name> </developer> <developer> + <name>Robin Stocker</name> + </developer> + <developer> <name>Sasa Zivkov</name> </developer> <developer> @@ -191,6 +207,7 @@ <slf4j-version>1.7.2</slf4j-version> <log4j-version>1.2.15</log4j-version> <maven-javadoc-plugin-version>2.10.1</maven-javadoc-plugin-version> + <tycho-extras-version>0.22.0</tycho-extras-version> <!-- Properties to enable jacoco code coverage analysis --> <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin> @@ -355,12 +372,12 @@ <plugin> <groupId>org.eclipse.tycho.extras</groupId> <artifactId>tycho-pack200a-plugin</artifactId> - <version>0.22.0</version> + <version>${tycho-extras-version}</version> </plugin> <plugin> <groupId>org.eclipse.tycho.extras</groupId> <artifactId>tycho-pack200b-plugin</artifactId> - <version>0.22.0</version> + <version>${tycho-extras-version}</version> </plugin> <plugin> <groupId>org.jacoco</groupId> |