Skip to content

Instantly share code, notes, and snippets.

@marchermans
Created January 20, 2019 08:59
Show Gist options
  • Save marchermans/030321d404fdafaf7cda5fa187f8d867 to your computer and use it in GitHub Desktop.
Save marchermans/030321d404fdafaf7cda5fa187f8d867 to your computer and use it in GitHub Desktop.
buildscript {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
subprojects {
apply plugin: 'java'
group = 'org.gradle.sample'
version = '1.0'
}
project(':SecondProject') {
dependencies {
implementation project(':FirstProject')
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment