Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unused dependencies #3

Merged
merged 2 commits into from
Jun 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
noExceptionsVersion=1.7.1
slf4jVersion=1.7.30
gsonVersion=2.8.5
apacheMavenVersion=3.8.1
guavaVersion=31.0.1-jre

junitVersion=5.8.2
junitVersion=5.8.2
Empty file modified gradlew
100644 → 100755
Empty file.
5 changes: 1 addition & 4 deletions metadata/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,8 @@ plugins {
dependencies {
api group: 'org.apache.maven', name: 'maven-artifact', version: "${apacheMavenVersion}"
api group: 'com.google.code.gson', name: 'gson', version: "${gsonVersion}"
api group: 'com.google.guava', name: 'guava', version:"${guavaVersion}"

api group: 'com.machinezoo.noexception', name:'noexception', version:"${noExceptionsVersion}"
api group: 'org.slf4j', name:'slf4j-api', version:"${slf4jVersion}"

testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: "${junitVersion}"
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: "${junitVersion}"
}
}
5 changes: 1 addition & 4 deletions selector/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,9 @@ dependencies {
api project(':JarJarMetadata')

api group: 'org.apache.maven', name: 'maven-artifact', version: "${apacheMavenVersion}"
api group: 'com.google.code.gson', name: 'gson', version: "${gsonVersion}"
api group: 'com.google.guava', name: 'guava', version:"${guavaVersion}"

api group: 'com.machinezoo.noexception', name:'noexception', version:"${noExceptionsVersion}"
api group: 'org.slf4j', name:'slf4j-api', version:"${slf4jVersion}"

testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: "${junitVersion}"
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: "${junitVersion}"
}
}
Loading