aboutsummaryrefslogtreecommitdiffstats
path: root/maven-plugins
diff options
context:
space:
mode:
authorArne H Juul <arnej@yahoo-inc.com>2017-05-16 15:39:39 +0200
committerArne H Juul <arnej@yahoo-inc.com>2017-05-16 15:44:43 +0200
commitae308093d9fd360c6b3cea46f4a8a4c7141016b8 (patch)
treec4fb2665be3466954166fc3b7a1c9c8831b39090 /maven-plugins
parent940e6f1c75d448ca6de0ae888fe119a16432ea5e (diff)
make separate parent pom for plugins
Diffstat (limited to 'maven-plugins')
-rw-r--r--maven-plugins/pom.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/maven-plugins/pom.xml b/maven-plugins/pom.xml
new file mode 100644
index 00000000000..ab201932882
--- /dev/null
+++ b/maven-plugins/pom.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>parent</artifactId>
+ <version>6-SNAPSHOT</version>
+ </parent>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>bundle-plugins</artifactId>
+ <name>bundle-plugins</name>
+ <packaging>pom</packaging>
+ <version>6-SNAPSHOT</version>
+ <description>Parent artifact for Vespa maven plugins.</description>
+ <url>http://yahoo.github.io/vespa</url>
+
+ <modules>
+ <module>../annotations</module>
+ <module>../scalalib</module>
+ <module>../bundle-plugin</module>
+ <module>../configgen</module>
+ <module>../config-class-plugin</module>
+ </modules>
+</project>