Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build tool #1

Open
networkException opened this issue Jun 30, 2020 · 0 comments
Open

Build tool #1

networkException opened this issue Jun 30, 2020 · 0 comments

Comments

@networkException
Copy link
Contributor

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: '+'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant