Tag Archives: build management

Gradle

Gradle is an advanced general purpose build management system based on Groovy and Kotlin. Gradle supports the automatic download and configuration of dependencies or other libraries. Some good Gradle resources to start with: https://gradle.org/guides/ http://www.vogella.com/tutorials/Gradle/article.html https://spring.io/guides/gs/gradle/ Sample gradle.build file from gradle.org documentation: apply plugin: ‘java’ apply plugin: ‘eclipse’ sourceCompatibility = 1.7 version = ‘1.0’ jar […]

Read more