blob: b9df971c327f0401460f8dc1d5dac3e63031a850 [file] [log] [blame]
Pamela Dragosha965e2e2018-05-25 09:22:38 -04001<!--
2 ============LICENSE_START=======================================================
3 ONAP Policy SDC Service Distribution
4 ================================================================================
HOCKLAcd581962020-01-10 15:44:01 -06005 Copyright (C) 2018, 2020 AT&T Intellectual Property. All rights reserved.
ramvermab5f49342019-02-05 15:34:35 +00006 Copyright (C) 2019 Nordix Foundation.
Pamela Dragosha965e2e2018-05-25 09:22:38 -04007 ================================================================================
8 Licensed under the Apache License, Version 2.0 (the "License");
9 you may not use this file except in compliance with the License.
10 You may obtain a copy of the License at
11
12 http://www.apache.org/licenses/LICENSE-2.0
13
14 Unless required by applicable law or agreed to in writing, software
15 distributed under the License is distributed on an "AS IS" BASIS,
16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 See the License for the specific language governing permissions and
18 limitations under the License.
19 ============LICENSE_END=========================================================
20 -->
21
ramvermab5f49342019-02-05 15:34:35 +000022<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
ramverma84beaf82018-08-15 21:28:42 +010024 <modelVersion>4.0.0</modelVersion>
Pamela Dragosha965e2e2018-05-25 09:22:38 -040025
26 <parent>
27 <groupId>org.onap.policy.parent</groupId>
28 <artifactId>integration</artifactId>
HOCKLAb8306062020-01-20 16:37:27 -060029 <version>3.1.1-SNAPSHOT</version>
ramverma84beaf82018-08-15 21:28:42 +010030 <relativePath />
Pamela Dragosha965e2e2018-05-25 09:22:38 -040031 </parent>
32
33 <groupId>org.onap.policy.distribution</groupId>
Pamela Dragosh4d2eae62018-05-30 08:55:45 -040034 <artifactId>policy-distribution</artifactId>
Jim Hahna210e7d2019-09-16 16:51:15 -040035 <version>2.3.0-SNAPSHOT</version>
Pamela Dragosha965e2e2018-05-25 09:22:38 -040036
37 <packaging>pom</packaging>
38
39 <name>policy-distribution</name>
40 <description>Code that implements our integration with SDC service distribution API.</description>
41
ramverma84beaf82018-08-15 21:28:42 +010042 <properties>
Pamela Dragoshbc03dc12020-01-20 08:00:43 -050043 <!-- Default Sonar configuration -->
Pamela Dragosh34efd972020-01-22 11:10:01 -050044 <jacoco.dataFile>${project.basedir}/../target/code-coverage/jacoco-ut.exec</jacoco.dataFile>
ramvermaef2ff6b2018-08-23 13:50:31 +010045
HOCKLAb8306062020-01-20 16:37:27 -060046 <policy.common.version>1.6.2-SNAPSHOT</policy.common.version>
Jim Hahn5a8fe4a2019-09-19 15:33:53 -040047 <policy.engine.version>1.6.0-SNAPSHOT</policy.engine.version>
48 <policy.apex-pdp.version>2.3.0-SNAPSHOT</policy.apex-pdp.version>
HOCKLAb8306062020-01-20 16:37:27 -060049 <policy.models.version>2.2.1-SNAPSHOT</policy.models.version>
ramverma84beaf82018-08-15 21:28:42 +010050 </properties>
51
Pamela Dragosha965e2e2018-05-25 09:22:38 -040052 <modules>
mmisf85f63f2018-08-02 09:45:44 +010053 <module>model</module>
liamfallonce63c402018-07-19 14:27:17 +010054 <module>main</module>
55 <module>reception</module>
56 <module>forwarding</module>
liamfallon37d8ade2018-07-30 16:58:54 +010057 <module>plugins</module>
ramvermab5f49342019-02-05 15:34:35 +000058 <module>packages</module>
Bilal Af762f742019-02-27 13:52:05 -050059 <module>testsuites</module>
Pamela Dragosha965e2e2018-05-25 09:22:38 -040060 </modules>
61
liamfallon37d8ade2018-07-30 16:58:54 +010062 <dependencies>
63 <dependency>
64 <groupId>junit</groupId>
65 <artifactId>junit</artifactId>
66 <scope>test</scope>
67 </dependency>
68 <dependency>
ramvermab5f49342019-02-05 15:34:35 +000069 <groupId>org.mockito</groupId>
70 <artifactId>mockito-all</artifactId>
71 <scope>test</scope>
liamfallon37d8ade2018-07-30 16:58:54 +010072 </dependency>
ramvermab5f49342019-02-05 15:34:35 +000073
liamfallon37d8ade2018-07-30 16:58:54 +010074 <dependency>
ramvermab5f49342019-02-05 15:34:35 +000075 <groupId>org.onap.policy.common</groupId>
76 <artifactId>policy-endpoints</artifactId>
77 <version>${policy.common.version}</version>
liamfallon37d8ade2018-07-30 16:58:54 +010078 </dependency>
79 </dependencies>
80
Pamela Dragosha965e2e2018-05-25 09:22:38 -040081 <distributionManagement>
82 <site>
ramverma84beaf82018-08-15 21:28:42 +010083 <id>ecomp-site</id>
84 <url>dav:${nexusproxy}${sitePath}</url>
Pamela Dragosha965e2e2018-05-25 09:22:38 -040085 </site>
86 </distributionManagement>
87
ramverma84beaf82018-08-15 21:28:42 +010088 <build>
89 <plugins>
90 <plugin>
ramvermaef2ff6b2018-08-23 13:50:31 +010091 <artifactId>maven-checkstyle-plugin</artifactId>
92 <executions>
93 <execution>
94 <id>onap-java-style</id>
95 <goals>
96 <goal>check</goal>
97 </goals>
98 <phase>process-sources</phase>
99 <configuration>
100 <!-- Use Google Java Style Guide:
101 https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
102 with minor changes -->
103 <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
104 <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory -->
HOCKLAb8306062020-01-20 16:37:27 -0600105 <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
ramvermaef2ff6b2018-08-23 13:50:31 +0100106 <includeResources>true</includeResources>
107 <includeTestSourceDirectory>true</includeTestSourceDirectory>
108 <includeTestResources>true</includeTestResources>
109 <excludes>
110 </excludes>
111 <consoleOutput>true</consoleOutput>
112 <failOnViolation>true</failOnViolation>
113 <violationSeverity>warning</violationSeverity>
114 </configuration>
115 </execution>
116 </executions>
117 <dependencies>
118 <dependency>
119 <groupId>org.onap.oparent</groupId>
120 <artifactId>checkstyle</artifactId>
Pamela Dragosh9d3612f2018-09-06 11:07:44 -0400121 <version>${oparent.version}</version>
ramvermaef2ff6b2018-08-23 13:50:31 +0100122 <scope>compile</scope>
123 </dependency>
124 </dependencies>
125 </plugin>
ramverma84beaf82018-08-15 21:28:42 +0100126 </plugins>
ramverma84beaf82018-08-15 21:28:42 +0100127 </build>
Pamela Dragosha965e2e2018-05-25 09:22:38 -0400128</project>