summaryrefslogtreecommitdiffstats
path: root/pom.xml
blob: 4a1548a30856fe96453dab8d81aa951cab8258dc (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
<?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>
        <groupId>org.onap.oparent</groupId>
        <artifactId>oparent</artifactId>
        <version>2.0.0</version>
    </parent>
    
    <groupId>org.onap.aai</groupId>
    <artifactId>sparky-be</artifactId>
    <version>2.0.4-SNAPSHOT</version>
    <packaging>pom</packaging>
    <name>aai-sparky-be</name>

	<modules>
		<module>sparkybe-onap-service/pom.xml</module>
		<module>sparkybe-onap-application/pom.xml</module>
	</modules>

    <properties>
        <sitePath>/content/sites/site/org/onap/aai/sparky-be/${project.artifactId}/${project.version}</sitePath>
        <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
	 <portal.sdk.version>2.6.0</portal.sdk.version>

	<sonar.jacoco.reportPath />
	<sonar.jacoco.itReportPath />
	<sonar.jacoco.reportMissing.force.zero />

	<jacoco.line.coverage.limit>0.90</jacoco.line.coverage.limit>
	<jacoco.version>0.8.5</jacoco.version>
	<sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
	<sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
	<sonar.coverage.jacoco.xmlReportPaths>${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
	<sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>

	<sonar.scanner.version>3.7.0.1746</sonar.scanner.version>

        <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
        <maven-compiler-plugin.source>11</maven-compiler-plugin.source>
        <maven-compiler-plugin.target>11</maven-compiler-plugin.target>
        <maven-compiler-plugin.test.source>11</maven-compiler-plugin.test.source>
        <maven-compiler-plugin.test.target>11</maven-compiler-plugin.test.target>
    </properties>

	<dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.onap.portal.sdk</groupId>
                <artifactId>epsdk-fw</artifactId>
                <version>${portal.sdk.version}</version>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <!-- we don't need to deploy the top level pom project -->
	<build>
	  <pluginManagement>
	    <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <version>${maven-compiler-plugin.version}</version>
                    <inherited>true</inherited>
                    <configuration>
						<release>${maven-compiler-plugin.source}</release>
                        <source>${maven-compiler-plugin.source}</source>
                        <target>${maven-compiler-plugin.target}</target>
                        <testSource>${maven-compiler-plugin.test.source}</testSource>
                        <testTarget>${maven-compiler-plugin.test.target}</testTarget>
                    </configuration>
                </plugin>
		<plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-deploy-plugin</artifactId>
                </plugin>
		</plugins>
	      </pluginManagement>

	      <!-- once we connect aai-parent or oparent 3.0+ we can take out this
		   whole section -->
	      <plugins>
	      <plugin>
		<groupId>org.jacoco</groupId>
		<artifactId>jacoco-maven-plugin</artifactId>
		<version>${jacoco.version}</version>
		<configuration>
		  <!-- Note: This exclusion list should match <sonar.exclusions> property
		       above -->
		  <excludes>
		    <exclude>**/gen/**</exclude>
		    <exclude>**/generated-sources/**</exclude>
		    <exclude>**/yang-gen/**</exclude>
		    <exclude>**/pax/**</exclude>
		    <exclude>org/onap/aai/babel/xml/generator/xsd/*</exclude>
		  </excludes>
		</configuration>
		<executions>
		  <!-- Prepares the property pointing to the JaCoCo runtime agent which
		       is passed as VM argument when Maven the Surefire plugin is executed. -->
		  <execution>
		    <id>pre-unit-test</id>
		    <goals>
		      <goal>prepare-agent</goal>
		    </goals>
		    <configuration>
		      <!-- Sets the path to the file which contains the execution data
			   . -->
		      <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
		      <!-- Sets the name of the property containing the settings for JaCoCo
			   runtime agent. -->
		      <propertyName>surefireArgLine</propertyName>
		    </configuration>
		  </execution>
		  <!-- Ensures that the code coverage report for unit tests is created
		       after unit tests have been run. -->
		  <execution>
		    <id>post-unit-test</id>
		    <phase>test</phase>
		    <goals>
		      <goal>report</goal>
		    </goals>
		    <configuration>
		      <!-- Sets the path to the file which contains the execution data
			   . -->
		      <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
		      <!-- Sets the output directory for the code coverage report. -->
		      <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
		    </configuration>
		  </execution>
		  <execution>
		    <id>pre-integration-test</id>
		    <phase>pre-integration-test</phase>
		    <goals>
		      <goal>prepare-agent</goal>
		    </goals>
		    <configuration>
		      <!-- Sets the path to the file which contains the execution data
			   . -->
		      <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
		      <!-- Sets the name of the property containing the settings for JaCoCo
			   runtime agent. -->
		      <propertyName>failsafeArgLine</propertyName>
		    </configuration>
		  </execution>
		  <!-- Ensures that the code coverage report for integration tests after
		       integration tests have been run. -->
		  <execution>
		    <id>post-integration-test</id>
		    <phase>post-integration-test</phase>
		    <goals>
		      <goal>report</goal>
		    </goals>
		    <configuration>
		      <!-- Sets the path to the file which contains the execution data
			   . -->
		      <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
		      <!-- Sets the output directory for the code coverage report. -->
		      <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
		    </configuration>
		  </execution>
		  <execution>
		    <id>default-check</id>
		    <goals>
		      <goal>check</goal>
		    </goals>
		    <configuration>
		      <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
		      <rules>
			<rule implementation="org.jacoco.maven.RuleConfiguration">
			  <element>BUNDLE</element>
			  <limits>
			    <limit implementation="org.jacoco.report.check.Limit">
			      <counter>LINE</counter>
			      <value>COVEREDRATIO</value>
			      <minimum>${jacoco.line.coverage.limit}</minimum>
			    </limit>
			  </limits>
			</rule>
		      </rules>
		    </configuration>
		  </execution>
		</executions>
	      </plugin>
	      <plugin>
		<groupId>org.apache.maven.plugins</groupId>
		<artifactId>maven-surefire-plugin</artifactId>
		<version>3.0.0-M4</version>
		<configuration>
		  <!-- Sets the VM argument line used when unit tests are run. -->
		  <argLine>${surefireArgLine}</argLine>
		  <!-- Excludes integration tests when unit tests are run. -->
		  <excludes>
		    <exclude>**/IT*.java</exclude>
		  </excludes>
		</configuration>
	      </plugin>
	      <plugin>
		<groupId>org.apache.maven.plugins</groupId>
		<artifactId>maven-failsafe-plugin</artifactId>
		<version>3.0.0-M4</version>
		<executions>
		  <!-- Ensures that both integration-test and verify goals of the Failsafe
		       Maven plugin are executed. -->
		  <execution>
		    <id>integration-tests</id>
		    <goals>
		      <goal>integration-test</goal>
		      <goal>verify</goal>
		    </goals>
		    <configuration>
		      <!-- Sets the VM argument line used when integration tests are run. -->
		      <argLine>${failsafeArgLine}</argLine>
		    </configuration>
		  </execution>
		</executions>
	      </plugin>
	      <plugin>
		<groupId>org.sonarsource.scanner.maven</groupId>
		<artifactId>sonar-maven-plugin</artifactId>
		<version>${sonar.scanner.version}</version>
	      </plugin>
	      <!-- end removable sonar config, note the additional exclusion for babel above
	      -->
	    </plugins>


	</build>
	
    <distributionManagement>
       <repository>
          <id>ecomp-releases</id>
          <name>ECOMP Release Repository</name>
          <url>${onap.nexus.url}/content/repositories/releases/</url>
       </repository>
       <snapshotRepository>
          <id>ecomp-snapshots</id>
          <name>ECOMP Snapshot Repository</name>
          <url>${onap.nexus.url}/content/repositories/snapshots/</url>
      </snapshotRepository>
      <site>
        <id>ecomp-site</id>
        <url>dav:${onap.nexus.url}${sitePath}</url>
      </site>
   </distributionManagement>

    <repositories>
        <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>${onap.nexus.url}/content/repositories/releases/</url>
        </repository>
        <repository>
            <id>ecomp-staging</id>
            <name>ECOMP Staging Repository</name>
            <url>${onap.nexus.url}/content/repositories/staging/</url>
        </repository>
        <repository>
            <id>ecomp-snapshots</id>
            <name>ECOMP Snapshot Repository</name>
            <url>${onap.nexus.url}/content/repositories/snapshots/</url>
        </repository>
    </repositories>
	
</project>