Skip to content

Commit

Permalink
Merge pull request #9 from tdonohue/master
Browse files Browse the repository at this point in the history
Require Java 7 & Upgrade to Latest DuraCloud API
  • Loading branch information
tdonohue committed May 16, 2013
2 parents da63a65 + ea90b2d commit f20d9bb
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,21 @@
<!-- DSpace Version Information (supported version of DSpace) -->
<dspace.version>[3.0,4.0)</dspace.version>
<!-- DuraCloud Version Information (supported version of DuraCloud) -->
<duracloud.version>2.2.0</duracloud.version>
<duracloud.version>2.3.1</duracloud.version>
</properties>

<build>
<plugins>
<plugin>
<!-- Replication Task Suite requires Java 1.7 or higher,
as DuraCloud APIs require Java 1.7 or above. -->
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.3.2</version>
Expand Down

0 comments on commit f20d9bb

Please sign in to comment.