blob: b398f373d442908f1cd26ef6962b7a3bd49d1e10 [file] [log] [blame]
Pamela Dragosh91d04c62017-02-14 19:41:00 -05001<!--
2 ============LICENSE_START=======================================================
Guo Ruijing073cc182017-07-31 08:47:35 +00003 ONAP Policy Engine
Pamela Dragosh91d04c62017-02-14 19:41:00 -05004 ================================================================================
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>
Guo Ruijing073cc182017-07-31 08:47:35 +000025 <groupId>org.onap.policy.engine</groupId>
Pamela Dragosh91d04c62017-02-14 19:41:00 -050026 <artifactId>PolicyEngineSuite</artifactId>
Pamela Dragosh3234eb02017-03-10 14:54:53 -050027 <version>1.1.0-SNAPSHOT</version>
Pamela Dragosh91d04c62017-02-14 19:41:00 -050028 </parent>
Pamela Dragosh91d04c62017-02-14 19:41:00 -050029 <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>
Guo Ruijing073cc182017-07-31 08:47:35 +000033 <groupId>org.onap.policy.engine</groupId>
Pamela Dragosh91d04c62017-02-14 19:41:00 -050034 <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>
Guo Ruijing073cc182017-07-31 08:47:35 +000054 <groupId>org.onap.policy.common</groupId>
Pamela Dragosh91d04c62017-02-14 19:41:00 -050055 <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>
ITSERVICES\rb7147dda032f2017-05-08 22:20:44 -040064 <groupId>com.thoughtworks.xstream</groupId>
65 <artifactId>xstream</artifactId>
66 <version>1.3.1</version>
67 </dependency>
68 <dependency>
Pamela Dragosh91d04c62017-02-14 19:41:00 -050069 <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>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -040080 <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>
Pamela Dragosh91d04c62017-02-14 19:41:00 -050095 <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>
Guo Ruijing073cc182017-07-31 08:47:35 +0000112 <mainClass>org.onap.policy.brmsInterface.BRMSGateway</mainClass>
Pamela Dragosh91d04c62017-02-14 19:41:00 -0500113 </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>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400131</project>