Skip to content

Commit

Permalink
feat(plugins): plugin support for kayenta (#714)
Browse files Browse the repository at this point in the history
* feat(plugins): plugin support for kayenta

* refactor(plugins): put plugins in web module
  • Loading branch information
link108 committed Apr 29, 2020
1 parent 18681f5 commit b42df55
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions kayenta-web/kayenta-web.gradle
Expand Up @@ -39,6 +39,7 @@ dependencies {

api "org.springframework.boot:spring-boot-starter-actuator"
api "com.netflix.spinnaker.kork:kork-web"
implementation "com.netflix.spinnaker.kork:kork-plugins"
runtimeOnly "com.netflix.spinnaker.kork:kork-secrets-aws"
runtimeOnly "com.netflix.spinnaker.kork:kork-secrets-gcp"
}
@@ -1,5 +1,6 @@
package com.netflix.kayenta.config;

import com.netflix.spinnaker.config.PluginsAutoConfiguration;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
Expand All @@ -11,6 +12,7 @@
@Import({
KayentaConfiguration.class,
WebConfiguration.class,
PluginsAutoConfiguration.class,
})
@ComponentScan({
"com.netflix.spinnaker.config",
Expand Down

0 comments on commit b42df55

Please sign in to comment.