| POM: |
Show
hide
<!--
Copyright © 2015 Cotiviti Labs (nexgen.admin@cotiviti.io)
The software code contained herein is the property of Cotiviti Corporation
and its subsidiaries and affiliates (collectively, “Cotiviti�).
Access to this software code is being provided to you in the course of your
employment or affiliation with Cotiviti and may be used solely in the scope
and course of your work for Cotiviti, and is for internal Cotiviti use only.
Any unauthorized use, disclosure, copying, distribution, destruction of this
software code, or the taking of any unauthorized action in reliance on this
software code, is strictly prohibited.
If this information is viewed in error, immediately discontinue use of the
application. Anyone using this software code and the applications will be
subject to monitoring for improper use, system maintenance and security
purposes, and is advised that if such monitoring reveals possible criminal
activity or policy violation, Cotiviti personnel may provide the evidence of
such monitoring to law enforcement or other officials, and the user may be
subject to disciplinary action by Cotiviti, up to and including termination
of employment.
Use of this software code and any applications and information therein
constitutes acknowledgement of and consent to this notice
-->
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.cotiviti</groupId>
<artifactId>cotiviti-generic-parent</artifactId>
<version>0.4.4</version>
</parent>
<packaging>jar</packaging>
<artifactId>svcwrapperdefault</artifactId>
<name>svcwrapperdefault</name>
<description>Test package for servicewrapper setup...</description>
<!-- URL for site gen -->
<url>${ghe.url.base}/${project.artifactId}</url>
<dependencies>
<dependency>
<groupId>junit</groupId> <!-- Note that this is not for "test" scope -->
<artifactId>junit</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>attach</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<inherited>false</inherited>
<configuration>
<!-- Configures the used assembly descriptor -->
<descriptors>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|