Skip to content

Commit

Permalink
Set SNAPSHOT and configure SCM
Browse files Browse the repository at this point in the history
  • Loading branch information
jwgmeligmeyling committed Apr 21, 2016
1 parent 5748001 commit 00541d1
Showing 1 changed file with 30 additions and 6 deletions.
36 changes: 30 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>nl.tudelft.ewi</groupId>
<artifactId>gitolite</artifactId>
<version>0.0.6</version>
<version>0.0.7-SNAPSHOT</version>

<url>http://devhub.ewi.tudelft.nl</url>
<name>Java Gitolite Manager</name>
Expand Down Expand Up @@ -47,17 +47,27 @@
<url>http://ewi.tudelft.nl</url>
</organization>

<scm>
<connection>scm:git:[email protected]:devhub-tud/Java-Gitolite-Manager.git</connection>
<developerConnection>scm:git:[email protected]:devhub-tud/Java-Gitolite-Manager.git</developerConnection>
<url>[email protected]:devhub-tud/Java-Gitolite-Manager.git</url>
<tag>HEAD</tag>
</scm>

<developers>
<developer>
<name>Michael de Jong</name>
<email>[email protected]</email>
</developer>
<developer>
<name>Jan-Willem Gmelig Meyling</name>
<email>[email protected]</email>
</developer>
</developers>

<contributors>
<contributor>
<name>Michael de Jong</name>
<email>[email protected]</email>
</contributor>
</contributors>

<licenses>
<license>
<name>Apache License, Version 2.0</name>
Expand All @@ -66,7 +76,6 @@
</license>
</licenses>


<dependencies>
<!-- Utilities -->
<dependency>
Expand Down Expand Up @@ -192,6 +201,21 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
</configuration>
<dependencies>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-gitexe</artifactId>
<version>1.9.4</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 00541d1

Please sign in to comment.