From 99aa559cbcf7d57b1bfda03d8582314549bd0280 Mon Sep 17 00:00:00 2001 From: Kevin Harrington Date: Wed, 10 Jan 2024 13:55:17 -0500 Subject: [PATCH] moving from internal jars to maven --- build.gradle | 38 +++++++++++++------------------------- 1 file changed, 13 insertions(+), 25 deletions(-) diff --git a/build.gradle b/build.gradle index 0c5f9715..b69273d5 100644 --- a/build.gradle +++ b/build.gradle @@ -58,35 +58,23 @@ artifacts { } dependencies { - compile group: 'junit', name: 'junit', version: '4.0' - compile 'commons-io:commons-io:2.6' - compile group:'com.googlecode.json-simple', name:'json-simple', version:'1.1' - - compile 'com.google.code.gson:gson:2.5' - //compile group: 'eu.mihosoft.ext.org.fxyz', name: 'extfxyz', version: '0.4' - //compile group: 'eu.mihosoft.ext.org.fxyz', name: 'extfxyz', version: '0.4', classifier: 'sources' - compile group: 'eu.mihosoft.vvecmath', name: 'vvecmath', version: '0.3.2' - compile group: 'javax.vecmath', name: 'vecmath', version: '1.5.2' - - compile 'org.slf4j:slf4j-simple:1.6.1' - // https://mvnrepository.com/artifact/com.badlogicgames.gdx/gdx-tools - //compile group: 'com.badlogicgames.gdx', name: 'gdx-tools', version: '0.9.9' - - // https://mvnrepository.com/artifact/org.apache.xmlgraphics/batik-svggen - compile group: 'org.apache.xmlgraphics', name: 'batik-svggen', version: '1.7' - - compile fileTree (dir: 'libs', includes: ['*.jar']) + testImplementation group: 'junit', name: 'junit', version: '4.0' + implementation 'commons-io:commons-io:2.7' + implementation group:'com.googlecode.json-simple', name:'json-simple', version:'1.1' + + implementation 'com.google.code.gson:gson:2.8.9' + implementation group: 'eu.mihosoft.vvecmath', name: 'vvecmath', version: '0.4.0' + implementation group: 'javax.vecmath', name: 'vecmath', version: '1.5.2' + + implementation 'org.slf4j:slf4j-simple:1.6.1' + + implementation group: 'org.apache.xmlgraphics', name: 'batik-all', version: '1.17' + + implementation fileTree (dir: 'libs', includes: ['kabeja*.jar']) - // https://mvnrepository.com/artifact/org.locationtech.jts/jts // triangulation algorithm - implementation group: 'org.locationtech.jts', name: 'jts', version: '1.19.0', ext: 'pom' - // https://mvnrepository.com/artifact/org.locationtech.jts/jts-core implementation group: 'org.locationtech.jts', name: 'jts-core', version: '1.19.0' - //compile group: 'java3d', name: 'vecmath', version: '1.3.1' , classifier: "javadoc" - //compile fileTree (dir: 'libs/jsdai', includes: ['*.jar']) - //compile fileTree (dir: 'libs/jsdai', includes: ['*.zip']) - }