summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVenkata Harish K Kajur <vk250x@att.com>2017-08-20 22:39:29 -0400
committerVenkata Harish K Kajur <vk250x@att.com>2017-08-21 01:04:32 -0400
commitbd500038b456700b9f0c69e06a02298d9590d16b (patch)
treee4c20786ed190e958a3bb8c7bbf276a3e5ea26a4
parent3aceb7c3254d2568e9aaf358af0143830b5c7916 (diff)
Fix the javadocs error in jenkins
Issue-Id: AAI-76 Change-Id: Iaefe655c72584ee16d48da590afa6ae9ada7420e Signed-off-by: Venkata Harish K Kajur <vk250x@att.com>
-rw-r--r--aai-annotations/pom.xml33
-rw-r--r--aai-core/pom.xml32
-rw-r--r--aai-core/src/main/java/org/openecomp/aai/util/HttpsAuthClient.java5
-rw-r--r--pom.xml23
4 files changed, 12 insertions, 81 deletions
diff --git a/aai-annotations/pom.xml b/aai-annotations/pom.xml
index b8351a8f..ccfae3d4 100644
--- a/aai-annotations/pom.xml
+++ b/aai-annotations/pom.xml
@@ -30,41 +30,8 @@
<build>
<pluginManagement>
<plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-site-plugin</artifactId>
- <version>3.6</version>
- <dependencies>
- <dependency>
- <groupId>org.apache.maven.wagon</groupId>
- <artifactId>wagon-webdav-jackrabbit</artifactId>
- <version>2.10</version>
- </dependency>
- </dependencies>
- </plugin>
<!-- Checkstyle plugin - used to report on compliance with -->
<!-- the Google style guide. -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-site-plugin</artifactId>
- <version>3.3</version>
- <configuration>
- <reportPlugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-checkstyle-plugin</artifactId>
- <version>2.17</version>
- <reportSets>
- <reportSet>
- <reports>
- <report>checkstyle</report>
- </reports>
- </reportSet>
- </reportSets>
- </plugin>
- </reportPlugins>
- </configuration>
- </plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
diff --git a/aai-core/pom.xml b/aai-core/pom.xml
index efbb12d2..01156bf0 100644
--- a/aai-core/pom.xml
+++ b/aai-core/pom.xml
@@ -500,18 +500,6 @@
</executions>
</plugin>
<plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-site-plugin</artifactId>
- <version>3.6</version>
- <dependencies>
- <dependency>
- <groupId>org.apache.maven.wagon</groupId>
- <artifactId>wagon-webdav-jackrabbit</artifactId>
- <version>2.10</version>
- </dependency>
- </dependencies>
- </plugin>
- <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>1.12</version>
@@ -650,24 +638,4 @@
<url>${nexusproxy}/content/repositories/snapshots/</url>
</repository>
</repositories>
- <reporting>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>2.10.4</version>
- <configuration>
- <failOnError>false</failOnError>
- <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
- <docletArtifact>
- <groupId>org.umlgraph</groupId>
- <artifactId>umlgraph</artifactId>
- <version>5.6</version>
- </docletArtifact>
- <additionalparam>-views</additionalparam>
- <useStandardDocletOptions>true</useStandardDocletOptions>
- </configuration>
- </plugin>
- </plugins>
- </reporting>
</project>
diff --git a/aai-core/src/main/java/org/openecomp/aai/util/HttpsAuthClient.java b/aai-core/src/main/java/org/openecomp/aai/util/HttpsAuthClient.java
index 85225041..664620e2 100644
--- a/aai-core/src/main/java/org/openecomp/aai/util/HttpsAuthClient.java
+++ b/aai-core/src/main/java/org/openecomp/aai/util/HttpsAuthClient.java
@@ -30,7 +30,6 @@ import javax.net.ssl.KeyManagerFactory;
import javax.net.ssl.SSLContext;
import javax.net.ssl.SSLSession;
-import org.openecomp.aai.domain.yang.Customers;
import com.sun.jersey.api.client.Client;
import com.sun.jersey.api.client.ClientResponse;
import com.sun.jersey.api.client.config.ClientConfig;
@@ -62,10 +61,6 @@ public class HttpsAuthClient{
// System.out.println("Jersey result: ");
// System.out.println(res.getEntity(String.class).toString());
- Customers customers = res.getEntity(Customers.class);
- System.out.println("Jersey result: ");
- System.out.println("Number of customers: " + customers.getCustomer().size());
-
} catch (KeyManagementException e) {
e.printStackTrace();
} catch (Exception e) {
diff --git a/pom.xml b/pom.xml
index f82cd3df..5eedf9b0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -103,16 +103,16 @@
</pluginManagement>
<plugins>
<plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-site-plugin</artifactId>
- <version>3.6</version>
- <dependencies>
- <dependency>
- <groupId>org.apache.maven.wagon</groupId>
- <artifactId>wagon-webdav-jackrabbit</artifactId>
- <version>2.10</version>
- </dependency>
- </dependencies>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-site-plugin</artifactId>
+ <version>3.6</version>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.maven.wagon</groupId>
+ <artifactId>wagon-webdav-jackrabbit</artifactId>
+ <version>2.10</version>
+ </dependency>
+ </dependencies>
</plugin>
</plugins>
</build>
@@ -147,7 +147,8 @@
<artifactId>umlgraph</artifactId>
<version>5.6</version>
</docletArtifact>
- <additionalparam>-views</additionalparam>
+ <additionalparam>-views -Xdoclint:none </additionalparam>
+ <excludePackageNames>org.openecomp.aai.domain.yang.*:org.openecomp.aai.util.*</excludePackageNames>
<useStandardDocletOptions>true</useStandardDocletOptions>
</configuration>
</plugin>