diff options
author | Instrumental <jonathan.gathman@att.com> | 2018-11-21 16:06:17 -0600 |
---|---|---|
committer | Instrumental <jonathan.gathman@att.com> | 2018-11-21 16:06:24 -0600 |
commit | f95fc5f7ae9cf1832eae2451be883477bbd08f16 (patch) | |
tree | 75beb85f559840a2019ce81257f4b9dc49d1e0ca /auth/auth-batch/pom.xml | |
parent | e92832a4f8dbcc18dff57ff09232c5b75687742e (diff) |
Batch upgrades for ONAP
Issue-ID: AAF-641
Change-Id: I7b5e8b97d8c6c484418c995b6e51507af78fc765
Signed-off-by: Instrumental <jonathan.gathman@att.com>
Diffstat (limited to 'auth/auth-batch/pom.xml')
-rw-r--r-- | auth/auth-batch/pom.xml | 40 |
1 files changed, 37 insertions, 3 deletions
diff --git a/auth/auth-batch/pom.xml b/auth/auth-batch/pom.xml index 325b72a0..c30a32af 100644 --- a/auth/auth-batch/pom.xml +++ b/auth/auth-batch/pom.xml @@ -120,9 +120,14 @@ </dependency> <dependency> + <groupId>org.onap.aaf.authz</groupId> + <artifactId>aaf-auth-deforg</artifactId> + </dependency> + + <!--dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> - </dependency> + </dependency --> </dependencies> @@ -132,8 +137,8 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> - <source>1.7</source> - <target>1.7</target> + <source>1.8</source> + <target>1.8</target> </configuration> </plugin> @@ -215,6 +220,35 @@ </execution> </executions> </plugin> + <plugin> + <artifactId>maven-assembly-plugin</artifactId> + <configuration> + <classifier>tests</classifier> + <archive> + <manifest> + <mainClass>org.onap.aaf.auth.Batch</mainClass> + </manifest> + <manifestEntries> + <Sealed>true</Sealed> + </manifestEntries> + </archive> + + </configuration> + <executions> + <execution> + <id>full</id> + <phase>package</phase> + <goals> + <goal>single</goal> + </goals> + <configuration> + <descriptors> + <descriptor>src/assemble/auth-batch.xml</descriptor> + </descriptors> + </configuration> + </execution> + </executions> + </plugin> </plugins> </build> |