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" |
| 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 Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 25 | <groupId>org.onap.policy.engine</groupId> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 26 | <artifactId>PolicyEngineSuite</artifactId> |
Jessica Wagantall | db597fe | 2017-11-18 18:50:29 -0800 | [diff] [blame] | 27 | <version>1.2.0-SNAPSHOT</version> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 28 | </parent> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 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> |
Pamela Dragosh | b2c2186 | 2018-02-20 13:36:48 -0500 | [diff] [blame^] | 33 | <groupId>com.h2database</groupId> |
| 34 | <artifactId>h2</artifactId> |
| 35 | <scope>test</scope> |
| 36 | </dependency> |
| 37 | <dependency> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 38 | <groupId>org.onap.policy.engine</groupId> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 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> |
Tej, Tarun | dc35b06 | 2017-09-16 12:56:31 -0400 | [diff] [blame] | 49 | <groupId>junit</groupId> |
| 50 | <artifactId>junit</artifactId> |
| 51 | <version>4.11</version> |
| 52 | <scope>test</scope> |
| 53 | </dependency> |
| 54 | <dependency> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 55 | <groupId>org.apache.maven</groupId> |
| 56 | <artifactId>maven-model</artifactId> |
Pamela Dragosh | bcdb1e1 | 2018-02-07 15:41:30 -0500 | [diff] [blame] | 57 | <version>3.3.9</version> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>org.apache.maven.shared</groupId> |
| 61 | <artifactId>maven-invoker</artifactId> |
Pamela Dragosh | bcdb1e1 | 2018-02-07 15:41:30 -0500 | [diff] [blame] | 62 | <version>3.0.0</version> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 63 | </dependency> |
| 64 | <dependency> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 65 | <groupId>org.onap.policy.common</groupId> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 66 | <artifactId>integrity-monitor</artifactId> |
rb7147 | 3202066 | 2017-11-01 11:34:35 -0400 | [diff] [blame] | 67 | <version>${project.version}</version> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>org.sonatype.nexus</groupId> |
| 71 | <artifactId>nexus-rest-client-java</artifactId> |
Pamela Dragosh | bcdb1e1 | 2018-02-07 15:41:30 -0500 | [diff] [blame] | 72 | <version>2.3.1-01</version> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 73 | </dependency> |
| 74 | <dependency> |
ITSERVICES\rb7147 | dda032f | 2017-05-08 22:20:44 -0400 | [diff] [blame] | 75 | <groupId>com.thoughtworks.xstream</groupId> |
| 76 | <artifactId>xstream</artifactId> |
Pamela Dragosh | bcdb1e1 | 2018-02-07 15:41:30 -0500 | [diff] [blame] | 77 | <version>1.4.10</version> |
ITSERVICES\rb7147 | dda032f | 2017-05-08 22:20:44 -0400 | [diff] [blame] | 78 | </dependency> |
| 79 | <dependency> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 80 | <groupId>com.att.nsa</groupId> |
| 81 | <artifactId>cambriaClient</artifactId> |
| 82 | <version>0.0.1</version> |
| 83 | <exclusions> |
| 84 | <exclusion> |
| 85 | <groupId>org.slf4j</groupId> |
| 86 | <artifactId>slf4j-log4j12</artifactId> |
| 87 | </exclusion> |
| 88 | </exclusions> |
| 89 | </dependency> |
| 90 | <dependency> |
Magnusen, Drew (dm741q) | 4d82018 | 2017-11-21 12:03:01 -0600 | [diff] [blame] | 91 | <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 92 | <artifactId>dmaapClient</artifactId> |
Magnusen, Drew (dm741q) | 4d82018 | 2017-11-21 12:03:01 -0600 | [diff] [blame] | 93 | <version>${dmaap.version}</version> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 94 | <exclusions> |
| 95 | <exclusion> |
| 96 | <groupId>org.slf4j</groupId> |
| 97 | <artifactId>slf4j-log4j12</artifactId> |
| 98 | </exclusion> |
| 99 | <exclusion> |
| 100 | <groupId>com.att.aft</groupId> |
| 101 | <artifactId>dme2</artifactId> |
| 102 | </exclusion> |
| 103 | </exclusions> |
| 104 | </dependency> |
| 105 | <dependency> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 106 | <groupId>org.apache.httpcomponents</groupId> |
| 107 | <artifactId>httpclient</artifactId> |
Pamela Dragosh | bcdb1e1 | 2018-02-07 15:41:30 -0500 | [diff] [blame] | 108 | <version>${httpclient.version}</version> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 109 | </dependency> |
| 110 | </dependencies> |
| 111 | <build> |
| 112 | <plugins> |
| 113 | <plugin> |
| 114 | <!-- Build an executable JAR --> |
| 115 | <groupId>org.apache.maven.plugins</groupId> |
| 116 | <artifactId>maven-assembly-plugin</artifactId> |
| 117 | <version>2.2</version> |
| 118 | <configuration> |
| 119 | <archive> |
| 120 | <manifest> |
| 121 | <addClasspath>true</addClasspath> |
| 122 | <classpathPrefix>lib/</classpathPrefix> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 123 | <mainClass>org.onap.policy.brmsInterface.BRMSGateway</mainClass> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 124 | </manifest> |
| 125 | </archive> |
| 126 | <descriptorRefs> |
| 127 | <descriptorRef>jar-with-dependencies</descriptorRef> |
| 128 | </descriptorRefs> |
| 129 | </configuration> |
| 130 | <executions> |
| 131 | <execution> |
| 132 | <id>make-assembly</id> |
| 133 | <phase>package</phase> |
| 134 | <goals> |
| 135 | <goal>single</goal> |
| 136 | </goals> |
| 137 | </execution> |
| 138 | </executions> |
| 139 | </plugin> |
| 140 | </plugins> |
| 141 | </build> |
Pamela Dragosh | bb9c33b | 2017-11-07 21:14:49 -0500 | [diff] [blame] | 142 | </project> |