2 ============LICENSE_START=======================================================
4 ================================================================================
5 Copyright (C) 2017-2018 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
11 http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
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>
25 <groupId>org.onap.policy.engine</groupId>
26 <artifactId>PolicyEngineSuite</artifactId>
27 <version>1.3.1-SNAPSHOT</version>
29 <artifactId>BRMSGateway</artifactId>
30 <description>This application will take in BRMS rules and acts as interface between PR and PDP XACML</description>
33 <groupId>com.h2database</groupId>
34 <artifactId>h2</artifactId>
38 <groupId>org.onap.policy.engine</groupId>
39 <artifactId>PolicyEngineAPI</artifactId>
40 <version>${project.version}</version>
43 <groupId>com.att.nsa</groupId>
44 <artifactId>cambriaClient</artifactId>
49 <groupId>org.apache.maven</groupId>
50 <artifactId>maven-model</artifactId>
51 <version>3.5.3</version>
54 <groupId>org.apache.maven.shared</groupId>
55 <artifactId>maven-invoker</artifactId>
56 <version>3.0.0</version>
59 <groupId>org.onap.policy.common</groupId>
60 <artifactId>integrity-monitor</artifactId>
61 <version>${version.policy.common}</version>
64 <groupId>com.thoughtworks.xstream</groupId>
65 <artifactId>xstream</artifactId>
68 <groupId>com.att.nsa</groupId>
69 <artifactId>cambriaClient</artifactId>
72 <groupId>org.slf4j</groupId>
73 <artifactId>slf4j-log4j12</artifactId>
78 <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
79 <artifactId>dmaapClient</artifactId>
82 <groupId>org.slf4j</groupId>
83 <artifactId>slf4j-log4j12</artifactId>
86 <groupId>com.att.aft</groupId>
87 <artifactId>dme2</artifactId>
92 <groupId>org.apache.httpcomponents</groupId>
93 <artifactId>httpclient</artifactId>
99 <artifactId>maven-checkstyle-plugin</artifactId>
102 <id>onap-java-style</id>
106 <phase>process-sources</phase>
108 <!-- Use Google Java Style Guide: https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
109 with minor changes -->
110 <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
111 <!-- <sourceDirectory> is needed so that checkstyle
112 ignores the generated sources directory -->
113 <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
114 <includeResources>true</includeResources>
115 <includeTestSourceDirectory>true</includeTestSourceDirectory>
116 <includeTestResources>true</includeTestResources>
117 <consoleOutput>true</consoleOutput>
118 <failOnViolation>true</failOnViolation>
119 <violationSeverity>warning</violationSeverity>
125 <groupId>org.onap.oparent</groupId>
126 <artifactId>checkstyle</artifactId>
127 <version>0.1.1</version>
128 <scope>compile</scope>
133 <!-- Build an executable JAR -->
134 <groupId>org.apache.maven.plugins</groupId>
135 <artifactId>maven-assembly-plugin</artifactId>
139 <addClasspath>true</addClasspath>
140 <classpathPrefix>lib/</classpathPrefix>
141 <mainClass>org.onap.policy.brms.api.BrmsGateway</mainClass>
145 <descriptorRef>jar-with-dependencies</descriptorRef>
150 <id>make-assembly</id>
151 <phase>package</phase>