Bump up artifacts version to 1.1.3-SNAPSHOT
[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.3-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>junit</groupId>
45             <artifactId>junit</artifactId>
46             <version>4.11</version>
47             <scope>test</scope>
48         </dependency>
49                 <dependency>
50                         <groupId>org.apache.maven</groupId>
51                         <artifactId>maven-model</artifactId>
52                         <version>2.2.1</version>
53                 </dependency>
54                 <dependency>
55                         <groupId>org.apache.maven.shared</groupId>
56                         <artifactId>maven-invoker</artifactId>
57                         <version>2.2</version>
58                 </dependency>
59                 <dependency>
60                         <groupId>org.onap.policy.common</groupId>
61                         <artifactId>integrity-monitor</artifactId>
62                         <version>${project.version}</version>
63                 </dependency>
64                 <dependency>
65                         <groupId>org.sonatype.nexus</groupId>
66                         <artifactId>nexus-rest-client-java</artifactId>
67                         <version>2.3.1</version>
68                 </dependency>
69                 <dependency>
70                         <groupId>com.thoughtworks.xstream</groupId>
71                         <artifactId>xstream</artifactId>
72                         <version>1.3.1</version>
73                 </dependency>
74                 <dependency>
75                         <groupId>com.att.nsa</groupId>
76                         <artifactId>cambriaClient</artifactId>
77                         <version>0.0.1</version>
78                         <exclusions>
79                                 <exclusion>
80                                         <groupId>org.slf4j</groupId>
81                                         <artifactId>slf4j-log4j12</artifactId>
82                                 </exclusion>
83                         </exclusions>
84                 </dependency>
85                 <dependency>
86                         <groupId>com.att.nsa</groupId>
87                         <artifactId>dmaapClient</artifactId>
88                         <version>0.2.12</version>
89                         <exclusions>
90                                 <exclusion>
91                                         <groupId>org.slf4j</groupId>
92                                         <artifactId>slf4j-log4j12</artifactId>
93                                 </exclusion>
94                                 <exclusion>
95                                         <groupId>com.att.aft</groupId>
96                                         <artifactId>dme2</artifactId>
97                                 </exclusion>
98                         </exclusions>
99                 </dependency>
100                 <dependency>
101                         <groupId>org.apache.httpcomponents</groupId>
102                         <artifactId>httpclient</artifactId>
103                         <version>4.5.2</version>
104                 </dependency>
105         </dependencies>
106         <build>
107                 <plugins>
108                         <plugin>
109                                 <!-- Build an executable JAR -->
110                                 <groupId>org.apache.maven.plugins</groupId>
111                                 <artifactId>maven-assembly-plugin</artifactId>
112                                 <version>2.2</version>
113                                 <configuration>
114                                         <archive>
115                                                 <manifest>
116                                                         <addClasspath>true</addClasspath>
117                                                         <classpathPrefix>lib/</classpathPrefix>
118                                                         <mainClass>org.onap.policy.brmsInterface.BRMSGateway</mainClass>
119                                                 </manifest>
120                                         </archive>
121                                         <descriptorRefs>
122                                                 <descriptorRef>jar-with-dependencies</descriptorRef>
123                                         </descriptorRefs>
124                                 </configuration>
125                                 <executions>
126                                         <execution>
127                                                 <id>make-assembly</id>
128                                                 <phase>package</phase>
129                                                 <goals>
130                                                         <goal>single</goal>
131                                                 </goals>
132                                         </execution>
133                                 </executions>
134                         </plugin>
135                 </plugins>
136         </build>
137 </project>