Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame^] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ECOMP 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.openecomp.policy.engine</groupId> |
| 26 | <artifactId>PolicyEngineSuite</artifactId> |
| 27 | <version>1.0.0-SNAPSHOT</version> |
| 28 | </parent> |
| 29 | <groupId>org.openecomp.policy.engine</groupId> |
| 30 | <artifactId>BRMSGateway</artifactId> |
| 31 | <description>This application will take in BRMS rules and acts as interface between PR and PDP XACML</description> |
| 32 | <dependencies> |
| 33 | <dependency> |
| 34 | <groupId>org.openecomp.policy.engine</groupId> |
| 35 | <artifactId>PolicyEngineAPI</artifactId> |
| 36 | <version>${project.version}</version> |
| 37 | <exclusions> |
| 38 | <exclusion> |
| 39 | <groupId>com.att.nsa</groupId> |
| 40 | <artifactId>cambriaClient</artifactId> |
| 41 | </exclusion> |
| 42 | </exclusions> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>org.apache.maven</groupId> |
| 46 | <artifactId>maven-model</artifactId> |
| 47 | <version>2.2.1</version> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>org.apache.maven.shared</groupId> |
| 51 | <artifactId>maven-invoker</artifactId> |
| 52 | <version>2.2</version> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.openecomp.policy.common</groupId> |
| 56 | <artifactId>integrity-monitor</artifactId> |
| 57 | <version>${common-modules.version}</version> |
| 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>org.sonatype.nexus</groupId> |
| 61 | <artifactId>nexus-rest-client-java</artifactId> |
| 62 | <version>2.3.1</version> |
| 63 | </dependency> |
| 64 | <dependency> |
| 65 | <groupId>com.att.nsa</groupId> |
| 66 | <artifactId>cambriaClient</artifactId> |
| 67 | <version>0.0.1</version> |
| 68 | <exclusions> |
| 69 | <exclusion> |
| 70 | <groupId>org.slf4j</groupId> |
| 71 | <artifactId>slf4j-log4j12</artifactId> |
| 72 | </exclusion> |
| 73 | </exclusions> |
| 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>org.apache.httpcomponents</groupId> |
| 77 | <artifactId>httpclient</artifactId> |
| 78 | <version>4.5.2</version> |
| 79 | </dependency> |
| 80 | </dependencies> |
| 81 | <build> |
| 82 | <plugins> |
| 83 | <plugin> |
| 84 | <!-- Build an executable JAR --> |
| 85 | <groupId>org.apache.maven.plugins</groupId> |
| 86 | <artifactId>maven-assembly-plugin</artifactId> |
| 87 | <version>2.2</version> |
| 88 | <configuration> |
| 89 | <archive> |
| 90 | <manifest> |
| 91 | <addClasspath>true</addClasspath> |
| 92 | <classpathPrefix>lib/</classpathPrefix> |
| 93 | <mainClass>org.openecomp.policy.brmsInterface.BRMSGateway</mainClass> |
| 94 | </manifest> |
| 95 | </archive> |
| 96 | <descriptorRefs> |
| 97 | <descriptorRef>jar-with-dependencies</descriptorRef> |
| 98 | </descriptorRefs> |
| 99 | </configuration> |
| 100 | <executions> |
| 101 | <execution> |
| 102 | <id>make-assembly</id> |
| 103 | <phase>package</phase> |
| 104 | <goals> |
| 105 | <goal>single</goal> |
| 106 | </goals> |
| 107 | </execution> |
| 108 | </executions> |
| 109 | </plugin> |
| 110 | </plugins> |
| 111 | </build> |
| 112 | </project> |