You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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: '+'
}
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: