Skip to content

Upgrade dependencies to fix image pull error #61

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
<name>JanusGraph FoundationDB Storage Adapter</name>

<properties>
<maven.compiler.plugin.version>3.6.2</maven.compiler.plugin.version>
<maven.compiler.plugin.version>3.8.1</maven.compiler.plugin.version>
<jdk.version>1.8</jdk.version>
<janusgraph.version>0.5.2</janusgraph.version>
<foundationdb.version>6.2.22</foundationdb.version>
<dependency.plugin.version>2.10</dependency.plugin.version>
<dependency.plugin.version>3.2.0</dependency.plugin.version>
<test.skip.default>false</test.skip.default>
<test.skip.tp>true</test.skip.tp>
<testcontainers.version>1.14.3</testcontainers.version>
<testcontainers.version>1.15.3</testcontainers.version>
</properties>

<developers>
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/janusgraph/FoundationDBContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class FoundationDBContainer extends FixedHostPortGenericContainer<Foundat

private final Logger log = LoggerFactory.getLogger(FoundationDBContainer.class);

public static final String DEFAULT_IMAGE_AND_TAG = "foundationdb/foundationdb:6.2.20";
public static final String DEFAULT_IMAGE_AND_TAG = "foundationdb/foundationdb:6.2.30";
private static final Integer DEFAULT_PORT = 4500;
private static final String FDB_CLUSTER_FILE_ENV_KEY = "FDB_CLUSTER_FILE";
private static final String FDB_NETWORKING_MODE_ENV_KEY = "FDB_NETWORKING_MODE";
Expand Down