From f8b0f97d94f9b6ec2d5f197376771a4abbcfb5e7 Mon Sep 17 00:00:00 2001 From: Alexander Puck Neuwirth Date: Sat, 30 Jul 2022 13:53:19 +0200 Subject: [PATCH] drop some deps --- build.gradle | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/build.gradle b/build.gradle index 98858fe..2360e31 100644 --- a/build.gradle +++ b/build.gradle @@ -34,30 +34,27 @@ dependencies { annotationProcessor 'org.projectlombok:lombok:1.18.4' // This dependency is exported to consumers, that is to say found on their compile classpath. - implementation 'org.apache.commons:commons-math3:3.6.1' - implementation 'org.json:json:20190722' + //implementation 'org.apache.commons:commons-math3:3.6.1' // This dependency is used internally, and not exposed to consumers on their own compile classpath. - implementation 'com.google.guava:guava:28.0-jre' + //implementation 'com.google.guava:guava:+' // Use JUnit test framework - testImplementation 'junit:junit:4.12' + testImplementation 'junit:junit:4.+' + implementation 'org.json:json:20190722' + implementation group: 'commons-io', name: 'commons-io', version: '2.5' implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.11.0.rc1' - implementation group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.11.0.rc1' - implementation group: 'commons-io', name: 'commons-io', version: '2.5' - - //implementation group: 'org.bitbucket.cowwoc', name: 'diff-match-patch', version: '1.2' + implementation group: 'org.jdom', name: 'jdom2', version: '2.0.6' + implementation group: 'com.esotericsoftware.yamlbeans', name: 'yamlbeans', version: '1.08' + implementation group: 'com.formdev', name: 'flatlaf', version: '0.45' - //implementation group: 'com.fifesoft', name: 'rsyntaxtextarea', version: '3.1.1' implementation group: 'com.github.weisj', name: 'darklaf-core', version: '2.7.2' - //implementation group: 'com.jidesoft', name: 'jide-oss', version: '3.6.18' implementation group: 'com.github.iconloader', name: 'icon-loader', version: '0.0.3' - implementation group: 'org.jdom', name: 'jdom2', version: '2.0.6' - implementation group: 'com.esotericsoftware.yamlbeans', name: 'yamlbeans', version: '1.08' + + implementation 'com.github.APN-Pucky:GitJarUpdate:0.0.+' - implementation 'com.github.APN-Pucky:GitJarUpdate:0.0.8' }