move to JJB
[aaf/sms.git] / sms-client / java / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3     <modelVersion>4.0.0</modelVersion>
4     <groupId>org.onap.aaf.sms</groupId>
5     <artifactId>sms-client</artifactId>
6     <packaging>jar</packaging>
7     <version>4.0.0-SNAPSHOT</version>
8     <name>sms-client</name>
9
10     <properties>
11         <nexusproxy>https://nexus.onap.org</nexusproxy>
12         <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
13         <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
14         <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
15         <sitePath>/content/sites/site/org/onap/aaf/sms/${project.artifactId}/${project.version}</sitePath>
16         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17         <maven.compiler.source>1.8</maven.compiler.source>
18         <maven.compiler.target>1.8</maven.compiler.target>
19     </properties>
20     <dependencies>
21         <dependency>
22             <groupId>org.json</groupId>
23             <artifactId>json</artifactId>
24             <version>20180130</version>
25         </dependency>
26         <dependency>
27             <groupId>junit</groupId>
28             <artifactId>junit</artifactId>
29             <version>4.12</version>
30         </dependency>
31     </dependencies>
32     <build>
33         <plugins>
34             <plugin>
35                 <groupId>org.apache.maven.plugins</groupId>
36                 <artifactId>maven-deploy-plugin</artifactId>
37                 <configuration>
38                     <skip>false</skip>
39                 </configuration>
40             </plugin>
41             <plugin>
42                 <groupId>org.apache.maven.plugins</groupId>
43                 <artifactId>maven-shade-plugin</artifactId>
44                 <version>2.1</version>
45                 <executions>
46                     <execution>
47                         <phase>package</phase>
48                         <goals>
49                             <goal>shade</goal>
50                         </goals>
51                         <configuration>
52                             <transformers>
53                                 <transformer
54                                     implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
55                                     <mainClass>org.onap.aaf.sms.ClientTestRunner</mainClass>
56                                 </transformer>
57                             </transformers>
58                         </configuration>
59                     </execution>
60                 </executions>
61             </plugin>
62         </plugins>
63     </build>
64
65     <distributionManagement>
66         <repository>
67             <id>ecomp-releases</id>
68             <name>AAF SMS Release Repository</name>
69             <url>${nexusproxy}${releaseNexusPath}</url>
70         </repository>
71         <snapshotRepository>
72             <id>ecomp-snapshots</id>
73             <name>AAF SMS Snapshot Repository</name>
74             <url>${nexusproxy}${snapshotNexusPath}</url>
75         </snapshotRepository>
76         <site>
77             <id>ecomp-site</id>
78             <url>dav:${nexusproxy}${sitePath}</url>
79         </site>
80     </distributionManagement>
81
82 </project>