summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarek Gradzki <mgradzki@cisco.com>2018-04-27 21:26:37 +0200
committerMarek Gradzki <mgradzki@cisco.com>2018-04-27 21:26:40 +0200
commit4c6c6b426f3c5aac1bef98247855478da6987750 (patch)
tree45e080686625c9767a2c56457c2a420b51bb15ca
parent4bba613683dad79dc2bea558b971eca50b354af3 (diff)
javadoc: add missing <name> in pom files
Change-Id: I3d65b568c3651e4b2474c25bdf80cf3fff416360 Signed-off-by: Marek Gradzki <mgradzki@cisco.com>
-rw-r--r--common/yang-whitelist/pom.xml1
-rw-r--r--infra/bgp-distribution-test/pom.xml1
-rw-r--r--infra/binding-init/pom.xml1
-rw-r--r--infra/footprint/pom.xml1
-rw-r--r--infra/it/benchmark/pom.xml1
-rw-r--r--infra/it/management/pom.xml1
-rw-r--r--infra/it/memory-benchmark-api/pom.xml1
-rw-r--r--infra/it/memory-benchmark-scripts/pom.xml1
-rw-r--r--infra/it/memory-benchmark/pom.xml1
-rw-r--r--infra/minimal-distribution-test/pom.xml1
-rw-r--r--infra/northbound/bgp-extensions/evpn/pom.xml1
-rw-r--r--infra/northbound/bgp-extensions/extension-common/pom.xml1
-rw-r--r--infra/northbound/bgp-extensions/inet/pom.xml1
-rw-r--r--infra/northbound/bgp-extensions/l3-vpn-v4/pom.xml1
-rw-r--r--infra/northbound/bgp-extensions/l3-vpn-v6/pom.xml1
-rw-r--r--infra/northbound/bgp-extensions/labeled-unicast/pom.xml1
-rw-r--r--infra/northbound/bgp-extensions/linkstate/pom.xml1
-rw-r--r--infra/northbound/bgp-extensions/pom.xml1
-rw-r--r--infra/northbound/bgp/pom.xml1
-rw-r--r--infra/northbound/common/pom.xml1
-rw-r--r--infra/northbound/pom.xml1
-rw-r--r--infra/test-utils/pom.xml1
-rw-r--r--infra/test-utils/test-api/pom.xml1
-rw-r--r--infra/test-utils/test-tools/pom.xml1
24 files changed, 24 insertions, 0 deletions
diff --git a/common/yang-whitelist/pom.xml b/common/yang-whitelist/pom.xml
index a390e46d8..e03dee985 100644
--- a/common/yang-whitelist/pom.xml
+++ b/common/yang-whitelist/pom.xml
@@ -29,6 +29,7 @@
<groupId>io.fd.honeycomb.yang</groupId>
<artifactId>yang-whitelist-aggregator</artifactId>
+ <name>${project.artifactId}</name>
<packaging>pom</packaging>
<modules>
<module>yang-whitelist-api</module>
diff --git a/infra/bgp-distribution-test/pom.xml b/infra/bgp-distribution-test/pom.xml
index ca7d261c4..356b02cb2 100644
--- a/infra/bgp-distribution-test/pom.xml
+++ b/infra/bgp-distribution-test/pom.xml
@@ -28,6 +28,7 @@
<groupId>io.fd.honeycomb</groupId>
<artifactId>bgp-distribution-test</artifactId>
+ <name>${project.artifactId}</name>
<version>1.18.04-SNAPSHOT</version>
<dependencies>
diff --git a/infra/binding-init/pom.xml b/infra/binding-init/pom.xml
index 00d468664..0557f4cd3 100644
--- a/infra/binding-init/pom.xml
+++ b/infra/binding-init/pom.xml
@@ -28,6 +28,7 @@
<groupId>io.fd.honeycomb</groupId>
<artifactId>binding-init</artifactId>
+ <name>${project.artifactId}</name>
<version>1.18.04-SNAPSHOT</version>
<properties>
diff --git a/infra/footprint/pom.xml b/infra/footprint/pom.xml
index d5cba325e..0453c624a 100644
--- a/infra/footprint/pom.xml
+++ b/infra/footprint/pom.xml
@@ -27,6 +27,7 @@
<groupId>io.fd.honeycomb.footprint</groupId>
<artifactId>footprint-aggregator</artifactId>
+ <name>${project.artifactId}</name>
<packaging>pom</packaging>
<modules>
<module>footprint-api</module>
diff --git a/infra/it/benchmark/pom.xml b/infra/it/benchmark/pom.xml
index b5529ba2d..96baaeb5f 100644
--- a/infra/it/benchmark/pom.xml
+++ b/infra/it/benchmark/pom.xml
@@ -29,6 +29,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.fd.honeycomb</groupId>
<artifactId>benchmark</artifactId>
+ <name>${project.artifactId}</name>
<version>1.18.04-SNAPSHOT</version>
<packaging>jar</packaging>
diff --git a/infra/it/management/pom.xml b/infra/it/management/pom.xml
index 73a191f61..233450c30 100644
--- a/infra/it/management/pom.xml
+++ b/infra/it/management/pom.xml
@@ -32,6 +32,7 @@
<groupId>io.fd.honeycomb.it</groupId>
<artifactId>management</artifactId>
+ <name>${project.artifactId}</name>
<version>1.18.04-SNAPSHOT</version>
<dependencies>
diff --git a/infra/it/memory-benchmark-api/pom.xml b/infra/it/memory-benchmark-api/pom.xml
index 5728f8cb0..cdec45a6e 100644
--- a/infra/it/memory-benchmark-api/pom.xml
+++ b/infra/it/memory-benchmark-api/pom.xml
@@ -12,5 +12,6 @@
<groupId>io.fd.honeycomb.it</groupId>
<artifactId>memory-benchmark-api</artifactId>
+ <name>${project.artifactId}</name>
<version>1.18.04-SNAPSHOT</version>
</project> \ No newline at end of file
diff --git a/infra/it/memory-benchmark-scripts/pom.xml b/infra/it/memory-benchmark-scripts/pom.xml
index 08992fe56..41e3e55e0 100644
--- a/infra/it/memory-benchmark-scripts/pom.xml
+++ b/infra/it/memory-benchmark-scripts/pom.xml
@@ -16,6 +16,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.fd.honeycomb.it</groupId>
<artifactId>benchmark-scripts</artifactId>
+ <name>${project.artifactId}</name>
<version>1.18.04-SNAPSHOT</version>
<packaging>jar</packaging>
diff --git a/infra/it/memory-benchmark/pom.xml b/infra/it/memory-benchmark/pom.xml
index df1e15784..498e8d345 100644
--- a/infra/it/memory-benchmark/pom.xml
+++ b/infra/it/memory-benchmark/pom.xml
@@ -29,6 +29,7 @@
<groupId>io.fd.honeycomb.it</groupId>
<artifactId>memory-benchmark</artifactId>
+ <name>${project.artifactId}</name>
<!-- Static version, we don't want it to be deployed anyway-->
<version>1.0.0</version>
<properties>
diff --git a/infra/minimal-distribution-test/pom.xml b/infra/minimal-distribution-test/pom.xml
index 6a3ce602e..5acd96ce6 100644
--- a/infra/minimal-distribution-test/pom.xml
+++ b/infra/minimal-distribution-test/pom.xml
@@ -28,6 +28,7 @@
<groupId>io.fd.honeycomb</groupId>
<artifactId>minimal-distribution-test</artifactId>
+ <name>${project.artifactId}</name>
<version>1.18.04-SNAPSHOT</version>
<dependencies>
diff --git a/infra/northbound/bgp-extensions/evpn/pom.xml b/infra/northbound/bgp-extensions/evpn/pom.xml
index e85c00c20..190287690 100644
--- a/infra/northbound/bgp-extensions/evpn/pom.xml
+++ b/infra/northbound/bgp-extensions/evpn/pom.xml
@@ -28,6 +28,7 @@
<groupId>io.fd.honeycomb.northbound.bgp</groupId>
<artifactId>evpn</artifactId>
+ <name>${project.artifactId}</name>
<version>1.18.04-SNAPSHOT</version>
<dependencies>
diff --git a/infra/northbound/bgp-extensions/extension-common/pom.xml b/infra/northbound/bgp-extensions/extension-common/pom.xml
index fc7652816..e70cca80a 100644
--- a/infra/northbound/bgp-extensions/extension-common/pom.xml
+++ b/infra/northbound/bgp-extensions/extension-common/pom.xml
@@ -28,6 +28,7 @@
<groupId>io.fd.honeycomb.northbound.bgp</groupId>
<artifactId>extension-common</artifactId>
+ <name>${project.artifactId}</name>
<version>1.18.04-SNAPSHOT</version>
<dependencies>
diff --git a/infra/northbound/bgp-extensions/inet/pom.xml b/infra/northbound/bgp-extensions/inet/pom.xml
index 1e657e068..a2b60057e 100644
--- a/infra/northbound/bgp-extensions/inet/pom.xml
+++ b/infra/northbound/bgp-extensions/inet/pom.xml
@@ -28,6 +28,7 @@
<groupId>io.fd.honeycomb.northbound.bgp</groupId>
<artifactId>inet</artifactId>
+ <name>${project.artifactId}</name>
<version>1.18.04-SNAPSHOT</version>
<dependencies>
diff --git a/infra/northbound/bgp-extensions/l3-vpn-v4/pom.xml b/infra/northbound/bgp-extensions/l3-vpn-v4/pom.xml
index de5665de9..879174b00 100644
--- a/infra/northbound/bgp-extensions/l3-vpn-v4/pom.xml
+++ b/infra/northbound/bgp-extensions/l3-vpn-v4/pom.xml
@@ -28,6 +28,7 @@
<groupId>io.fd.honeycomb.northbound.bgp</groupId>
<artifactId>l3-vpn-v4</artifactId>
+ <name>${project.artifactId}</name>
<version>1.18.04-SNAPSHOT</version>
<dependencies>
diff --git a/infra/northbound/bgp-extensions/l3-vpn-v6/pom.xml b/infra/northbound/bgp-extensions/l3-vpn-v6/pom.xml
index afcbc743d..2321cb24c 100644
--- a/infra/northbound/bgp-extensions/l3-vpn-v6/pom.xml
+++ b/infra/northbound/bgp-extensions/l3-vpn-v6/pom.xml
@@ -28,6 +28,7 @@
<groupId>io.fd.honeycomb.northbound.bgp</groupId>
<artifactId>l3-vpn-v6</artifactId>
+ <name>${project.artifactId}</name>
<version>1.18.04-SNAPSHOT</version>
<dependencies>
diff --git a/infra/northbound/bgp-extensions/labeled-unicast/pom.xml b/infra/northbound/bgp-extensions/labeled-unicast/pom.xml
index 28d8173c6..2f1c3108c 100644
--- a/infra/northbound/bgp-extensions/labeled-unicast/pom.xml
+++ b/infra/northbound/bgp-extensions/labeled-unicast/pom.xml
@@ -28,6 +28,7 @@
<groupId>io.fd.honeycomb.northbound.bgp</groupId>
<artifactId>labeled-unicast</artifactId>
+ <name>${project.artifactId}</name>
<version>1.18.04-SNAPSHOT</version>
<dependencies>
<dependency>
diff --git a/infra/northbound/bgp-extensions/linkstate/pom.xml b/infra/northbound/bgp-extensions/linkstate/pom.xml
index 6db100d8b..2b3e72fe1 100644
--- a/infra/northbound/bgp-extensions/linkstate/pom.xml
+++ b/infra/northbound/bgp-extensions/linkstate/pom.xml
@@ -28,6 +28,7 @@
<groupId>io.fd.honeycomb.northbound.bgp</groupId>
<artifactId>linkstate</artifactId>
+ <name>${project.artifactId}</name>
<version>1.18.04-SNAPSHOT</version>
<dependencies>
<dependency>
diff --git a/infra/northbound/bgp-extensions/pom.xml b/infra/northbound/bgp-extensions/pom.xml
index e9a751645..3438bc8c4 100644
--- a/infra/northbound/bgp-extensions/pom.xml
+++ b/infra/northbound/bgp-extensions/pom.xml
@@ -28,6 +28,7 @@
<groupId>io.fd.honeycomb.northbound.bgp</groupId>
<artifactId>bgp-extensions</artifactId>
+ <name>${project.artifactId}</name>
<version>1.18.04-SNAPSHOT</version>
<modules>
<module>evpn</module>
diff --git a/infra/northbound/bgp/pom.xml b/infra/northbound/bgp/pom.xml
index e471176a8..3afebd866 100644
--- a/infra/northbound/bgp/pom.xml
+++ b/infra/northbound/bgp/pom.xml
@@ -29,6 +29,7 @@
<groupId>io.fd.honeycomb.northbound</groupId>
<artifactId>bgp</artifactId>
+ <name>${project.artifactId}</name>
<version>1.18.04-SNAPSHOT</version>
<dependencies>
diff --git a/infra/northbound/common/pom.xml b/infra/northbound/common/pom.xml
index 968ae7669..43fca7cda 100644
--- a/infra/northbound/common/pom.xml
+++ b/infra/northbound/common/pom.xml
@@ -29,6 +29,7 @@
<groupId>io.fd.honeycomb.northbound</groupId>
<artifactId>common</artifactId>
+ <name>${project.artifactId}</name>
<version>1.18.04-SNAPSHOT</version>
<dependencies>
diff --git a/infra/northbound/pom.xml b/infra/northbound/pom.xml
index 241b4fa67..82e486f77 100644
--- a/infra/northbound/pom.xml
+++ b/infra/northbound/pom.xml
@@ -28,6 +28,7 @@
<groupId>io.fd.honeycomb.northbound</groupId>
<artifactId>northbound-aggegator</artifactId>
+ <name>${project.artifactId}</name>
<packaging>pom</packaging>
<modules>
diff --git a/infra/test-utils/pom.xml b/infra/test-utils/pom.xml
index 4340ee4f0..11b3bf259 100644
--- a/infra/test-utils/pom.xml
+++ b/infra/test-utils/pom.xml
@@ -28,6 +28,7 @@
<groupId>io.fd.honeycomb.infra</groupId>
<artifactId>test-utils</artifactId>
+ <name>${project.artifactId}</name>
<packaging>pom</packaging>
<modules>
<module>test-api</module>
diff --git a/infra/test-utils/test-api/pom.xml b/infra/test-utils/test-api/pom.xml
index 017524e88..a3326ca2b 100644
--- a/infra/test-utils/test-api/pom.xml
+++ b/infra/test-utils/test-api/pom.xml
@@ -28,6 +28,7 @@
<groupId>io.fd.honeycomb.infra.test</groupId>
<artifactId>test-api</artifactId>
+ <name>${project.artifactId}</name>
<dependencies>
<dependency>
diff --git a/infra/test-utils/test-tools/pom.xml b/infra/test-utils/test-tools/pom.xml
index 0b7d7dc37..7cfb59bf3 100644
--- a/infra/test-utils/test-tools/pom.xml
+++ b/infra/test-utils/test-tools/pom.xml
@@ -28,6 +28,7 @@
<groupId>io.fd.honeycomb.infra</groupId>
<artifactId>test-tools</artifactId>
+ <name>${project.artifactId}</name>
<dependencies>
<dependency>