Skip to content

Commit

Permalink
Add fastutil to dependencies.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
tth05 committed Jan 13, 2024
1 parent 86b704b commit fec3bde
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Add your dependencies here

dependencies {
shadowImplementation("it.unimi.dsi:fastutil:8.5.12") // Apache 2.0

testImplementation(platform("org.junit:junit-bom:5.9.2"))
testImplementation("org.junit.jupiter:junit-jupiter")
testRuntimeOnly("org.junit.platform:junit-platform-launcher") {
Expand All @@ -12,7 +14,6 @@ dependencies {
compileOnly('org.jetbrains:annotations:24.0.1')
compileOnly("org.projectlombok:lombok:1.18.22") {transitive = false }
annotationProcessor("org.projectlombok:lombok:1.18.22")

}

test {
Expand Down
4 changes: 3 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ forceEnableMixins = false

# If enabled, you may use 'shadowCompile' for dependencies. They will be integrated in your jar. It is your
# responsibility check the licence and request permission for distribution, if required.
usesShadowedDependencies = false
usesShadowedDependencies = true
relocateShadowedDependencies = false
minimizeShadowedDependencies = false

# Optional parameter to customize the produced artifacts. Use this to preserver artifact naming when migrating older
# projects. New projects should not use this parameter.
Expand Down

0 comments on commit fec3bde

Please sign in to comment.