ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <parent> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 5 | <groupId>org.onap.policy.engine</groupId> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 6 | <artifactId>PolicyEngineSuite</artifactId> |
Jessica Wagantall | db597fe | 2017-11-18 18:50:29 -0800 | [diff] [blame] | 7 | <version>1.2.0-SNAPSHOT</version> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 8 | </parent> |
| 9 | <artifactId>POLICY-SDK-APP</artifactId> |
| 10 | <packaging>war</packaging> |
| 11 | <build> |
| 12 | <plugins> |
| 13 | <plugin> |
| 14 | <artifactId>maven-war-plugin</artifactId> |
| 15 | <version>2.1</version> |
| 16 | <configuration> |
| 17 | <attachClasses>true</attachClasses> |
| 18 | <!-- <warSourceDirectory>WebContent</warSourceDirectory> --> |
| 19 | <failOnMissingWebXml>false</failOnMissingWebXml> |
| 20 | </configuration> |
| 21 | </plugin> |
| 22 | <plugin> |
| 23 | <artifactId>maven-compiler-plugin</artifactId> |
| 24 | <version>3.2</version> |
| 25 | <configuration> |
| 26 | <source>1.8</source> |
| 27 | <target>1.8</target> |
| 28 | </configuration> |
| 29 | </plugin> |
Ravindra Bakkamanthala | d9007d6 | 2017-05-31 15:54:24 -0400 | [diff] [blame] | 30 | <plugin> |
| 31 | <groupId>org.apache.maven.plugins</groupId> |
| 32 | <artifactId>maven-surefire-plugin</artifactId> |
Ravindra Bakkamanthala | d9007d6 | 2017-05-31 15:54:24 -0400 | [diff] [blame] | 33 | <configuration> |
| 34 | <skipTests>${skiptests}</skipTests> |
| 35 | <includes> |
| 36 | <include>**/Test*.java</include> |
| 37 | <include>**/*Test.java</include> |
| 38 | <include>**/*TestCase.java</include> |
| 39 | </includes> |
| 40 | <additionalClasspathElements> |
| 41 | <additionalClasspathElement>${basedir}/war</additionalClasspathElement> |
| 42 | </additionalClasspathElements> |
| 43 | <systemPropertyVariables> |
| 44 | <container.classpath>classpath:</container.classpath> |
| 45 | </systemPropertyVariables> |
| 46 | </configuration> |
| 47 | </plugin> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 48 | </plugins> |
| 49 | </build> |
| 50 | <properties> |
| 51 | <encoding>UTF-8</encoding> |
rb7147 | 4281508 | 2017-12-04 16:45:55 -0500 | [diff] [blame^] | 52 | <epsdk.version>2.1.0-SNAPSHOT</epsdk.version> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 53 | <springframework.version>4.2.0.RELEASE</springframework.version> |
| 54 | <hibernate.version>4.3.11.Final</hibernate.version> |
| 55 | <skipassembly>true</skipassembly> |
Ravindra Bakkamanthala | d9007d6 | 2017-05-31 15:54:24 -0400 | [diff] [blame] | 56 | <skiptests>false</skiptests> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 57 | <jackson.version>2.6.0</jackson.version> |
Pamela Dragosh | 71d3115 | 2017-09-20 13:37:03 -0400 | [diff] [blame] | 58 | <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**,src/main/webapp/app/policyApp/CSS/**/*,src/main/webapp/app/policyApp/libs/**/*</sonar.exclusions> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 59 | </properties> |
| 60 | <dependencies> |
| 61 | <dependency> |
rb7147 | 33f0e2b | 2017-10-19 15:15:48 -0400 | [diff] [blame] | 62 | <groupId>org.onap.portal.sdk</groupId> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 63 | <artifactId>epsdk-core</artifactId> |
| 64 | <version>${epsdk.version}</version> |
rb7147 | 33f0e2b | 2017-10-19 15:15:48 -0400 | [diff] [blame] | 65 | <exclusions> |
| 66 | <exclusion> |
| 67 | <groupId>mysql</groupId> |
| 68 | <artifactId>mysql-connector-java</artifactId> |
| 69 | </exclusion> |
| 70 | </exclusions> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 71 | </dependency> |
| 72 | <!-- Spring --> |
| 73 | <dependency> |
| 74 | <groupId>org.springframework</groupId> |
| 75 | <artifactId>spring-core</artifactId> |
| 76 | <version>${springframework.version}</version> |
| 77 | <exclusions> |
| 78 | <exclusion> |
| 79 | <groupId>commons-logging</groupId> |
| 80 | <artifactId>commons-logging</artifactId> |
| 81 | </exclusion> |
| 82 | </exclusions> |
| 83 | </dependency> |
| 84 | <dependency> |
| 85 | <groupId>org.springframework</groupId> |
| 86 | <artifactId>spring-test</artifactId> |
| 87 | <version>${springframework.version}</version> |
| 88 | </dependency> |
| 89 | <dependency> |
| 90 | <groupId>org.springframework</groupId> |
| 91 | <artifactId>spring-web</artifactId> |
| 92 | <version>${springframework.version}</version> |
| 93 | </dependency> |
| 94 | <dependency> |
| 95 | <groupId>org.springframework</groupId> |
| 96 | <artifactId>spring-webmvc</artifactId> |
| 97 | <version>${springframework.version}</version> |
| 98 | </dependency> |
| 99 | <dependency> |
| 100 | <groupId>org.springframework</groupId> |
| 101 | <artifactId>spring-tx</artifactId> |
| 102 | <version>${springframework.version}</version> |
| 103 | </dependency> |
| 104 | <dependency> |
| 105 | <groupId>org.springframework</groupId> |
| 106 | <artifactId>spring-context-support</artifactId> |
| 107 | <version>${springframework.version}</version> |
| 108 | </dependency> |
| 109 | <!-- Hibernate --> |
| 110 | <dependency> |
| 111 | <groupId>org.hibernate</groupId> |
| 112 | <artifactId>hibernate-core</artifactId> |
| 113 | <version>${hibernate.version}</version> |
| 114 | </dependency> |
| 115 | <dependency> |
| 116 | <groupId>org.hibernate</groupId> |
| 117 | <artifactId>hibernate-validator</artifactId> |
| 118 | <version>5.1.3.Final</version> |
| 119 | </dependency> |
| 120 | <!-- Javax Mail --> |
| 121 | <dependency> |
| 122 | <groupId>javax.mail</groupId> |
| 123 | <artifactId>mail</artifactId> |
| 124 | <version>1.4.7</version> |
| 125 | </dependency> |
| 126 | <!-- Mapper --> |
| 127 | <dependency> |
| 128 | <groupId>com.fasterxml.jackson.core</groupId> |
| 129 | <artifactId>jackson-annotations</artifactId> |
| 130 | <version>2.6.3</version> |
| 131 | </dependency> |
| 132 | <dependency> |
| 133 | <groupId>com.fasterxml.jackson.core</groupId> |
| 134 | <artifactId>jackson-core</artifactId> |
| 135 | <version>2.6.3</version> |
| 136 | </dependency> |
| 137 | <dependency> |
| 138 | <groupId>com.fasterxml.jackson.core</groupId> |
| 139 | <artifactId>jackson-databind</artifactId> |
| 140 | <version>2.6.3</version> |
| 141 | </dependency> |
| 142 | <dependency> |
| 143 | <groupId>com.fasterxml.jackson.module</groupId> |
| 144 | <artifactId>jackson-module-jaxb-annotations</artifactId> |
| 145 | <version>${jackson.version}</version> |
| 146 | </dependency> |
| 147 | <dependency> |
| 148 | <groupId>com.fasterxml.jackson.module</groupId> |
| 149 | <artifactId>jackson-module-jsonSchema</artifactId> |
| 150 | <version>${jackson.version}</version> |
| 151 | </dependency> |
| 152 | <dependency> |
| 153 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 154 | <artifactId>jackson-dataformat-xml</artifactId> |
| 155 | <version>${jackson.version}</version> |
| 156 | </dependency> |
| 157 | <!-- Elastic Search --> |
| 158 | <dependency> |
| 159 | <groupId>org.elasticsearch</groupId> |
| 160 | <artifactId>elasticsearch</artifactId> |
| 161 | <version>2.2.0</version> |
| 162 | </dependency> |
| 163 | <dependency> |
| 164 | <groupId>org.json</groupId> |
| 165 | <artifactId>json</artifactId> |
| 166 | <version>20160212</version> |
| 167 | </dependency> |
| 168 | <dependency> |
| 169 | <groupId>io.searchbox</groupId> |
| 170 | <artifactId>jest</artifactId> |
| 171 | <version>2.0.0</version> |
| 172 | <exclusions> |
| 173 | <exclusion> |
| 174 | <groupId>commons-logging</groupId> |
| 175 | <artifactId>commons-logging</artifactId> |
| 176 | </exclusion> |
| 177 | </exclusions> |
| 178 | </dependency> |
| 179 | <dependency> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 180 | <groupId>org.onap.policy.engine</groupId> |
| 181 | <artifactId>ONAP-PDP</artifactId> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 182 | <version>${project.version}</version> |
| 183 | <exclusions> |
| 184 | <exclusion> |
| 185 | <groupId>commons-logging</groupId> |
| 186 | <artifactId>commons-logging</artifactId> |
| 187 | </exclusion> |
| 188 | <exclusion> |
| 189 | <groupId>org.apache.httpcomponents</groupId> |
| 190 | <artifactId>httpcore</artifactId> |
| 191 | </exclusion> |
| 192 | <exclusion> |
| 193 | <groupId>com.att.aft</groupId> |
| 194 | <artifactId>dme2</artifactId> |
| 195 | </exclusion> |
| 196 | </exclusions> |
| 197 | </dependency> |
| 198 | <dependency> |
| 199 | <groupId>commons-fileupload</groupId> |
| 200 | <artifactId>commons-fileupload</artifactId> |
| 201 | <version>1.3.1</version> |
| 202 | </dependency> |
| 203 | <dependency> |
| 204 | <groupId>org.apache.commons</groupId> |
| 205 | <artifactId>commons-compress</artifactId> |
| 206 | <version>1.8</version> |
| 207 | </dependency> |
| 208 | <dependency> |
| 209 | <groupId>args4j</groupId> |
| 210 | <artifactId>args4j</artifactId> |
| 211 | <version>2.32</version> |
| 212 | </dependency> |
| 213 | <dependency> |
| 214 | <groupId>org.apache.poi</groupId> |
| 215 | <artifactId>poi</artifactId> |
| 216 | <version>3.15</version> |
| 217 | </dependency> |
| 218 | <dependency> |
| 219 | <groupId>org.apache.poi</groupId> |
| 220 | <artifactId>poi-ooxml</artifactId> |
| 221 | <version>3.15</version> |
| 222 | </dependency> |
ITSERVICES\rb7147 | dda032f | 2017-05-08 22:20:44 -0400 | [diff] [blame] | 223 | <!-- https://mvnrepository.com/artifact/com.esotericsoftware.yamlbeans/yamlbeans --> |
| 224 | <dependency> |
| 225 | <groupId>com.esotericsoftware.yamlbeans</groupId> |
| 226 | <artifactId>yamlbeans</artifactId> |
| 227 | <version>1.08</version> |
Ravindra Bakkamanthala | d9007d6 | 2017-05-31 15:54:24 -0400 | [diff] [blame] | 228 | </dependency> |
| 229 | <!-- https://mvnrepository.com/artifact/org.easymock/easymock --> |
| 230 | <dependency> |
| 231 | <groupId>org.easymock</groupId> |
| 232 | <artifactId>easymock</artifactId> |
| 233 | <version>3.1</version> |
| 234 | </dependency> |
ITSERVICES\rb7147 | dda032f | 2017-05-08 22:20:44 -0400 | [diff] [blame] | 235 | <!-- https://mvnrepository.com/artifact/org.yaml/snakeyaml --> |
| 236 | <dependency> |
| 237 | <groupId>org.yaml</groupId> |
| 238 | <artifactId>snakeyaml</artifactId> |
| 239 | <version>1.16</version> |
| 240 | </dependency> |
Rodriguez, Cuauhtemoctzin (cr056n) | 59e3ddb | 2017-08-04 16:02:20 -0500 | [diff] [blame] | 241 | <dependency> |
| 242 | <groupId>org.apache.tomcat</groupId> |
| 243 | <artifactId>tomcat-jdbc</artifactId> |
| 244 | <version>8.0.24</version> |
| 245 | </dependency> |
| 246 | <dependency> |
| 247 | <groupId>org.apache.tomcat</groupId> |
| 248 | <artifactId>tomcat-dbcp</artifactId> |
| 249 | <version>8.5.9</version> |
| 250 | </dependency> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 251 | </dependencies> |
Guo Ruijing | 096a3c9 | 2017-07-14 09:34:39 +0000 | [diff] [blame] | 252 | </project> |