Skip to content

Commit

Permalink
Merge pull request #774 from bigmontz/4.2-testkit-refactor
Browse files Browse the repository at this point in the history
Refactor Testkit-backend to use jackson for databinding
  • Loading branch information
bigmontz authored Nov 4, 2020
2 parents e993059 + 4dabf24 commit 1494935
Show file tree
Hide file tree
Showing 43 changed files with 2,315 additions and 500 deletions.
20 changes: 19 additions & 1 deletion testkit-backend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,24 @@
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.12</version>
<scope>provided</scope>
</dependency>

<!-- Test Dependencies -->
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand All @@ -49,7 +67,7 @@
<configuration>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>Runner</mainClass>
<mainClass>neo4j.org.testkit.backend.Runner</mainClass>
</transformer>
</transformers>
<finalName>testkit-backend</finalName>
Expand Down
347 changes: 0 additions & 347 deletions testkit-backend/src/main/java/CommandProcessor.java

This file was deleted.

Loading

0 comments on commit 1494935

Please sign in to comment.