Use gradle as the build tool for this project. Compared to maven, it allows a way more pleasing groovy build file and easier to mange dependencies as well as custom tasks. A build file would look something like this
plugins {
id 'java'
}
group 'io.purecore'
//TODO: version '0.0.1'
repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/org.json/json
compile group: 'org.json', name: 'json', version: '+'
}
Use gradle as the build tool for this project. Compared to maven, it allows a way more pleasing groovy build file and easier to mange dependencies as well as custom tasks. A build file would look something like this
plugins { id 'java' } group 'io.purecore' //TODO: version '0.0.1' repositories { mavenCentral() } dependencies { // https://mvnrepository.com/artifact/org.json/json compile group: 'org.json', name: 'json', version: '+' }