Configure maven release management
This commit is contained in:
parent
8ad9c996f9
commit
186cc9eeb1
1 changed files with 23 additions and 5 deletions
28
pom.xml
28
pom.xml
|
@ -5,6 +5,19 @@
|
||||||
<artifactId>epub-creator</artifactId>
|
<artifactId>epub-creator</artifactId>
|
||||||
<version>1.0.0-SNAPSHOT</version>
|
<version>1.0.0-SNAPSHOT</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:git@github.com:OpenCollabZA/epub-creator.git</connection>
|
||||||
|
<url>scm:git:git@github.com:OpenCollabZA/epub-creator.git</url>
|
||||||
|
<developerConnection>scm:git:git@github.com:OpenCollabZA/epub-creator.git</developerConnection>
|
||||||
|
</scm>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
<maven.compiler.source>1.7</maven.compiler.source>
|
||||||
|
<maven.compiler.target>1.7</maven.compiler.target>
|
||||||
|
</properties>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>junit</groupId>
|
<groupId>junit</groupId>
|
||||||
|
@ -29,11 +42,16 @@
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<properties>
|
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<build>
|
||||||
<maven.compiler.source>1.7</maven.compiler.source>
|
<plugins>
|
||||||
<maven.compiler.target>1.7</maven.compiler.target>
|
<plugin>
|
||||||
</properties>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-release-plugin</artifactId>
|
||||||
|
<version>2.5.3</version>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
|
|
Loading…
Reference in a new issue