Skip to content

Commit

Permalink
moving from internal jars to maven
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Harrington committed Jan 10, 2024
1 parent 816f6b7 commit 99aa559
Showing 1 changed file with 13 additions and 25 deletions.
38 changes: 13 additions & 25 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'])


}

Expand Down

0 comments on commit 99aa559

Please sign in to comment.