blob: 2a1a78aab27814900c0a876ce73d91512751ca1b [file] [log] [blame]
Michael Lando4e33d892017-02-15 16:02:49 +02001<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/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
Pavel Aharonie2cc2532017-03-29 13:35:45 +03004
Pavel Aharonib90a1412017-03-29 14:27:51 +03005 <groupId>org.openecomp.sdc.sdc-distribution-client</groupId>
Pavel Aharonie2cc2532017-03-29 13:35:45 +03006 <artifactId>sdc-main-distribution-client</artifactId>
Pavel Aharoni5e126dc2017-06-19 18:51:16 +03007 <version>1.1.32-SNAPSHOT</version>
Pavel Aharonie2cc2532017-03-29 13:35:45 +03008 <packaging>pom</packaging>
Michael Lando3a0f5b92017-09-28 02:52:08 +03009 <name>sdc-sdc-distribution-client</name>
Pavel Aharonie2cc2532017-03-29 13:35:45 +030010
11 <modules>
Pavel Aharonie2cc2532017-03-29 13:35:45 +030012 <module>sdc-distribution-client</module>
13 <module>sdc-distribution-ci</module>
14 </modules>
15
16 <properties>
17
18 <!-- ==================== -->
19 <!-- Generic properties -->
20 <!-- ==================== -->
21 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
22
23 <!-- ==================== -->
24 <!-- Versions -->
25 <!-- ==================== -->
26 <!-- Global project version -->
27
28 <!-- Dependencies projects version -->
29 <org.glassfish.jersey.version>2.24</org.glassfish.jersey.version>
30 <functionaljava.version>4.2</functionaljava.version>
31 <httpclient.version>4.4.1</httpclient.version>
32 <commons-logging.version>1.2.1-SNAPSHOT</commons-logging.version>
Michael Lando4e33d892017-02-15 16:02:49 +020033 <httpcore.version>4.4.1</httpcore.version>
Pavel Aharonie2cc2532017-03-29 13:35:45 +030034 <logback.version>1.1.2</logback.version>
35 <junit.version>4.12</junit.version>
Michael Lando4e33d892017-02-15 16:02:49 +020036 <snakeyaml.version>1.14</snakeyaml.version>
Pavel Aharoni7f05e4e2017-05-14 17:56:49 +030037 <guava.version>21.0</guava.version>
38
Pavel Aharonie2cc2532017-03-29 13:35:45 +030039
Michael Lando4e33d892017-02-15 16:02:49 +020040 <sonar.skipDesign>true</sonar.skipDesign>
41 <sonar.projectBaseDir>${project.basedir}</sonar.projectBaseDir>
ml636re5855182017-02-23 14:46:45 +020042 <sonar.jacoco.reportPath>${project.basedir}/target/jacoco.exec</sonar.jacoco.reportPath>
ig6133fe9130c2017-04-04 14:43:03 +030043 <nexus.proxy>https://nexus.onap.org</nexus.proxy>
ig61336e743142017-04-06 16:46:13 +030044 <sitePath>/content/sites/site/org/openecomp/sdc/sdc-distribution-client/${project.version}</sitePath>
Pavel Aharoni1df0b722017-04-03 10:06:16 +030045 <snapshots.path>snapshots</snapshots.path>
46 <releases.path>releases</releases.path>
ml636re5855182017-02-23 14:46:45 +020047 <staging.profile.id>176c31dfe190a</staging.profile.id>
Pavel Aharonie2cc2532017-03-29 13:35:45 +030048
Michael Lando4e33d892017-02-15 16:02:49 +020049 </properties>
Michael Lando4e33d892017-02-15 16:02:49 +020050 <reporting>
51 <plugins>
52 <plugin>
53 <groupId>org.apache.maven.plugins</groupId>
54 <artifactId>maven-javadoc-plugin</artifactId>
55 <version>2.10.4</version>
56 <configuration>
57 <failOnError>false</failOnError>
58 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
59 <docletArtifact>
60 <groupId>org.umlgraph</groupId>
61 <artifactId>umlgraph</artifactId>
62 <version>5.6</version>
63 </docletArtifact>
64 <additionalparam>-views</additionalparam>
65 <useStandardDocletOptions>true</useStandardDocletOptions>
66 </configuration>
67 </plugin>
68 </plugins>
69 </reporting>
Pavel Aharonie2cc2532017-03-29 13:35:45 +030070
Michael Lando4e33d892017-02-15 16:02:49 +020071 <build>
72 <plugins>
73 <plugin>
74 <groupId>org.apache.maven.plugins</groupId>
75 <artifactId>maven-site-plugin</artifactId>
76 <version>3.4</version>
77 <dependencies>
78 <dependency>
79 <groupId>org.apache.maven.wagon</groupId>
80 <artifactId>wagon-webdav-jackrabbit</artifactId>
81 <version>2.10</version>
82 </dependency>
83 </dependencies>
84 </plugin>
85
86 <plugin>
87 <groupId>org.jacoco</groupId>
88 <artifactId>jacoco-maven-plugin</artifactId>
89 <version>0.7.8</version>
90 <executions>
91 <!-- Unit-Tests -->
92 <execution>
93 <id>prepare-agent</id>
94 <goals>
95 <goal>prepare-agent</goal>
96 </goals>
97 <configuration>
98 <destFile>${sonar.jacoco.reportPath}</destFile>
99 </configuration>
100 </execution>
101 </executions>
102 </plugin>
103
ml636re5855182017-02-23 14:46:45 +0200104 <!-- Staging Plugin -->
105 <plugin>
106 <groupId>org.sonatype.plugins</groupId>
107 <artifactId>nexus-staging-maven-plugin</artifactId>
108 <version>1.6.7</version>
109 <extensions>true</extensions>
110 <configuration>
111 <nexusUrl>${nexus.proxy}</nexusUrl>
112 <stagingProfileId>${staging.profile.id}</stagingProfileId>
113 <serverId>ecomp-staging</serverId>
114 </configuration>
115 </plugin>
116
Michael Lando4e33d892017-02-15 16:02:49 +0200117 <plugin>
118 <groupId>org.apache.maven.plugins</groupId>
119 <artifactId>maven-compiler-plugin</artifactId>
120 <version>2.5.1</version>
121 <inherited>true</inherited>
122 <configuration>
Pavel Aharonie2cc2532017-03-29 13:35:45 +0300123 <source>1.8</source>
124 <target>1.8</target>
Michael Lando4e33d892017-02-15 16:02:49 +0200125 </configuration>
126 </plugin>
127 <plugin>
128 <groupId>org.apache.maven.plugins</groupId>
129 <artifactId>maven-javadoc-plugin</artifactId>
130 <version>2.10.3</version>
131 <configuration/>
132 </plugin>
133 <plugin>
134 <groupId>org.codehaus.mojo</groupId>
135 <artifactId>license-maven-plugin</artifactId>
136 <version>1.10</version>
137 <configuration>
138 <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
139 <processStartTag>============LICENSE_START=======================================================</processStartTag>
140 <processEndTag>============LICENSE_END=========================================================</processEndTag>
141 <sectionDelimiter>================================================================================</sectionDelimiter>
142 <licenseName>apache_v2</licenseName>
143 <inceptionYear>2017</inceptionYear>
144 <organizationName>AT&amp;T Intellectual Property. All rights reserved.</organizationName>
145 <projectName>sdc-distribution-client</projectName>
146 <canUpdateCopyright>true</canUpdateCopyright>
147 <canUpdateDescription>true</canUpdateDescription>
148 <canUpdateLicense>true</canUpdateLicense>
149 <emptyLineAfterHeader>true</emptyLineAfterHeader>
Pavel Aharonie2cc2532017-03-29 13:35:45 +0300150 <verbose>false</verbose>
151 <includes>
152 <include>**/*.java</include>
153 </includes>
Michael Lando4e33d892017-02-15 16:02:49 +0200154 </configuration>
155 <executions>
156 <execution>
157 <id>first</id>
158 <goals>
159 <goal>update-file-header</goal>
160 </goals>
Pavel Aharonie2cc2532017-03-29 13:35:45 +0300161 <!--phase>process-sources</phase -->
Michael Lando4e33d892017-02-15 16:02:49 +0200162 </execution>
163 </executions>
164 </plugin>
165 </plugins>
166 </build>
Pavel Aharonie2cc2532017-03-29 13:35:45 +0300167
ml636r054e5672017-02-15 18:36:14 +0200168 <repositories>
169 <repository>
170 <id>central</id>
171 <name>Official Maven repository</name>
172 <url>http://repo2.maven.org/maven2/</url>
173 </repository>
174 <repository>
175 <id>ecomp-releases</id>
176 <name>Release Repository</name>
177 <url>${nexus.proxy}/content/repositories/releases/</url>
178 </repository>
179 <repository>
180 <id>ecomp-staging</id>
181 <name>Staging Repository</name>
182 <url>${nexus.proxy}/content/repositories/staging/</url>
183 </repository>
184 </repositories>
Michael Lando4e33d892017-02-15 16:02:49 +0200185
ml636r054e5672017-02-15 18:36:14 +0200186 <distributionManagement>
187 <repository>
188 <id>ecomp-releases</id>
189 <name>Release Repository</name>
Pavel Aharoni1df0b722017-04-03 10:06:16 +0300190 <url>${nexus.proxy}/content/repositories/${releases.path}/</url>
ml636r054e5672017-02-15 18:36:14 +0200191 </repository>
192 <snapshotRepository>
193 <id>ecomp-snapshots</id>
194 <name>Snapshot Repository</name>
Pavel Aharoni1df0b722017-04-03 10:06:16 +0300195 <url>${nexus.proxy}/content/repositories/${snapshots.path}/</url>
ml636r054e5672017-02-15 18:36:14 +0200196 </snapshotRepository>
ig6133fe9130c2017-04-04 14:43:03 +0300197 <site>
198 <id>ecomp-site</id>
199 <url>dav:${nexus.proxy}${sitePath}</url>
200 </site>
Pavel Aharonie2cc2532017-03-29 13:35:45 +0300201 </distributionManagement>
Michael Lando4e33d892017-02-15 16:02:49 +0200202
Pavel Aharonie2cc2532017-03-29 13:35:45 +0300203
Michael Lando4e33d892017-02-15 16:02:49 +0200204</project>
ml636re5855182017-02-23 14:46:45 +0200205