Skip to content

Commit

Permalink
Fix class not found
Browse files Browse the repository at this point in the history
  • Loading branch information
vihangpatil committed Nov 20, 2019
1 parent 054e91b commit f85ec1e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 2 additions & 0 deletions kts-engine/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ dependencies {
implementation(project(":prime-modules"))
implementation("com.fasterxml.jackson.core:jackson-databind:${Version.jacksonDatabind}")

implementation("net.java.dev.jna:jna:5.5.0")

testImplementation(kotlin("test"))
testImplementation(kotlin("test-junit"))

Expand Down
2 changes: 0 additions & 2 deletions neo4j-store/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ dependencies {
implementation("org.neo4j.driver:neo4j-java-driver:${Version.neo4jDriver}")
implementation("org.neo4j:neo4j-slf4j:${Version.neo4j}")

implementation("com.sun.jna:jna:3.0.9")

testImplementation("com.palantir.docker.compose:docker-compose-rule-junit4:${Version.dockerComposeJunitRule}")

testImplementation(kotlin("test"))
Expand Down
2 changes: 1 addition & 1 deletion prime/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
}

// Update version in [script/start.sh] too.
version = "1.73.1"
version = "1.73.2"

dependencies {
// interface module between prime and prime-modules
Expand Down
2 changes: 1 addition & 1 deletion prime/script/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ exec java \
-Dfile.encoding=UTF-8 \
--add-opens java.base/java.lang=ALL-UNNAMED \
--add-opens java.base/java.io=ALL-UNNAMED \
-agentpath:/opt/cprof/profiler_java_agent.so=-cprof_service=prime,-cprof_service_version=1.73.1,-logtostderr,-minloglevel=2,-cprof_enable_heap_sampling \
-agentpath:/opt/cprof/profiler_java_agent.so=-cprof_service=prime,-cprof_service_version=1.73.2,-logtostderr,-minloglevel=2,-cprof_enable_heap_sampling \
-jar /prime.jar server /config/config.yaml

0 comments on commit f85ec1e

Please sign in to comment.