Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [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> |
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 5 | <groupId>org.onap.so</groupId> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 6 | <artifactId>so</artifactId> |
Jessica Wagantall | 777f637 | 2017-11-20 11:10:28 -0800 | [diff] [blame] | 7 | <version>1.2.0-SNAPSHOT</version> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 8 | </parent> |
| 9 | |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 10 | <artifactId>asdc-controller</artifactId> |
| 11 | <name>asdc-controller</name> |
| 12 | <description>ASDC CLient and Controller</description> |
| 13 | <packaging>war</packaging> |
| 14 | |
| 15 | <build> |
| 16 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 17 | <plugins> |
| 18 | <plugin> |
| 19 | <artifactId>maven-war-plugin</artifactId> |
| 20 | <version>2.4</version> |
| 21 | <configuration> |
| 22 | <warSourceDirectory>WebContent</warSourceDirectory> |
| 23 | <failOnMissingWebXml>false</failOnMissingWebXml> |
| 24 | <attachClasses>true</attachClasses> |
| 25 | </configuration> |
| 26 | </plugin> |
| 27 | </plugins> |
| 28 | </build> |
| 29 | |
| 30 | <dependencies> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 31 | <dependency> |
| 32 | <groupId>org.jmockit</groupId> |
| 33 | <artifactId>jmockit</artifactId> |
| 34 | <version>1.8</version> |
| 35 | <scope>test</scope> |
| 36 | </dependency> |
| 37 | <dependency> |
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 38 | <groupId>org.onap.so</groupId> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 39 | <artifactId>mso-catalog-db</artifactId> |
| 40 | <version>${project.version}</version> |
| 41 | </dependency> |
| 42 | |
| 43 | <dependency> |
| 44 | <groupId>org.jboss.spec.javax.ejb</groupId> |
| 45 | <artifactId>jboss-ejb-api_3.2_spec</artifactId> |
| 46 | <version>1.0.0.Final</version> |
| 47 | <scope>provided</scope> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>org.jboss.ejb3</groupId> |
| 51 | <artifactId>jboss-ejb3-ext-api</artifactId> |
| 52 | <version>2.2.0.Final</version> |
| 53 | <scope>provided</scope> |
| 54 | </dependency> |
| 55 | |
| 56 | <dependency> |
| 57 | <groupId>javax.servlet</groupId> |
| 58 | <artifactId>javax.servlet-api</artifactId> |
| 59 | <version>3.1.0</version> |
| 60 | <scope>test</scope> |
| 61 | </dependency> |
Rob Daugherty | b4473da | 2018-03-27 14:32:11 -0400 | [diff] [blame] | 62 | |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 63 | <dependency> |
| 64 | <groupId>org.apache.httpcomponents</groupId> |
| 65 | <artifactId>httpclient</artifactId> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 66 | <scope>compile</scope> |
| 67 | <exclusions> |
| 68 | <exclusion> |
| 69 | <groupId>org.apache.httpcomponents</groupId> |
| 70 | <artifactId>httpclient</artifactId> |
| 71 | </exclusion> |
| 72 | </exclusions> |
| 73 | </dependency> |
| 74 | |
| 75 | <dependency> |
Rob Daugherty | b4473da | 2018-03-27 14:32:11 -0400 | [diff] [blame] | 76 | <groupId>org.onap.sdc.sdc-distribution-client</groupId> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 77 | <artifactId>sdc-distribution-client</artifactId> |
Rob Daugherty | b4473da | 2018-03-27 14:32:11 -0400 | [diff] [blame] | 78 | <version>1.3.0</version> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 79 | <exclusions> |
| 80 | <exclusion> |
| 81 | <groupId>org.slf4j</groupId> |
| 82 | <artifactId>slf4j-log4j12</artifactId> |
| 83 | </exclusion> |
| 84 | </exclusions> |
| 85 | </dependency> |
| 86 | |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 87 | <dependency> |
Rob Daugherty | b4473da | 2018-03-27 14:32:11 -0400 | [diff] [blame] | 88 | <groupId>org.onap.sdc.sdc-tosca</groupId> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 89 | <artifactId>sdc-tosca</artifactId> |
Arthur Martella | 8dac1f8 | 2018-04-16 11:25:22 -0400 | [diff] [blame] | 90 | <version>1.3.0</version> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 91 | </dependency> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 92 | |
| 93 | <dependency> |
| 94 | <groupId>org.apache.httpcomponents</groupId> |
| 95 | <artifactId>httpmime</artifactId> |
| 96 | <version>4.5</version> |
| 97 | </dependency> |
| 98 | |
| 99 | <dependency> |
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 100 | <groupId>org.onap.so</groupId> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 101 | <artifactId>common</artifactId> |
| 102 | <version>${project.version}</version> |
| 103 | </dependency> |
| 104 | |
| 105 | <dependency> |
| 106 | <groupId>org.yaml</groupId> |
| 107 | <artifactId>snakeyaml</artifactId> |
| 108 | <version>1.15</version> |
| 109 | </dependency> |
| 110 | |
| 111 | <dependency> |
| 112 | <groupId>javax</groupId> |
| 113 | <artifactId>javaee-web-api</artifactId> |
| 114 | <version>6.0</version> |
| 115 | <scope>provided</scope> |
| 116 | </dependency> |
| 117 | <dependency> |
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 118 | <groupId>org.onap.so</groupId> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 119 | <artifactId>status-control</artifactId> |
| 120 | <version>${project.version}</version> |
| 121 | </dependency> |
| 122 | <dependency> |
| 123 | <groupId>commons-io</groupId> |
| 124 | <artifactId>commons-io</artifactId> |
| 125 | </dependency> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 126 | <dependency> |
| 127 | <groupId>org.onap.so</groupId> |
| 128 | <artifactId>mso-requests-db</artifactId> |
| 129 | <version>${project.version}</version> |
| 130 | </dependency> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 131 | </dependencies> |
| 132 | |
| 133 | </project> |