Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 4 | ONAP Policy Engine |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 5 | ================================================================================ |
Pamela Dragosh | bcdb1e1 | 2018-02-07 15:41:30 -0500 | [diff] [blame^] | 6 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 7 | ================================================================================ |
| 8 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | you may not use this file except in compliance with the License. |
| 10 | You may obtain a copy of the License at |
| 11 | |
| 12 | http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | |
| 14 | Unless required by applicable law or agreed to in writing, software |
| 15 | distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | See the License for the specific language governing permissions and |
| 18 | limitations under the License. |
| 19 | ============LICENSE_END========================================================= |
| 20 | --> |
| 21 | |
| 22 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 23 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | |
| 26 | <parent> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 27 | <groupId>org.onap.policy.engine</groupId> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 28 | <artifactId>PolicyEngineSuite</artifactId> |
Jessica Wagantall | db597fe | 2017-11-18 18:50:29 -0800 | [diff] [blame] | 29 | <version>1.2.0-SNAPSHOT</version> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 30 | </parent> |
| 31 | |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 32 | <artifactId>PolicyEngineAPI</artifactId> |
| 33 | <dependencies> |
| 34 | <dependency> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 35 | <groupId>com.fasterxml.jackson.core</groupId> |
| 36 | <artifactId>jackson-databind</artifactId> |
Pamela Dragosh | bcdb1e1 | 2018-02-07 15:41:30 -0500 | [diff] [blame^] | 37 | <version>${jackson.version}</version> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>org.glassfish</groupId> |
| 41 | <artifactId>javax.json</artifactId> |
| 42 | <version>1.0.4</version> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>org.apache.httpcomponents</groupId> |
| 46 | <artifactId>httpclient</artifactId> |
Pamela Dragosh | bcdb1e1 | 2018-02-07 15:41:30 -0500 | [diff] [blame^] | 47 | <version>${httpclient.version}</version> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>commons-io</groupId> |
| 51 | <artifactId>commons-io</artifactId> |
| 52 | <version>2.4</version> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>com.google.guava</groupId> |
| 56 | <artifactId>guava</artifactId> |
| 57 | <version>14.0.1</version> |
| 58 | </dependency> |
| 59 | <dependency> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 60 | <groupId>commons-fileupload</groupId> |
| 61 | <artifactId>commons-fileupload</artifactId> |
Pamela Dragosh | bcdb1e1 | 2018-02-07 15:41:30 -0500 | [diff] [blame^] | 62 | <version>${commons.fileupload.version}</version> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 63 | </dependency> |
| 64 | <dependency> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 65 | <groupId>junit</groupId> |
| 66 | <artifactId>junit</artifactId> |
| 67 | <version>4.11</version> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 68 | <scope>test</scope> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 69 | </dependency> |
| 70 | <dependency> |
| 71 | <groupId>javax.websocket</groupId> |
| 72 | <artifactId>javax.websocket-api</artifactId> |
| 73 | <version>1.1</version> |
| 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>org.glassfish.tyrus</groupId> |
| 77 | <artifactId>tyrus-client</artifactId> |
| 78 | <version>1.13</version> |
| 79 | </dependency> |
| 80 | <dependency> |
| 81 | <groupId>org.glassfish.tyrus</groupId> |
| 82 | <artifactId>tyrus-container-grizzly-client</artifactId> |
| 83 | <version>1.13</version> |
| 84 | </dependency> |
| 85 | <dependency> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 86 | <groupId>org.springframework</groupId> |
| 87 | <artifactId>spring-webmvc</artifactId> |
| 88 | <version>4.3.3.RELEASE</version> |
| 89 | </dependency> |
| 90 | <dependency> |
Ravindra Bakkamanthala | 87c95be | 2017-05-23 14:56:12 -0400 | [diff] [blame] | 91 | <groupId>com.google.code.gson</groupId> |
| 92 | <artifactId>gson</artifactId> |
| 93 | <version>2.8.0</version> |
| 94 | </dependency> |
| 95 | <dependency> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 96 | <groupId>log4j</groupId> |
| 97 | <artifactId>log4j</artifactId> |
| 98 | <version>1.2.17</version> |
| 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>com.att.nsa</groupId> |
| 102 | <artifactId>cambriaClient</artifactId> |
| 103 | <version>0.0.1</version> |
| 104 | <exclusions> |
| 105 | <exclusion> |
| 106 | <groupId>org.slf4j</groupId> |
| 107 | <artifactId>slf4j-log4j12</artifactId> |
| 108 | </exclusion> |
| 109 | </exclusions> |
| 110 | </dependency> |
| 111 | <dependency> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 112 | <groupId>org.onap.policy.engine</groupId> |
| 113 | <artifactId>ONAP-XACML</artifactId> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 114 | <version>${project.version}</version> |
Ravindra Bakkamanthala | 7e547ea | 2017-05-15 12:53:18 -0400 | [diff] [blame] | 115 | <exclusions> |
| 116 | <exclusion> |
| 117 | <groupId>org.powermock</groupId> |
| 118 | <artifactId>powermock-api-mockito</artifactId> |
| 119 | </exclusion> |
| 120 | </exclusions> |
| 121 | </dependency> |
| 122 | <!-- https://mvnrepository.com/artifact/org.mockito/mockito-all --> |
| 123 | <dependency> |
| 124 | <groupId>org.mockito</groupId> |
| 125 | <artifactId>mockito-all</artifactId> |
| 126 | <version>1.10.19</version> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 127 | </dependency> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 128 | </dependencies> |
| 129 | <build> |
| 130 | <plugins> |
| 131 | <plugin> |
| 132 | <groupId>org.apache.maven.plugins</groupId> |
| 133 | <artifactId>maven-compiler-plugin</artifactId> |
| 134 | <version>3.2</version> |
| 135 | <configuration> |
| 136 | <source>1.8</source> |
| 137 | <target>1.8</target> |
| 138 | </configuration> |
| 139 | </plugin> |
| 140 | <plugin> |
| 141 | <!-- Dependency version for Clients who need it --> |
| 142 | <groupId>org.apache.maven.plugins</groupId> |
| 143 | <artifactId>maven-assembly-plugin</artifactId> |
| 144 | <version>2.2</version> |
| 145 | <configuration> |
| 146 | <descriptorRefs> |
| 147 | <descriptorRef>jar-with-dependencies</descriptorRef> |
| 148 | </descriptorRefs> |
| 149 | </configuration> |
| 150 | <executions> |
| 151 | <execution> |
| 152 | <id>make-assembly</id> |
| 153 | <phase>package</phase> |
| 154 | <goals> |
| 155 | <goal>single</goal> |
| 156 | </goals> |
| 157 | </execution> |
| 158 | </executions> |
| 159 | </plugin> |
| 160 | </plugins> |
| 161 | </build> |
| 162 | </project> |