Skip to content

Commit

Permalink
Improved documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ashewring committed Jun 11, 2016
1 parent 864a8ff commit 9517658
Showing 1 changed file with 19 additions and 8 deletions.
27 changes: 19 additions & 8 deletions build.gradle
@@ -1,3 +1,8 @@
/*
* External dependencies for the build script:
* https://docs.gradle.org/current/userguide/organizing_build_logic.html#sec:external_dependencies
*/

buildscript {
repositories {
jcenter()
Expand All @@ -7,6 +12,8 @@ buildscript {
}
}

/* Artifactory plugin and settings */

allprojects {
apply plugin: 'com.jfrog.artifactory'
group = 'org.s23m.cell'
Expand Down Expand Up @@ -45,6 +52,8 @@ artifactory {
}
}

/* Shared settings for all subprojects */

subprojects {
apply plugin: 'java'
apply plugin: 'jacoco'
Expand All @@ -56,7 +65,7 @@ subprojects {
targetCompatibility = 1.8

repositories {
mavenCentral()
//mavenCentral()
}

dependencies {
Expand Down Expand Up @@ -146,6 +155,14 @@ subprojects {
}
}

/* Declaration of inter-project dependencies */

project(':kernel-instantiation') {
dependencies {
compile project(':kernel')
}
}

project(':platform') {
dependencies {
compile project(':kernel')
Expand Down Expand Up @@ -173,10 +190,4 @@ project(':communication') {
// tests depend on the other project's main and test code
testCompile project (path: ':platform-instantiation', configuration: 'testArtifacts')
}
}

project(':kernel-instantiation') {
dependencies {
compile project(':kernel')
}
}
}

0 comments on commit 9517658

Please sign in to comment.