neo4j/fix-cypher-shell-pom.patch
wk333 39da125a71 fix cypher-shell pom
(cherry picked from commit ed7c37d8c2651c8f55182c514b77ff5df0ae32da)
(cherry picked from commit c26cec0e510801fac79a0947c16d1aec6b783e2c)
2022-09-07 18:28:14 +08:00

35 lines
1.1 KiB
Diff

diff -Nur neo4j-4.3.0/community/cypher-shell/cypher-shell/pom.xml neo4j-4.3.0_bak/community/cypher-shell/cypher-shell/pom.xml
--- neo4j-4.3.0/community/cypher-shell/cypher-shell/pom.xml 2021-06-07 19:15:33.000000000 +0800
+++ neo4j-4.3.0_bak/community/cypher-shell/cypher-shell/pom.xml 2021-12-10 11:15:38.555197124 +0800
@@ -200,12 +200,6 @@
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
- <dependency>
- <groupId>com.github.stefanbirkner</groupId>
- <artifactId>system-rules</artifactId>
- <version>1.19.0</version>
- <scope>test</scope>
- </dependency>
</dependencies>
@@ -282,8 +276,15 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
</plugins>
</build>
-</project>
\ No newline at end of file
+</project>