Skip to content

Commit

Permalink
Add release versioning support to Maven config.
Browse files Browse the repository at this point in the history
  • Loading branch information
iflan committed Nov 6, 2015
1 parent 4196312 commit 2a335cb
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@

# Client Secrets
/src/main/resources/client_secret*.json

# Maven
pom.xml.versionsBackup
13 changes: 12 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@

<groupId>to.lean.tools</groupId>
<artifactId>mail-importer</artifactId>
<version>1.0-SNAPSHOT</version>
<version>0.0.0-SNAPSHOT</version>

<scm>
<connection>scm:git:[email protected]:iflan/mail-importer.git</connection>
</scm>

<dependencies>
<dependency>
Expand Down Expand Up @@ -143,6 +147,13 @@
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-scm-plugin</artifactId>
<version>1.9.4</version>
<configuration>
<tag>${project.artifactId}-${project.version}</tag>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 2a335cb

Please sign in to comment.