Skip to content

Commit b812241

Browse files
committed
update spin deps, kotlin version and minor update to readme
1 parent 7305d9f commit b812241

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ Your plugin needs to extend PrivilegedSpringPlugin and implement registerBeanDef
1818

1919
We will probably need was way for registerBeanDefinitions(BeanDefinitionRegistry) to conditionally load beans based on the service that it is used in. I didn't see a good way to do that. It would be possible to cast BeanDefinitionRegistry to DefaultListableBeanFactory and look at the serializationId, but that relies on some implementation details.
2020

21-
A new release for Kork and updating that dependency is required. This had been tested against a branch of Kork locally withg the required changes.
22-
2321
Build with `./gradlew build` and copy that zip under `/build` into the plugins location of your service (by default the `/plugins` directory under your service root.
2422

2523
The following should be added to your service yml config.

build.gradle

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
buildscript {
2-
ext.kotlin_version = '1.3.50'
2+
ext.kotlin_version = '1.3.61'
33

44
repositories {
55
mavenCentral()
@@ -24,10 +24,9 @@ repositories {
2424
dependencies {
2525
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
2626
compileOnly (group: 'org.springframework', name: 'spring-context', version: '5.2.1.RELEASE')
27-
compileOnly (group: 'com.netflix.spinnaker.kork', name: 'kork-plugins-api', version: '7.5.1')
28-
compileOnly (group: 'com.netflix.spinnaker.kork', name: 'kork-plugins-spring-api', version: '7.5.1')
27+
compileOnly (group: 'com.netflix.spinnaker.kork', name: 'kork-plugins-spring-api', version: '7.13.0')
2928
compileOnly (group: 'org.springframework', name: 'spring-web', version: '5.2.2.RELEASE')
30-
compileOnly (group: 'com.netflix.spinnaker.orca', name: 'orca-core', version: '7.70.0') {
29+
compileOnly (group: 'com.netflix.spinnaker.orca', name: 'orca-core', version: '7.78.0') {
3130
exclude group: "org.slf4j"
3231
}
3332
compile("com.github.canal-pipelines:canal:v0.1.1") {

0 commit comments

Comments
 (0)