aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitreview2
-rw-r--r--aai-schema/pom.xml1
-rw-r--r--ajsc-aai/pom.xml3
-rw-r--r--pom.xml26
4 files changed, 29 insertions, 3 deletions
diff --git a/.gitreview b/.gitreview
index 8cb2236..f8851ac 100644
--- a/.gitreview
+++ b/.gitreview
@@ -1,4 +1,4 @@
[gerrit]
-host=gerrit.openecomp.org
+host=gerrit.onap.org
port=29418
project=aai/aai-service.git
diff --git a/aai-schema/pom.xml b/aai-schema/pom.xml
index 8a11f12..422601d 100644
--- a/aai-schema/pom.xml
+++ b/aai-schema/pom.xml
@@ -84,6 +84,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
+ <version>2.8</version>
<executions>
<execution>
<id>unpack-schema-dependency</id>
diff --git a/ajsc-aai/pom.xml b/ajsc-aai/pom.xml
index 1f43e52..75d6188 100644
--- a/ajsc-aai/pom.xml
+++ b/ajsc-aai/pom.xml
@@ -540,7 +540,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
- <version>2.5.1</version>
+ <version>2.8</version>
<executions>
<execution>
<id>copy-agent</id>
@@ -565,6 +565,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
+ <version>2.8</version>
<executions>
<execution>
<id>unpack-schema-dependency</id>
diff --git a/pom.xml b/pom.xml
index ce05aa1..a6f9f60 100644
--- a/pom.xml
+++ b/pom.xml
@@ -173,7 +173,31 @@
<build>
<defaultGoal>initialize</defaultGoal>
<plugins>
-
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <version>2.8</version>
+ <executions>
+ <execution>
+ <id>copy-agent</id>
+ <phase>process-test-classes</phase>
+ <goals>
+ <goal>copy</goal>
+ </goals>
+ <configuration>
+ <artifactItems>
+ <artifactItem>
+ <groupId>org.powermock</groupId>
+ <artifactId>powermock-module-javaagent</artifactId>
+ <version>1.6.2</version>
+ <outputDirectory>${project.build.directory}/agents</outputDirectory>
+ <destFileName>powermock-javaagent.jar</destFileName>
+ </artifactItem>
+ </artifactItems>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>