Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Rinde van Lon committed Dec 22, 2014
1 parent c7fcd03 commit 019a513
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# RinLog 1.0.0-SNAPSHOT
# RinLog 1.0.0
[![Build Status](https://travis-ci.org/rinde/RinLog.svg)](https://travis-ci.org/rinde/RinLog)

Code for experiments in logistics. See [release notes](releasenotes.md). This library uses [semantic versioning](http://semver.org/).
Code for experiments in logistics. See [release notes](releasenotes.md). This library uses [semantic versioning](http://semver.org/) and is open source under the [Apache License Version 2.0](LICENSE).
* Solvers:
* [CheapestInsertionHeuristic](src/main/java/com/github/rinde/logistics/pdptw/solver/CheapestInsertionHeuristic.java)
* [Opt2](src/main/java/com/github/rinde/logistics/pdptw/solver/Opt2.java)
Expand Down
55 changes: 52 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.rinde</groupId>
<artifactId>rinlog</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>

<name>RinLog</name>
<description>RinLog is a collection of (agent) implementations for logistics problems.</description>
Expand Down Expand Up @@ -48,8 +48,9 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<rinsim.version>3.0.0</rinsim.version>
<rinsim.version>[3.0.0,4.0.0)</rinsim.version>
<sonar.language>java</sonar.language>
<reference.version>1.0.0</reference.version>
</properties>

<build>
Expand Down Expand Up @@ -145,6 +146,54 @@
</pluginManagement>

<plugins>
<!-- Checks API for backwards compatibility -->
<plugin>
<groupId>com.googlecode.japi-checker</groupId>
<artifactId>japi-checker-maven-plugin</artifactId>
<version>0.1.4</version>
<configuration>
<reference>
<!-- Replace here with the reference artifact of your project. -->
<groupId>com.github.rinde</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${reference.version}</version>
</reference>
<rules>
<rule>com.googlecode.japi.checker.rules.AllRules</rule>
</rules>
</configuration>
<executions>
<execution>
<id>check-bc</id> <!-- this is used for inheritance merges -->
<phase>verify</phase> <!-- bind to the packaging phase -->
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>

<!-- Release plugin -->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<pushChanges>false</pushChanges>
</configuration>
</plugin>

<!-- adds a source jar to every executable jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -257,7 +306,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand Down

0 comments on commit 019a513

Please sign in to comment.