Skip to content

Commit 7305d9f

Browse files
committed
update package name and spin deps
1 parent b2e424d commit 7305d9f

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ 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.3.0')
28-
compileOnly (group: 'com.netflix.spinnaker.kork', name: 'kork-plugins-spring-api', version: '7.3.0')
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')
2929
compileOnly (group: 'org.springframework', name: 'spring-web', version: '5.2.2.RELEASE')
3030
compileOnly (group: 'com.netflix.spinnaker.orca', name: 'orca-core', version: '7.70.0') {
3131
exclude group: "org.slf4j"

src/main/kotlin/com/armory/plugin/example/spring/NewController.kt renamed to src/main/kotlin/io/armory/plugin/example/spring/NewController.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.armory.plugin.example.spring
1+
package io.armory.plugin.example.spring
22

33
import io.pivotal.canal.model.Pipelines
44
import org.springframework.web.bind.annotation.GetMapping

src/main/kotlin/com/armory/plugin/example/spring/NewProperties.kt renamed to src/main/kotlin/io/armory/plugin/example/spring/NewProperties.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.armory.plugin.example.spring
1+
package io.armory.plugin.example.spring
22

33
import org.springframework.boot.context.properties.ConfigurationProperties
44

src/main/kotlin/com/armory/plugin/example/spring/NewService.kt renamed to src/main/kotlin/io/armory/plugin/example/spring/NewService.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.armory.plugin.example.spring
1+
package io.armory.plugin.example.spring
22

33
import com.netflix.spinnaker.orca.capabilities.CapabilitiesService
44

src/main/kotlin/com/armory/plugin/example/spring/OverrideService.kt renamed to src/main/kotlin/io/armory/plugin/example/spring/OverrideService.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.armory.plugin.example.spring
1+
package io.armory.plugin.example.spring
22

33
import com.netflix.spinnaker.kork.expressions.ExpressionFunctionProvider
44
import com.netflix.spinnaker.orca.capabilities.CapabilitiesService

src/main/kotlin/com/armory/plugin/example/spring/SpringExamplePlugin.kt renamed to src/main/kotlin/io/armory/plugin/example/spring/SpringExamplePlugin.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.armory.plugin.example.spring
1+
package io.armory.plugin.example.spring
22

33
import com.netflix.spinnaker.kork.plugins.api.spring.PrivilegedSpringPlugin
44
import org.slf4j.LoggerFactory

0 commit comments

Comments
 (0)