Skip to content

Commit

Permalink
fix(build): Add spinnaker.project so we can publish to bintray like S…
Browse files Browse the repository at this point in the history
…pinnaker services. (#238)
  • Loading branch information
Matt Duftler committed Feb 21, 2018
1 parent d555d37 commit 9841fef
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,26 +19,23 @@ buildscript {
repositories {
jcenter()
maven { url "http://spinnaker.bintray.com/gradle" }
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'com.netflix.spinnaker.gradle:spinnaker-gradle-project:3.17.0'
classpath "com.netflix.spinnaker.gradle:spinnaker-gradle-project:3.17.0"
classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion"
classpath "com.netflix.nebula:nebula-kotlin-plugin:$kotlinVersion"
}
}

plugins {
id 'nebula.netflixoss' version '3.6.4'
}

allprojects {
group = "com.netflix.kayenta"
apply plugin: 'groovy'
apply plugin: 'nebula.netflixoss'
apply plugin: "groovy"
apply plugin: "spinnaker.project"

test {
testLogging {
exceptionFormat = 'full'
exceptionFormat = "full"
}
minHeapSize = "512m"
maxHeapSize = "512m"
Expand Down Expand Up @@ -67,4 +64,4 @@ subprojects { project ->
}
}

defaultTasks ':kayenta-web:bootRun'
defaultTasks ":kayenta-web:bootRun"

0 comments on commit 9841fef

Please sign in to comment.