aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
blob: f315060abc6d90669ee3666f4d759a17ab799d44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
<?xml version="1.0" encoding="UTF-8"?>
<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>
		<artifactId>ajsc-archetype-parent</artifactId>
		<groupId>com.att.ajsc</groupId>
		<version>2.0.0</version>
	</parent>
	<groupId>org.openecomp.aai.aai-service</groupId>
	<artifactId>aai-service</artifactId>
	<version>1.1.0-SNAPSHOT</version>
	<name>aai-aai-service</name>
	<packaging>pom</packaging>
	<modules>
		<module>aai-schema</module>
		<module>annotations</module>
		<module>ajsc-aai</module>
	</modules>
	<properties>
		<maven.compiler.target>1.8</maven.compiler.target>
		<maven.compiler.source>1.8</maven.compiler.source>
		<module.ajsc.namespace.name>ActiveAndAvailableInventory-CloudNetwork</module.ajsc.namespace.name>
		<module.ajsc.namespace.version>v1</module.ajsc.namespace.version>
		<nexusproxy>https://nexus.onap.org</nexusproxy>
		<sitePath>/content/sites/site/${project.artifactId}/${project.version}</sitePath>
        <ajscRuntimeVersion>2.0.0</ajscRuntimeVersion>

		<!-- This will be the Absolute Root of the Project and should contain NO 
			Versioning -->
		<absoluteDistFilesRoot>/opt/app/ajsc-aai</absoluteDistFilesRoot>

		<!-- For Versioning upon installation, add /${openecomp.release} to distFilesRoot. 
			For NO Versioning, leave as is -->
		<!-- example: /appl/${project.artifactId}/${openecomp.release}. Also, add 
			${openecomp.release} to ${runAjscHome} for running locally. -->
		<distFilesRoot>/opt/app/ajsc-aai/${project.version}</distFilesRoot>
		<aaiAppHome>${basedir}/ajsc-aai</aaiAppHome>
		<runAjscHome>${aaiAppHome}/target/swm/package/nix/dist_files${distFilesRoot}</runAjscHome>

		<!-- For SOA Cloud Installation -->
		<installOwnerUser>aaiadmin</installOwnerUser>
		<installOwnerGroup>aaiadmin</installOwnerGroup>
		<ownerManagementGroup>org.openecomp.aai.dev</ownerManagementGroup>

		<!-- Port Selection. A value of 0 will allow for dynamic port selection. 
			For local testing, you may choose to hardcode this value to something like 
			8080 -->
		<serverPort>8080</serverPort>
		<sslport>8443</sslport>

		<testRouteOffer>workstation</testRouteOffer>
		<testEnv>DEV</testEnv>

		<!-- For using CXF with Maven -->
		<cxf.version>3.0.4</cxf.version>
	</properties>
	<distributionManagement>
		<repository>
			<id>ecomp-releases</id>
			<name>ECOMP Release Repository</name>
			<url>${nexusproxy}/content/repositories/releases/</url>
		</repository>
		<snapshotRepository>
			<id>ecomp-snapshots</id>
			<name>ECOMP Snapshot Repository</name>
			<url>${nexusproxy}/content/repositories/snapshots/</url>
		</snapshotRepository>
		<site>
		    <id>ecomp-site</id>
		    <url>dav:${nexusproxy}${sitePath}</url>
		</site>
	</distributionManagement>
	
		<!-- Plugins and repositories -->
          <pluginRepositories>
                <pluginRepository>
                           <id>central</id>
                          <url>http://repo1.maven.org/maven2</url>
                   </pluginRepository>
                  <pluginRepository>
                          <id>EvoSuite</id>
                        <name>EvoSuite Repository</name>
                         <url>http://www.evosuite.org/m2</url>
                  </pluginRepository>
          </pluginRepositories>
           <repositories>
                 <repository>
                          <id>AJSC</id>
                          <name>AJSC repository</name>
                          <url>https://mvnrepository.com/artifact/com.att.ajsc</url>
                  </repository>
                   <repository>
                          <id>restlet</id>
                          <name>maven reslet</name>
                          <url>https://maven.restlet.com/</url>
                  </repository>
                  
                   <repository>
                          <id>central</id>
                          <name>Maven 2 repository 2</name>
                          <url>http://repo2.maven.org/maven2/</url>
                  </repository>
              <repository>
                         <id>ecomp-releases</id>
                          <name>ECOMP Release Repository</name>
                         <url>${nexusproxy}/content/repositories/releases/</url>
                  </repository>
		<repository>
		    <id>ecomp-staging</id>
		    <name>ECOMP Staging Repository</name>
		    <url>${nexusproxy}/content/repositories/staging/</url>
		</repository>
                  <repository>
                         <id>ecomp-snapshots</id>
                          <name>ECOMP Snapshot Repository</name>
			  <url>${nexusproxy}/content/repositories/snapshots/</url>
                  </repository>

          </repositories>
	

	<!-- The standard build tasks for this project are inherited from the parent. 
		Please do not override the build tasks. However tasks and/or profiles can 
		be included here as well as additional dependencies for your service. Any 
		runtime or compile scope dependencies will be copied to the INSTALLATION_PATH/extJars 
		folder and will be made available on the AJSC classpath for your service. 
		Please, NOTE: DME2 and CSM related dependencies are EXTERNALIZED within the 
		CSI environment. Therefore, they are provided within this project as "provided" 
		dependencies. In order for the AJSC to run properly, locally, the CSM and 
		DME2 dependencies will be copied into the target/commonLibs folder and will 
		be made available to the classpath of the AJSC through the use of the system 
		property, "AJSC_EXTERNAL_LIB_FOLDERS". This system property needs to be set 
		in the "runAjsc" maven profile within the pom.xml (and, is defaulted to do 
		so).   -->
	<dependencies>	
		<dependency>    
			<groupId>dom4j</groupId>
				  <artifactId>dom4j</artifactId>
				  <version>1.6.1</version>
				  <scope>provided</scope>
		  </dependency>
		  <dependency>
				  <groupId>com.att.aft</groupId>
				  <artifactId>dme2</artifactId>
				  <version>3.1.200</version>
				  <scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>com.att.ajsc</groupId>
			<artifactId>ajsc-runner</artifactId>
			<version>${ajscRuntimeVersion}</version>
			<scope>runtime</scope>
		</dependency>
		<dependency>
			<groupId>com.att.ajsc</groupId>
			<artifactId>ajsc-core</artifactId>
			<version>${ajscRuntimeVersion}</version>
			<scope>provided</scope>
		</dependency>
	</dependencies>
	<profiles>
		<profile>
			<id>jenkins-properties</id>
			<activation>
				<os>
					<family>unix</family>
				</os>
			</activation>
		</profile>
		<profile>
			<id>runAjsc</id>
			<build>
				<defaultGoal>initialize</defaultGoal>
				<plugins>
			                <plugin>
				                <groupId>org.apache.maven.plugins</groupId>
				                <artifactId>maven-dependency-plugin</artifactId>
				                <version>2.8</version>
				                <executions>
					                <execution>
						                <id>copy-agent</id>
						                <phase>process-test-classes</phase>
						                <goals>
							                <goal>copy</goal>
						                </goals>
						                <configuration>
							                <artifactItems>
								                <artifactItem>
									                <groupId>org.powermock</groupId>
									                <artifactId>powermock-module-javaagent</artifactId>
									                <version>1.6.2</version>
									                <outputDirectory>${project.build.directory}/agents</outputDirectory>
									                <destFileName>powermock-javaagent.jar</destFileName>
								                </artifactItem>
							                </artifactItems>
						                </configuration>
					                </execution>
				                </executions>
			                </plugin>
					<plugin>
						<groupId>org.codehaus.mojo</groupId>
						<artifactId>exec-maven-plugin</artifactId>
						<version>1.3.2</version>
						<executions>
							<execution>
								<id>run ajsc</id>
								<phase>initialize</phase>
								<goals>
									<goal>java</goal>
								</goals>
								<configuration>
									<!-- In order to better mimic a SOA cloud installation of AJSC (and 
										to help eliminate Maven/Eclipse/AJSC classpath issues that may be difficult 
										to diagnose), within this profile used to run locally, we are NOT including 
										project dependencies. These will be loaded by AJSC from $AJSC_HOME/extJars. 
										The only jar needed to run AJSC is the ajsc-runner.jar, and therefore is 
										the only dependency required by this profile to run locally. -->
									<includeProjectDependencies>false</includeProjectDependencies>
									<includePluginDependencies>true</includePluginDependencies>
									<executable>java</executable>
									<mainClass>com.att.ajsc.runner.Runner</mainClass>
									<executableDependency>
										<groupId>com.att.ajsc</groupId>
										<artifactId>ajsc-runner</artifactId>
									</executableDependency>

									<environmentVariables>
										<AJSC_HOME>${runAjscHome}</AJSC_HOME>
									</environmentVariables>
									<additionalClasspathElements>
										<additionalClasspathElement>${runAjscHome}/extJars/logback-access-1.1.7.jar</additionalClasspathElement>
										<additionalClasspathElement>${runAjscHome}/extJars/logback-core-1.1.7.jar</additionalClasspathElement>
										<additionalClasspathElement>${runAjscHome}/extJars/aai-custom.jar</additionalClasspathElement>
									</additionalClasspathElements>

									<!-- Main AJSC System Properties below (necessary for proper startup) -->
									<systemProperties>
										<systemProperty>
											<key>AJSC_HOME</key>
											<value>${runAjscHome}</value>
										</systemProperty>
										<systemProperty>
											<key>AFT_HOME</key>
											<value>${runAjscHome}/bundleconfig/</value>
										</systemProperty>
										<systemProperty>
											<key>AJSC_CONF_HOME</key>
											<value>${aaiAppHome}/bundleconfig-local</value>
										</systemProperty>
										<systemProperty>
											<key>logback.configurationFile</key>
											<value>${aaiAppHome}/ajsc-shared-config/etc/logback.xml</value>
										</systemProperty>
										<systemProperty>
											<key>AJSC_SHARED_CONFIG</key>
											<value>${aaiAppHome}/ajsc-shared-config</value>
										</systemProperty>
										<systemProperty>
											<key>file.separator</key>
											<value>/</value>
										</systemProperty>

										<!-- Please, NOTE: The following 2 system properties will normally 
											be set within the sys-props.properties file once deployed to a node. We are 
											setting them HERE to run locally to make more efficient use of maven variable 
											replacement for ${basedir} -->
										<!-- AJSC_EXTERNAL_LIB_FOLDERS represents the particular jars that 
											will be externalized on a CSI node. This includes dme2 and csm related artifact. -->
										<sysproperty>
											<key>AJSC_EXTERNAL_LIB_FOLDERS</key>
											<value>${aaiAppHome}/target/commonLibs</value>
										</sysproperty>
										<!-- AJSC_EXTERNAL_PROPERTIES_FOLDERS represents the particular 
											files that may need to be added to the classpath. These files will be externalized 
											on a CSI node. This includes dme2 and csm related artifact (such as csm-config-app.properties). 
											Failure to have these files on the classpath may result in errors thrown 
											by csm framework. -->
										<sysproperty>
											<key>AJSC_EXTERNAL_PROPERTIES_FOLDERS</key>
											<value>${aaiAppHome}/ajsc-shared-config/etc</value>
										</sysproperty>

										<systemProperty>
											<key>AJSC_SERVICE_NAMESPACE</key>
											<value>${module.ajsc.namespace.name}</value>
										</systemProperty>
										<systemProperty>
											<key>AJSC_SERVICE_VERSION</key>
											<value>${module.ajsc.namespace.version}</value>
										</systemProperty>
										<systemProperty>
											<key>SOACLOUD_SERVICE_VERSION</key>
											<value>${project.version}</value>
										</systemProperty>
										<systemProperty>
											<key>server.port</key>
											<value>${serverPort}</value>
										</systemProperty>
									</systemProperties>

									<!-- Command Line Arguments to add to the java command. Here, you 
										can specify the port as well as the Context you want your service to run 
										in. Use context=/ to run in an unnamed Context (Root Context). The default 
										configuration of the AJSC is to run under the / Context. Setting the port 
										here can aid during the development phase of your service. However, you can 
										leave this argument out entirely, and the AJSC will default to using an Ephemeral 
										port. -->
									<arguments>
										<argument>context=/</argument>
										<argument>port=${serverPort}</argument>
										<argument>sslport=${sslport}</argument>
									</arguments>
								</configuration>
							</execution>
						</executions>
						<configuration>
							<executable>java</executable>
						</configuration>
						<dependencies>
							<dependency>
								<groupId>com.att.ajsc</groupId>
								<artifactId>ajsc-runner</artifactId>
								<version>${ajscRuntimeVersion}</version>
							</dependency>
						</dependencies>
					</plugin>
				</plugins>
			</build>
		</profile>
	</profiles>
	<build>
	<plugins>
        <plugin>
			<groupId>org.codehaus.mojo</groupId>
			<artifactId>sonar-maven-plugin</artifactId>
			<version>3.2</version>
		</plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-site-plugin</artifactId>
            <version>3.6</version>
	    <configuration>
		<reportPlugins>
		    <plugin>
			<groupId>org.apache.maven.plugins</groupId>
			<artifactId>maven-project-info-reports-plugin</artifactId>
			<version>2.4</version>
			<configuration>
			    <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
			    <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
			</configuration>
			<reports>
			    <report>dependencies</report>
			</reports>
		    </plugin>
		    <plugin>
			<groupId>org.apache.maven.plugins</groupId>
			<artifactId>maven-javadoc-plugin</artifactId>
			<version>2.8</version>
			<configuration>
			    <additionalparam>-Xdoclint:none</additionalparam>
			</configuration>
		    </plugin>
		</reportPlugins>
	    </configuration>
            <dependencies>
              <dependency>
                <groupId>org.apache.maven.wagon</groupId>
                <artifactId>wagon-webdav-jackrabbit</artifactId>
                <version>2.10</version>
              </dependency>
            </dependencies>
        </plugin>
        <plugin>
    		<groupId>org.apache.maven.plugins</groupId>
    		<artifactId>maven-deploy-plugin</artifactId>
    		<executions>
        		<execution>
            		<id>default-deploy</id>
            		<phase>none</phase>
        		</execution>
   			</executions>
		</plugin>        
		<plugin>
		    <groupId>org.sonatype.plugins</groupId>
		    <artifactId>nexus-staging-maven-plugin</artifactId>
		    <version>1.6.7</version>
		    <extensions>true</extensions>
		    <configuration>
			<nexusUrl>${nexusproxy}</nexusUrl>
			<stagingProfileId>176c31dfe190a</stagingProfileId>
			<serverId>ecomp-staging</serverId>
		    </configuration>
		</plugin>
	</plugins>
</build>

    <reporting>
      <plugins>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-javadoc-plugin</artifactId>
          <version>2.10.4</version>
          <configuration>
            <failOnError>false</failOnError>
            <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
            <docletArtifact>
              <groupId>org.umlgraph</groupId>
              <artifactId>umlgraph</artifactId>
              <version>5.6</version>
            </docletArtifact>
            <additionalparam>-views</additionalparam>
            <useStandardDocletOptions>true</useStandardDocletOptions>
          </configuration>
        </plugin>
      </plugins>
    </reporting>


</project>