Determe, Sebastien (sd378r) | 94ee925 | 2017-05-02 03:53:18 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0"
|
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
| 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
| 5 | <modelVersion>4.0.0</modelVersion>
|
| 6 | <parent>
|
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 7 | <groupId>org.onap.so</groupId>
|
Rob Daugherty | 2641935 | 2017-08-04 15:55:54 -0400 | [diff] [blame] | 8 | <artifactId>so</artifactId>
|
Jessica Wagantall | 777f637 | 2017-11-20 11:10:28 -0800 | [diff] [blame] | 9 | <version>1.2.0-SNAPSHOT</version>
|
Determe, Sebastien (sd378r) | 94ee925 | 2017-05-02 03:53:18 -0700 | [diff] [blame] | 10 | </parent>
|
| 11 |
|
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 12 | <groupId>org.onap.so</groupId>
|
Determe, Sebastien (sd378r) | 94ee925 | 2017-05-02 03:53:18 -0700 | [diff] [blame] | 13 | <artifactId>status-control</artifactId>
|
| 14 | <name>MSO Status Control module</name>
|
| 15 | <description>Contains classes to update and query the MSO status per site</description>
|
| 16 |
|
| 17 | <dependencies>
|
Determe, Sebastien (sd378r) | 94ee925 | 2017-05-02 03:53:18 -0700 | [diff] [blame] | 18 | <dependency>
|
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 19 | <groupId>org.onap.so</groupId>
|
Determe, Sebastien (sd378r) | 94ee925 | 2017-05-02 03:53:18 -0700 | [diff] [blame] | 20 | <artifactId>common</artifactId>
|
| 21 | <version>${project.version}</version>
|
| 22 | </dependency>
|
| 23 | <dependency>
|
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 24 | <groupId>org.onap.so</groupId>
|
Determe, Sebastien (sd378r) | 94ee925 | 2017-05-02 03:53:18 -0700 | [diff] [blame] | 25 | <artifactId>mso-catalog-db</artifactId>
|
| 26 | <version>${project.version}</version>
|
| 27 | </dependency>
|
| 28 | <dependency>
|
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 29 | <groupId>org.onap.so</groupId>
|
Determe, Sebastien (sd378r) | 94ee925 | 2017-05-02 03:53:18 -0700 | [diff] [blame] | 30 | <artifactId>mso-requests-db</artifactId>
|
| 31 | <version>${project.version}</version>
|
| 32 | </dependency>
|
| 33 | <dependency>
|
| 34 | <groupId>javax.servlet</groupId>
|
| 35 | <artifactId>javax.servlet-api</artifactId>
|
| 36 | <version>3.1.0</version>
|
| 37 | <scope>provided</scope>
|
| 38 | </dependency>
|
| 39 | <dependency>
|
| 40 | <groupId>org.jboss.resteasy</groupId>
|
| 41 | <artifactId>resteasy-jaxrs</artifactId>
|
| 42 | <version>3.0.19.Final</version>
|
| 43 | <scope>provided</scope>
|
| 44 | <exclusions>
|
| 45 | <exclusion>
|
| 46 | <groupId>org.slf4j</groupId>
|
| 47 | <artifactId>slf4j-api</artifactId>
|
| 48 | </exclusion>
|
| 49 | <exclusion>
|
| 50 | <groupId>org.slf4j</groupId>
|
| 51 | <artifactId>slf4j-simple</artifactId>
|
| 52 | </exclusion>
|
| 53 | <exclusion>
|
| 54 | <groupId>org.apache.httpcomponents</groupId>
|
| 55 | <artifactId>httpclient</artifactId>
|
| 56 | </exclusion>
|
| 57 | </exclusions>
|
| 58 | </dependency>
|
| 59 | <dependency>
|
| 60 | <groupId>org.mockito</groupId>
|
| 61 | <artifactId>mockito-all</artifactId>
|
| 62 | <version>1.10.19</version>
|
| 63 | <scope>test</scope>
|
| 64 | </dependency>
|
| 65 |
|
| 66 | </dependencies>
|
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 67 | </project>
|