Skip to content

Commit

Permalink
bump versions of upstream dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeer committed Apr 30, 2014
1 parent fc4b7e4 commit 8bed92c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
Expand Up @@ -18,6 +18,7 @@
import com.gargoylesoftware.htmlunit.BrowserVersion;
import com.gargoylesoftware.htmlunit.FailingHttpStatusCodeException;
import com.gargoylesoftware.htmlunit.NicelyResynchronizingAjaxController;
import com.gargoylesoftware.htmlunit.Page;
import com.gargoylesoftware.htmlunit.WebClient;
import com.gargoylesoftware.htmlunit.html.DomAttr;
import com.gargoylesoftware.htmlunit.html.DomText;
Expand Down Expand Up @@ -163,7 +164,7 @@ public void testCreateNewObjectAndDeleteIt() throws IOException {
webClient.waitForBackgroundJavaScript(1000);
webClient.waitForBackgroundJavaScriptStartingBefore(10000);

final HtmlPage page2 = webClient.getPage(serverAddress + pid);
final Page page2 = webClient.getPage(serverAddress + pid);
assertEquals("Didn't get a 404!", 404, page2.getWebResponse()
.getStatusCode());

Expand Down
23 changes: 12 additions & 11 deletions pom.xml
Expand Up @@ -24,25 +24,26 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- Dependency version properties -->
<activemq.version>5.9.0</activemq.version>
<activemq.version>5.9.1</activemq.version>
<enunciate.version>1.27</enunciate.version>
<fcrepo-build-tools.version>1.4-SNAPSHOT</fcrepo-build-tools.version>
<httpcomponents.version>4.3</httpcomponents.version>
<httpclient.version>4.3.1</httpclient.version>
<httpcomponents.version>4.3.2</httpcomponents.version>
<httpclient.version>4.3.3</httpclient.version>
<infinispan.version>5.3.0.Final</infinispan.version>
<jersey.version>1.17.1</jersey.version>
<jgroups.version>3.4.0.Final</jgroups.version>
<logback.version>1.0.13</logback.version>
<modeshape.version>3.7.1.Final</modeshape.version>
<metrics.version>3.0.1</metrics.version>
<metrics.version>3.0.2</metrics.version>
<sesame.version>2.7.7</sesame.version>
<slf4j.version>1.7.5</slf4j.version>
<slf4j.version>1.7.7</slf4j.version>
<spring.version>4.0.3.RELEASE</spring.version>
<grizzly.version>2.3.6</grizzly.version>
<jena.version>2.11.0</jena.version>
<jena.version>2.11.1</jena.version>
<!-- https://github.com/github/maven-plugins/blob/master/README.md -->
<github.global.server>github</github.global.server>
<powermock.version>1.5.1</powermock.version>
<powermock.version>1.5.4</powermock.version>
<guava.version>17.0</guava.version>
<!-- plugin versions -->
<!-- Until MCHECKSTYLE-169 is resolved, we're using our own, patched version
of checkstyle deployed to fcrepo.maven.org -->
Expand Down Expand Up @@ -120,7 +121,7 @@
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.2</version>
<version>2.3</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
Expand All @@ -130,7 +131,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>16.0</version>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
Expand Down Expand Up @@ -210,7 +211,7 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.5</version>
<version>1.8</version>
</dependency>
<dependency>
<groupId>org.apache.jena</groupId>
Expand Down Expand Up @@ -377,7 +378,7 @@
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.4</version>
<version>2.6</version>
</dependency>
<dependency>
<groupId>asm</groupId>
Expand Down

0 comments on commit 8bed92c

Please sign in to comment.