Merge "Fix Major sonar issues"
[policy/drools-applications.git] / controlloop / templates / archetype-cl-amsterdam / src / main / resources / archetype-resources / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP
5   ================================================================================
6   Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
7   ================================================================================
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
22 <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/xsd/maven-4.0.0.xsd">
24         <modelVersion>4.0.0</modelVersion>
25
26         <groupId>${groupId}</groupId>
27         <artifactId>${artifactId}</artifactId>
28         <version>${version}</version>
29         <packaging>kjar</packaging>
30
31         <name>${artifactId}</name>
32         <description>Control Loop Amsterdam Release Rules</description>
33
34         <properties>
35                 <maven.compiler.source>1.8</maven.compiler.source>
36                 <maven.compiler.target>1.8</maven.compiler.target>
37         </properties>
38
39         <build>
40                 <plugins>
41                         <plugin>
42                                 <groupId>org.kie</groupId>
43                                 <artifactId>kie-maven-plugin</artifactId>
44                                 <version>6.5.0.Final</version>
45                                 <extensions>true</extensions>
46                         </plugin>
47                 </plugins>
48         </build>
49
50         <dependencies>
51                 <dependency>
52                         <groupId>org.onap.policy.drools-applications</groupId>
53                         <artifactId>events</artifactId>
54                         <version>${dependenciesVersion}</version>
55                 </dependency>
56                 <dependency>
57                         <groupId>org.onap.policy.drools-applications</groupId>
58                         <artifactId>appc</artifactId>
59                         <version>${dependenciesVersion}</version>
60                 </dependency>
61                 <dependency>
62                         <groupId>org.onap.policy.drools-applications</groupId>
63                         <artifactId>appclcm</artifactId>
64                         <version>${dependenciesVersion}</version>
65                 </dependency>
66                 <dependency>
67                         <groupId>org.onap.policy.drools-applications</groupId>
68                         <artifactId>vfc</artifactId>
69                         <version>${dependenciesVersion}</version>
70                 </dependency>
71                 <dependency>
72                         <groupId>org.onap.policy.drools-applications</groupId>
73                         <artifactId>so</artifactId>
74                         <version>${dependenciesVersion}</version>
75                 </dependency>   
76                 <dependency>
77                         <groupId>org.onap.policy.drools-applications</groupId>
78                         <artifactId>aai</artifactId>
79                         <version>${dependenciesVersion}</version>
80                 </dependency>
81                 <dependency>
82                         <groupId>org.onap.policy.drools-applications</groupId>
83                         <artifactId>sdc</artifactId>
84                         <version>${dependenciesVersion}</version>
85                 </dependency>
86                 <dependency>
87                         <groupId>org.onap.policy.drools-applications</groupId>
88                         <artifactId>trafficgenerator</artifactId>
89                         <version>${dependenciesVersion}</version>
90                 </dependency>
91                 <dependency>
92                         <groupId>org.onap.policy.drools-applications</groupId>
93                         <artifactId>eventmanager</artifactId>
94                         <version>${dependenciesVersion}</version>
95                 </dependency>                   
96                 <dependency>
97                         <groupId>org.onap.policy.drools-applications</groupId>
98                         <artifactId>guard</artifactId>
99                         <version>${dependenciesVersion}</version>
100                 </dependency>
101                 <dependency>
102                         <groupId>org.onap.policy.drools-applications</groupId>
103                         <artifactId>actorServiceProvider</artifactId>
104                         <version>${dependenciesVersion}</version>
105                 </dependency>
106                 <dependency>
107                         <groupId>org.onap.policy.drools-applications</groupId>
108                         <artifactId>actor.appc</artifactId>
109                         <version>${dependenciesVersion}</version>
110                 </dependency>
111                 <dependency>
112                         <groupId>org.onap.policy.drools-applications</groupId>
113                         <artifactId>actor.appclcm</artifactId>
114                         <version>${dependenciesVersion}</version>
115                 </dependency>
116                 <dependency>
117                         <groupId>org.onap.policy.drools-applications</groupId>
118                         <artifactId>actor.so</artifactId>
119                         <version>${dependenciesVersion}</version>
120                 </dependency>
121                 <dependency>
122                         <groupId>org.onap.policy.drools-applications</groupId>
123                         <artifactId>actor.vfc</artifactId>
124                         <version>${dependenciesVersion}</version>
125                 </dependency>
126                 <dependency>
127                         <groupId>org.onap.policy.drools-applications</groupId>
128                         <artifactId>policy-yaml</artifactId>
129                         <version>${dependenciesVersion}</version>
130                 </dependency>
131                 <dependency>
132                         <groupId>com.att.research.xacml</groupId>
133                         <artifactId>xacml-pdp</artifactId>
134                         <version>1.0.0</version>
135                 </dependency>
136                 <dependency>
137                    <groupId>org.onap.policy.drools-pdp</groupId>
138                    <artifactId>policy-management</artifactId>
139                    <version>${dependenciesVersion}</version>
140                    <scope>provided</scope>
141                    <optional>true</optional>
142                 </dependency>
143         </dependencies>
144 </project>