-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from spinnaker/master
Fetch updates to 1.13.x
- Loading branch information
Showing
737 changed files
with
18,607 additions
and
37,137 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
ajordens | ||
asher | ||
cfieber | ||
robzienert |
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
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
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
7 changes: 7 additions & 0 deletions
7
...-core/src/main/java/com/netflix/spinnaker/cats/cache/UnsupportedCacheMethodException.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package com.netflix.spinnaker.cats.cache; | ||
|
||
public class UnsupportedCacheMethodException extends RuntimeException { | ||
public UnsupportedCacheMethodException(String message) { | ||
super(message); | ||
} | ||
} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* Copyright 2018 Netflix, Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License") | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
apply from: "$rootDir/gradle/kotlin.gradle" | ||
apply plugin: "groovy" | ||
|
||
|
||
tasks.compileGroovy.enabled = false | ||
|
||
dependencies { | ||
spinnaker.group("spockBase") | ||
testCompile spinnaker.dependency("groovy") | ||
|
||
compile project(':cats:cats-core') | ||
compile project(':cats:cats-redis') | ||
compile project(":clouddriver-sql") | ||
compile project(":clouddriver-core") | ||
compile("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.1.1") | ||
compile("org.jetbrains.kotlinx:kotlinx-coroutines-core-common:1.1.1") | ||
compile("org.jetbrains.kotlinx:kotlinx-coroutines-slf4j:1.1.1") | ||
|
||
testCompile "com.h2database:h2:1.4.197" | ||
|
||
testCompile "io.strikt:strikt-core:0.11.5" | ||
testCompile "org.assertj:assertj-core:3.9.0" | ||
testCompile "org.junit.jupiter:junit-jupiter-api:${spinnaker.version("jupiter")}" | ||
testCompile "com.nhaarman:mockito-kotlin:1.5.0" | ||
|
||
testCompile project(':cats:cats-test') | ||
testCompile(spinnaker.dependency("korkSqlTest")) | ||
testRuntime "org.junit.jupiter:junit-jupiter-engine:${spinnaker.version("jupiter")}" | ||
testRuntime "org.junit.platform:junit-platform-launcher:${spinnaker.version("junit5")}" | ||
testRuntime "org.junit.vintage:junit-vintage-engine:${spinnaker.version("junitVintage")}" | ||
} |
Oops, something went wrong.