f618277c6f85d38e13a96ff989f14c9dcd759b0d
[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>2.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-shade-plugin</artifactId>
37                 <version>2.1</version>
38                 <executions>
39                     <execution>
40                         <phase>package</phase>
41                         <goals>
42                             <goal>shade</goal>
43                         </goals>
44                         <configuration>
45                             <transformers>
46                                 <transformer
47                                     implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
48                                     <mainClass>org.onap.aaf.sms.ClientTestRunner</mainClass>
49                                 </transformer>
50                             </transformers>
51                         </configuration>
52                     </execution>
53                 </executions>
54             </plugin>
55         </plugins>
56     </build>
57
58     <distributionManagement>
59                 <repository>
60                         <id>ecomp-releases</id>
61                         <name>AAF SMS Release Repository</name>
62                         <url>${nexusproxy}${releaseNexusPath}</url>
63                 </repository>
64                 <snapshotRepository>
65                         <id>ecomp-snapshots</id>
66                         <name>AAF SMS Snapshot Repository</name>
67                         <url>${nexusproxy}${snapshotNexusPath}</url>
68                 </snapshotRepository>
69                 <site>
70                         <id>ecomp-site</id>
71                         <url>dav:${nexusproxy}${sitePath}</url>
72                 </site>
73         </distributionManagement>
74
75 </project>