Created
August 21, 2017 08:45
-
-
Save ramesh-lingappan/f68e19f33bdbb42b719b39a0f97100b5 to your computer and use it in GitHub Desktop.
Root build.gradle file configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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