Skip to content

Commit

Permalink
Fix compile
Browse files Browse the repository at this point in the history
  • Loading branch information
dima-dencep committed Dec 8, 2023
1 parent a61f2a8 commit 566abc0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,22 +33,22 @@ group = project.maven_group

sourceSets {
vendored {
java {}
java {
compileClasspath += main.compileClasspath
}
}

sodiumCompatibility {
java {
compileClasspath += main.compileClasspath
compileClasspath += main.output
}
}

main {
java {
compileClasspath += vendored.output
runtimeClasspath += vendored.output

compileClasspath += sodiumCompatibility.output
runtimeClasspath += sodiumCompatibility.output
}
}
}
Expand Down

0 comments on commit 566abc0

Please sign in to comment.