Skip to content

Commit

Permalink
pom release
Browse files Browse the repository at this point in the history
  • Loading branch information
gaetancollaud committed Mar 13, 2015
1 parent 898175b commit 74af356
Showing 1 changed file with 55 additions and 4 deletions.
59 changes: 55 additions & 4 deletions GCodeSender/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@

<groupId>net.collaud.fablab</groupId>
<artifactId>GCodeSender</artifactId>
<version>0.1-SNAPSHOT</version>
<version>0.1</version>
<packaging>jar</packaging>

<name>GCodeSender</name>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<mainClass>net.collaud.fablab.gcodesender.MainApp</mainClass>
<github.global.server>github</github.global.server>
</properties>

<organization>
Expand Down Expand Up @@ -150,16 +151,66 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.1</version>
<version>2.4.2</version>
<configuration>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
</plugins>
</build>

<scm>
<connection>scm:git:https://github.com/fablab-fribourg/EggBot.git</connection>
<developerConnection>scm:git:[email protected]:fablab-fribourg/EggBot.git</developerConnection>
<url>https://github.com/fablab-fribourg/EggBot.git</url>
<tag>GCodeSender-0.1</tag>
</scm>

<distributionManagement>
<repository>
<id>bintray</id>
<url>https://bintray.com/gaetancollaud/Eggbot/package</url>
</repository>
</distributionManagement>

<!-- <scm>
<connection>scm:git:[email protected]:fablab-fribourg/EggBot.git</connection>
<url>scm:git:[email protected]:fablab-fribourg/EggBot.git</url>
<developerConnection>scm:git:[email protected]:fablab-fribourg/EggBot.git</developerConnection>
<tag>GCodeSender-0.1</tag>
</scm>
</scm>-->

<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>

0 comments on commit 74af356

Please sign in to comment.