summaryrefslogtreecommitdiffstats
path: root/bundle-plugin
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@yahoo-inc.com>2016-10-25 10:06:20 +0200
committerJon Bratseth <bratseth@yahoo-inc.com>2016-10-25 10:06:20 +0200
commit2ee87c18e47fd10392440f64aec12a00f52b8376 (patch)
treed2cf98f36f2a583f75b6641bceb41d9e7065c604 /bundle-plugin
parentd0793fd0709c6e4a726ca9c94f5048537c1847e3 (diff)
Use a dedicated thread for VIP status
Also, various nonfunctiuonal changes.
Diffstat (limited to 'bundle-plugin')
-rw-r--r--bundle-plugin/src/main/java/com/yahoo/container/plugin/mojo/GenerateSourcesMojo.java7
1 files changed, 2 insertions, 5 deletions
diff --git a/bundle-plugin/src/main/java/com/yahoo/container/plugin/mojo/GenerateSourcesMojo.java b/bundle-plugin/src/main/java/com/yahoo/container/plugin/mojo/GenerateSourcesMojo.java
index cb2e54024b4..e09748615a8 100644
--- a/bundle-plugin/src/main/java/com/yahoo/container/plugin/mojo/GenerateSourcesMojo.java
+++ b/bundle-plugin/src/main/java/com/yahoo/container/plugin/mojo/GenerateSourcesMojo.java
@@ -75,14 +75,11 @@ public class GenerateSourcesMojo extends AbstractMojo {
if (configGenVersion != null && !configGenVersion.isEmpty()) {
return configGenVersion;
}
- Dependency containerDev = getVespaDependency("container-dev");
+
+ Dependency containerDev = getVespaDependency("container-dev"); // TODO: change to "container"
if (containerDev != null)
return containerDev.getVersion();
- Dependency prelude = getVespaDependency("prelude");
- if (prelude != null)
- return prelude.getVersion();
-
Dependency docproc = getVespaDependency("docproc");
if (docproc != null)
return docproc.getVersion();