Skip to content
This repository has been archived by the owner on Oct 8, 2020. It is now read-only.

Commit

Permalink
use spinnaker gradle plugin to manage releasing #2
Browse files Browse the repository at this point in the history
  • Loading branch information
robfletcher committed Sep 13, 2017
1 parent 6e314ab commit 61c7ebd
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
15 changes: 15 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,18 @@ buildscript {
dependencies {
classpath "org.junit.platform:junit-platform-gradle-plugin:$junitVersion"
classpath "com.netflix.nebula:nebula-kotlin-plugin:$kotlinVersion"
classpath "com.netflix.spinnaker.gradle:spinnaker-gradle-project:3.16.0"
}
}

allprojects {
apply plugin: "spinnaker.project"

group = "com.netflix.spinnaker"
}

subprojects {
apply plugin: "nebula.netflixoss"
apply from: "$rootDir/gradle/kotlin.gradle"

repositories {
Expand All @@ -21,6 +29,13 @@ subprojects {
compile "org.slf4j:slf4j-api:1.7.25"
testRuntime "org.slf4j:slf4j-nop:1.7.25"
}

spinnaker {
dependenciesVersion = "0.109.2"
}

sourceCompatibility = 1.8
targetCompatibility = 1.8
}

defaultTasks "build"
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
5 changes: 5 additions & 0 deletions keiko-spring/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
apply from: "$rootDir/gradle/spek.gradle"

dependencies {
compile "org.springframework:spring-context:$springVersion"
}

0 comments on commit 61c7ebd

Please sign in to comment.