Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ramesh-lingappan/f68e19f33bdbb42b719b39a0f97100b5 to your computer and use it in GitHub Desktop.
Save ramesh-lingappan/f68e19f33bdbb42b719b39a0f97100b5 to your computer and use it in GitHub Desktop.
Root build.gradle file configuration
// dependencies version and config definitions
apply from: 'gradle/dependencies.gradle'
// project configurations
allprojects {
group 'com.rameshl.demos'
version '1.0'
}
subprojects {
apply plugin: "java"
apply plugin: 'idea'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
maven {
url 'https://maven-central.storage.googleapis.com'
}
mavenCentral()
mavenLocal()
jcenter()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment