[POLICY-73] replace openecomp for policy-engine
[policy/engine.git] / BRMSGateway / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3   ONAP Policy Engine
4   ================================================================================
5   Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6   ================================================================================
7   Licensed under the Apache License, Version 2.0 (the "License");
8   you may not use this file except in compliance with the License.
9   You may obtain a copy of the License at
10   
11        http://www.apache.org/licenses/LICENSE-2.0
12   
13   Unless required by applicable law or agreed to in writing, software
14   distributed under the License is distributed on an "AS IS" BASIS,
15   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   See the License for the specific language governing permissions and
17   limitations under the License.
18   ============LICENSE_END=========================================================
19   -->
20
21 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23         <modelVersion>4.0.0</modelVersion>
24         <parent>
25                 <groupId>org.onap.policy.engine</groupId>
26                 <artifactId>PolicyEngineSuite</artifactId>
27                 <version>1.1.0-SNAPSHOT</version>
28         </parent>
29         <artifactId>BRMSGateway</artifactId>
30         <description>This application will take in BRMS rules and acts as interface between PR and PDP XACML</description>
31         <dependencies>
32                 <dependency>
33                         <groupId>org.onap.policy.engine</groupId>
34                         <artifactId>PolicyEngineAPI</artifactId>
35                         <version>${project.version}</version>
36                         <exclusions>
37                                 <exclusion>
38                                         <groupId>com.att.nsa</groupId>
39                                         <artifactId>cambriaClient</artifactId>
40                                 </exclusion>
41                         </exclusions>
42                 </dependency>
43                 <dependency>
44                         <groupId>org.apache.maven</groupId>
45                         <artifactId>maven-model</artifactId>
46                         <version>2.2.1</version>
47                 </dependency>
48                 <dependency>
49                         <groupId>org.apache.maven.shared</groupId>
50                         <artifactId>maven-invoker</artifactId>
51                         <version>2.2</version>
52                 </dependency>
53                 <dependency>
54                         <groupId>org.onap.policy.common</groupId>
55                         <artifactId>integrity-monitor</artifactId>
56                         <version>${common-modules.version}</version>
57                 </dependency>
58                 <dependency>
59                         <groupId>org.sonatype.nexus</groupId>
60                         <artifactId>nexus-rest-client-java</artifactId>
61                         <version>2.3.1</version>
62                 </dependency>
63                 <dependency>
64                         <groupId>com.thoughtworks.xstream</groupId>
65                         <artifactId>xstream</artifactId>
66                         <version>1.3.1</version>
67                 </dependency>
68                 <dependency>
69                         <groupId>com.att.nsa</groupId>
70                         <artifactId>cambriaClient</artifactId>
71                         <version>0.0.1</version>
72                         <exclusions>
73                                 <exclusion>
74                                         <groupId>org.slf4j</groupId>
75                                         <artifactId>slf4j-log4j12</artifactId>
76                                 </exclusion>
77                         </exclusions>
78                 </dependency>
79                 <dependency>
80                         <groupId>com.att.nsa</groupId>
81                         <artifactId>dmaapClient</artifactId>
82                         <version>0.2.12</version>
83                         <exclusions>
84                                 <exclusion>
85                                         <groupId>org.slf4j</groupId>
86                                         <artifactId>slf4j-log4j12</artifactId>
87                                 </exclusion>
88                                 <exclusion>
89                                         <groupId>com.att.aft</groupId>
90                                         <artifactId>dme2</artifactId>
91                                 </exclusion>
92                         </exclusions>
93                 </dependency>
94                 <dependency>
95                         <groupId>org.apache.httpcomponents</groupId>
96                         <artifactId>httpclient</artifactId>
97                         <version>4.5.2</version>
98                 </dependency>
99         </dependencies>
100         <build>
101                 <plugins>
102                         <plugin>
103                                 <!-- Build an executable JAR -->
104                                 <groupId>org.apache.maven.plugins</groupId>
105                                 <artifactId>maven-assembly-plugin</artifactId>
106                                 <version>2.2</version>
107                                 <configuration>
108                                         <archive>
109                                                 <manifest>
110                                                         <addClasspath>true</addClasspath>
111                                                         <classpathPrefix>lib/</classpathPrefix>
112                                                         <mainClass>org.onap.policy.brmsInterface.BRMSGateway</mainClass>
113                                                 </manifest>
114                                         </archive>
115                                         <descriptorRefs>
116                                                 <descriptorRef>jar-with-dependencies</descriptorRef>
117                                         </descriptorRefs>
118                                 </configuration>
119                                 <executions>
120                                         <execution>
121                                                 <id>make-assembly</id>
122                                                 <phase>package</phase>
123                                                 <goals>
124                                                         <goal>single</goal>
125                                                 </goals>
126                                         </execution>
127                                 </executions>
128                         </plugin>
129                 </plugins>
130         </build>
131 </project>