Skip to content

Commit

Permalink
Update release 3.0.0-RC1
Browse files Browse the repository at this point in the history
  • Loading branch information
nilols committed Sep 7, 2014
1 parent b19ef7e commit 216a0cd
Show file tree
Hide file tree
Showing 2 changed files with 100 additions and 47 deletions.
7 changes: 1 addition & 6 deletions deploy.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,7 @@
http://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>sonatype-nexus-releases</id>
<username>${env.CI_DEPLOY_USERNAME}</username>
<password>${env.CI_DEPLOY_PASSWORD}</password>
</server>
<server>
<id>sonatype-nexus-snapshots</id>
<id>ossrh</id>
<username>${env.CI_DEPLOY_USERNAME}</username>
<password>${env.CI_DEPLOY_PASSWORD}</password>
</server>
Expand Down
140 changes: 99 additions & 41 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,12 @@
<groupId>org.graphwalker</groupId>
<artifactId>graphwalker-project</artifactId>
<version>3.0.0-RC1</version>
<name>GraphWalker Project</name>
<inceptionYear>2011</inceptionYear>
<packaging>pom</packaging>

<organization>
<name>GraphWalker</name>
<url>http://graphwalker.org</url>
</organization>
<name>GraphWalker Project</name>
<description>Model-Based Testing Tool</description>
<url>http://graphwalker.org</url>
<inceptionYear>2011</inceptionYear>

<licenses>
<license>
Expand All @@ -23,48 +21,53 @@
</license>
</licenses>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<organization>
<name>GraphWalker</name>
<url>http://graphwalker.org</url>
</organization>

<developers>
<developer>
<id>nilols</id>
<name>Nils Olsson</name>
<email>nilols.at.spotify.dot.com</email>
<roles>
<role>developer</role>
</roles>
<timezone>+2</timezone>
</developer>
<developer>
<id>krikar</id>
<name>Kristian Karl</name>
<email>krikar.at.spotify.dot.com</email>
<roles>
<role>developer</role>
</roles>
<timezone>+2</timezone>
</developer>
</developers>

<scm>
<url>https://github.com/GraphWalker/graphwalker-project</url>
<connection>scm:git:git://github.com:GraphWalker/graphwalker-project.git</connection>
<developerConnection>scm:git:git@github.com:GraphWalker/graphwalker-project.git</developerConnection>
</scm>

<distributionManagement>
<repository>
<id>sonatype-nexus-releases</id>
<name>Sonatype Nexus Releases</name>
<url>https://oss.sonatype.org/content/repositories/releases</url>
</repository>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>

<repositories>
<repository>
<id>sonatype-nexus-releases</id>
<name>Sonatype Nexus Releases</name>
<url>https://oss.sonatype.org/content/repositories/releases</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</repositories>
</distributionManagement>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>

<modules>
<module>../graphwalker-core</module>
Expand Down Expand Up @@ -156,6 +159,61 @@
</dependencies>
</dependencyManagement>

<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadoc</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<keyname>GraphWalker</keyname>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<build>
<plugins>
<plugin>
Expand Down

0 comments on commit 216a0cd

Please sign in to comment.