Skip to content

Commit

Permalink
Bump up OrientDB version to 3.2.27
Browse files Browse the repository at this point in the history
  • Loading branch information
PhantomYdn committed Feb 6, 2024
1 parent f92943f commit ff33bde
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>30.1.1-jre</version>
<version>33.0.0-jre</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand All @@ -82,7 +82,7 @@
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.12.8</version>
<version>1.14.11</version>
</dependency>
<dependency>
<groupId>org.objenesis</groupId>
Expand Down
2 changes: 1 addition & 1 deletion transponder-orientdb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<dependency>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-core</artifactId>
<version>3.1.10</version>
<version>3.2.27</version>
<scope>provided</scope>
<type>bundle</type>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,13 @@
import org.orienteer.transponder.CommonUtils;
import org.orienteer.transponder.Transponder;

import com.orientechnologies.orient.core.config.OGlobalConfiguration;
import com.orientechnologies.orient.core.db.ODatabaseRecordThreadLocal;
import com.orientechnologies.orient.core.db.ODatabaseSession;
import com.orientechnologies.orient.core.db.ODatabaseType;
import com.orientechnologies.orient.core.db.OrientDB;
import com.orientechnologies.orient.core.db.OrientDBConfig;
import com.orientechnologies.orient.core.db.OrientDBConfigBuilder;
import com.orientechnologies.orient.core.metadata.schema.OClass;
import com.orientechnologies.orient.core.metadata.schema.OProperty;
import com.orientechnologies.orient.core.metadata.schema.OSchema;
Expand All @@ -45,7 +47,9 @@ public class DAOTest {
static final String DB_NAME = "TestDB";
static final String TEST_CLASS = "DAOTestClass";

private static OrientDB orientDB = new OrientDB("embedded:target/",OrientDBConfig.defaultConfig());
private static OrientDB orientDB = new OrientDB("embedded:target/",OrientDBConfig.builder()
.addConfig(OGlobalConfiguration.CREATE_DEFAULT_USERS, true)
.build());
private static ODatabaseSession db;

private static Transponder transponder;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import org.junit.BeforeClass;
import org.orienteer.transponder.AbstractUniversalTest;

import com.orientechnologies.orient.core.config.OGlobalConfiguration;
import com.orientechnologies.orient.core.db.ODatabaseSession;
import com.orientechnologies.orient.core.db.ODatabaseType;
import com.orientechnologies.orient.core.db.OrientDB;
Expand All @@ -13,7 +14,9 @@
public class OrientDBUniversalTest extends AbstractUniversalTest {

private static final String DB_NAME = "UniversalTestDB";
private static OrientDB orientDB = new OrientDB("embedded:target/",OrientDBConfig.defaultConfig());
private static OrientDB orientDB = new OrientDB("embedded:target/",OrientDBConfig.builder()
.addConfig(OGlobalConfiguration.CREATE_DEFAULT_USERS, true)
.build());
private static ODatabaseSession db;

@BeforeClass
Expand Down

0 comments on commit ff33bde

Please sign in to comment.