Skip to content

Commit

Permalink
chore: update project dependencies and test files
Browse files Browse the repository at this point in the history
- Updated A.java and MoneCodeParserTest.java in neo4j test directory
- Updated MoneCodeParser.java in neo4j main directory
- Updated pom.xml in neo4j and jcommon directories
  • Loading branch information
goodjava committed Aug 16, 2024
1 parent 0527f0a commit c25f391
Show file tree
Hide file tree
Showing 5 changed files with 498 additions and 0 deletions.
51 changes: 51 additions & 0 deletions jcommon/ai/neo4j/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>run.mone</groupId>
<artifactId>jcommon</artifactId>
<version>1.6.0-jdk21-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

<artifactId>neo4j</artifactId>

<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>


<dependency>
<groupId>com.github.javaparser</groupId>
<artifactId>javaparser-core</artifactId>
<version>3.26.1</version>
</dependency>

<dependency>
<groupId>org.neo4j.driver</groupId>
<artifactId>neo4j-java-driver</artifactId>
<version>5.23.0</version>
</dependency>

<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>4.9.1</version>
</dependency>

<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.8</version>
</dependency>


</dependencies>

</project>
Loading

0 comments on commit c25f391

Please sign in to comment.