Skip to content

Commit

Permalink
#313 bump jcabi parent version to 0.49.9
Browse files Browse the repository at this point in the history
  • Loading branch information
victornoel committed Mar 30, 2020
1 parent aea16e7 commit 84b729c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 7 deletions.
22 changes: 16 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ SOFTWARE.
<parent>
<groupId>com.jcabi</groupId>
<artifactId>parent</artifactId>
<version>0.49.2</version>
<version>0.49.9</version>
</parent>
<groupId>org.jpeek</groupId>
<artifactId>jpeek</artifactId>
Expand Down Expand Up @@ -81,6 +81,20 @@ SOFTWARE.
<url>https://github.com/yegor256/jpeek</url>
</site>
</distributionManagement>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>1.3</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.cactoos</groupId>
Expand Down Expand Up @@ -213,19 +227,17 @@ SOFTWARE.
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.5.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.5.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>5.5.2</version>
<version>${junit-platform.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down Expand Up @@ -268,8 +280,6 @@ SOFTWARE.
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<useIncrementalCompilation>false</useIncrementalCompilation>
</configuration>
</plugin>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/jpeek/web/Dynamo.java
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public Table table(final String name) {
private static Region live() throws IOException {
final Properties props = Dynamo.pros();
final Region reg;
if (Dynamo.class.getResource("/org/junit/Test.class") == null) {
if (Dynamo.class.getResource("/org/junit/jupiter/api/Test.class") == null) {
reg = new Region.Simple(
new Credentials.Simple(
props.getProperty("org.jpeek.dynamo.key"),
Expand Down

0 comments on commit 84b729c

Please sign in to comment.