Skip to content

Commit

Permalink
POM-40. Require JDK 7 to compile Kiji projects
Browse files Browse the repository at this point in the history
  • Loading branch information
danburkert committed Jul 19, 2014
1 parent cefe375 commit 6bd4c04
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 13 deletions.
3 changes: 3 additions & 0 deletions RELEASE_NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@

KijiREST Release Notes

Version 1.5.0
* POM-40. Require JDK 7 to compile Kiji projects.

Version 1.4.0
* REST-133. Make Kiji/KijiTable connection expiration configurable
* REST-105. Add endpoint to gracefully (or forcefully) shut down server.
Expand Down
2 changes: 1 addition & 1 deletion build-resources/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>org.kiji.rest</groupId>
<artifactId>kiji-rest-root</artifactId>
<version>1.4.1-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion cdh4/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>org.kiji.rest</groupId>
<artifactId>kiji-rest-root</artifactId>
<version>1.4.1-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion cdh5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>org.kiji.rest</groupId>
<artifactId>kiji-rest-root</artifactId>
<version>1.4.1-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion kiji-rest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>org.kiji.rest</groupId>
<artifactId>kiji-rest-root</artifactId>
<version>1.4.1-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion load-testing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>org.kiji.rest</groupId>
<artifactId>kiji-rest-root</artifactId>
<version>1.4.1-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion plugin-archetype/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<parent>
<groupId>org.kiji.rest</groupId>
<artifactId>kiji-rest-root</artifactId>
<version>1.4.1-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

Expand Down
17 changes: 10 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@

<groupId>org.kiji.rest</groupId>
<artifactId>kiji-rest-root</artifactId>
<version>1.4.1-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
<packaging>pom</packaging>

<parent>
<groupId>org.kiji.pom</groupId>
<artifactId>root-pom</artifactId>
<version>1.1.8</version>
<version>1.2.0</version>
</parent>

<name>The Kiji REST Servlet top-level project</name>
Expand All @@ -40,10 +40,10 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<kiji-schema.version>1.5.0</kiji-schema.version>
<kiji-scoring.version>0.16.0</kiji-scoring.version>
<kiji-mapreduce.version>1.2.9</kiji-mapreduce.version>
<fake-hbase.version>0.1.5</fake-hbase.version>
<kiji-schema.version>1.6.0-SNAPSHOT</kiji-schema.version>
<kiji-scoring.version>0.17.0-SNAPSHOT</kiji-scoring.version>
<kiji-mapreduce.version>1.3.0-SNAPSHOT</kiji-mapreduce.version>
<fake-hbase.version>0.2.0-SNAPSHOT</fake-hbase.version>
<dropwizard.version>0.6.2</dropwizard.version>
<guava.version>14.0.1</guava.version>
</properties>
Expand Down Expand Up @@ -85,6 +85,10 @@
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
</plugin>
</plugins>

<pluginManagement>
Expand Down Expand Up @@ -159,5 +163,4 @@
<url>scm:git:[email protected]:kijiproject/kiji-rest.git</url>
<developerConnection>scm:git:[email protected]:kijiproject/kiji-rest.git</developerConnection>
</scm>

</project>

0 comments on commit 6bd4c04

Please sign in to comment.