Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 3 | ONAP Policy Engine |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 4 | ================================================================================ |
Pamela Dragosh | bcdb1e1 | 2018-02-07 15:41:30 -0500 | [diff] [blame] | 5 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 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" |
waqas.ikram | d4b467d | 2018-03-28 12:56:15 +0100 | [diff] [blame] | 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> |
Pamela Dragosh | dca5220 | 2018-04-13 15:55:51 -0400 | [diff] [blame] | 27 | <version>1.2.1-SNAPSHOT</version> |
waqas.ikram | d4b467d | 2018-03-28 12:56:15 +0100 | [diff] [blame] | 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>com.h2database</groupId> |
| 34 | <artifactId>h2</artifactId> |
| 35 | <scope>test</scope> |
| 36 | </dependency> |
| 37 | <dependency> |
| 38 | <groupId>org.onap.policy.engine</groupId> |
| 39 | <artifactId>PolicyEngineAPI</artifactId> |
| 40 | <version>${project.version}</version> |
| 41 | <exclusions> |
| 42 | <exclusion> |
| 43 | <groupId>com.att.nsa</groupId> |
| 44 | <artifactId>cambriaClient</artifactId> |
| 45 | </exclusion> |
| 46 | </exclusions> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>org.apache.maven</groupId> |
| 50 | <artifactId>maven-model</artifactId> |
| 51 | <version>3.5.3</version> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>org.apache.maven.shared</groupId> |
| 55 | <artifactId>maven-invoker</artifactId> |
| 56 | <version>3.0.0</version> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.onap.policy.common</groupId> |
| 60 | <artifactId>integrity-monitor</artifactId> |
| 61 | <version>${project.version}</version> |
| 62 | </dependency> |
waqas.ikram | d4b467d | 2018-03-28 12:56:15 +0100 | [diff] [blame] | 63 | <dependency> |
| 64 | <groupId>com.thoughtworks.xstream</groupId> |
| 65 | <artifactId>xstream</artifactId> |
| 66 | <version>1.4.10</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>org.onap.dmaap.messagerouter.dmaapclient</groupId> |
| 81 | <artifactId>dmaapClient</artifactId> |
| 82 | <version>${dmaap.version}</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>${httpclient.version}</version> |
| 98 | </dependency> |
| 99 | </dependencies> |
| 100 | <build> |
| 101 | <plugins> |
| 102 | <plugin> |
| 103 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 104 | <executions> |
| 105 | <execution> |
| 106 | <id>onap-java-style</id> |
| 107 | <goals> |
| 108 | <goal>check</goal> |
| 109 | </goals> |
| 110 | <phase>process-sources</phase> |
| 111 | <configuration> |
| 112 | <!-- Use Google Java Style Guide: https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml |
| 113 | with minor changes --> |
| 114 | <configLocation>onap-checkstyle/onap-java-style.xml</configLocation> |
| 115 | <!-- <sourceDirectory> is needed so that checkstyle |
| 116 | ignores the generated sources directory --> |
| 117 | <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> |
| 118 | <includeResources>true</includeResources> |
| 119 | <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| 120 | <includeTestResources>true</includeTestResources> |
| 121 | <consoleOutput>true</consoleOutput> |
| 122 | <failOnViolation>true</failOnViolation> |
| 123 | <violationSeverity>warning</violationSeverity> |
| 124 | </configuration> |
| 125 | </execution> |
| 126 | </executions> |
| 127 | <dependencies> |
| 128 | <dependency> |
| 129 | <groupId>org.onap.oparent</groupId> |
| 130 | <artifactId>checkstyle</artifactId> |
| 131 | <version>0.1.1</version> |
| 132 | <scope>compile</scope> |
| 133 | </dependency> |
| 134 | </dependencies> |
| 135 | </plugin> |
| 136 | <plugin> |
| 137 | <!-- Build an executable JAR --> |
| 138 | <groupId>org.apache.maven.plugins</groupId> |
| 139 | <artifactId>maven-assembly-plugin</artifactId> |
| 140 | <version>2.2</version> |
| 141 | <configuration> |
| 142 | <archive> |
| 143 | <manifest> |
| 144 | <addClasspath>true</addClasspath> |
| 145 | <classpathPrefix>lib/</classpathPrefix> |
Daniel Cruz | db15d58 | 2018-04-03 08:08:19 -0500 | [diff] [blame] | 146 | <mainClass>org.onap.policy.brms.api.BrmsGateway</mainClass> |
waqas.ikram | d4b467d | 2018-03-28 12:56:15 +0100 | [diff] [blame] | 147 | </manifest> |
| 148 | </archive> |
| 149 | <descriptorRefs> |
| 150 | <descriptorRef>jar-with-dependencies</descriptorRef> |
| 151 | </descriptorRefs> |
| 152 | </configuration> |
| 153 | <executions> |
| 154 | <execution> |
| 155 | <id>make-assembly</id> |
| 156 | <phase>package</phase> |
| 157 | <goals> |
| 158 | <goal>single</goal> |
| 159 | </goals> |
| 160 | </execution> |
| 161 | </executions> |
| 162 | </plugin> |
| 163 | </plugins> |
| 164 | </build> |
Pamela Dragosh | bb9c33b | 2017-11-07 21:14:49 -0500 | [diff] [blame] | 165 | </project> |