SDN 4 - InProcessServer 在快照构建中损坏
SDN 4 - InProcessServer broken in snapshot build
大约一周前,运行 在 4.0.0.BUILD-SNAPSHOT 上使用 InProcessServer 进行测试结果在以下例外情况中:
Caused by: java.lang.NoClassDefFoundError: org/neo4j/ogm/testutil/TestServer
at org.springframework.data.neo4j.server.InProcessServer.<init>(InProcessServer.java:25) ~[spring-data-neo4j-4.0.0.BUILD-SNAPSHOT-tests.jar:na]
at com.ninjasquare.server.test.integration.IntegrationTestConfig.neo4jServer(IntegrationTestConfig.java:43) ~[test-classes/:na]
将测试依赖项切换回 4.0.0.M1 解决了问题:
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-neo4j</artifactId>
<version>4.0.0.M1</version>
<type>test-jar</type>
</dependency>
我认为这与 SDN4/OGM 上的一些重构工作有关?
谢谢。
是的,在最近的快照中,OGM 已从 SDN 中分离出来。您现在需要包含这两个依赖项才能使用测试实用程序。
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-ogm</artifactId>
<version>1.1.0</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.neo4j.test</groupId>
<artifactId>neo4j-harness</artifactId>
<version>${neo4j.version}</version>
<scope>test</scope>
</dependency>
大约一周前,运行 在 4.0.0.BUILD-SNAPSHOT 上使用 InProcessServer 进行测试结果在以下例外情况中:
Caused by: java.lang.NoClassDefFoundError: org/neo4j/ogm/testutil/TestServer
at org.springframework.data.neo4j.server.InProcessServer.<init>(InProcessServer.java:25) ~[spring-data-neo4j-4.0.0.BUILD-SNAPSHOT-tests.jar:na]
at com.ninjasquare.server.test.integration.IntegrationTestConfig.neo4jServer(IntegrationTestConfig.java:43) ~[test-classes/:na]
将测试依赖项切换回 4.0.0.M1 解决了问题:
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-neo4j</artifactId>
<version>4.0.0.M1</version>
<type>test-jar</type>
</dependency>
我认为这与 SDN4/OGM 上的一些重构工作有关?
谢谢。
是的,在最近的快照中,OGM 已从 SDN 中分离出来。您现在需要包含这两个依赖项才能使用测试实用程序。
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-ogm</artifactId>
<version>1.1.0</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.neo4j.test</groupId>
<artifactId>neo4j-harness</artifactId>
<version>${neo4j.version}</version>
<scope>test</scope>
</dependency>