blob: fa4538c19c1615cabc6cdf38afe68d930556e741 [file] [log] [blame]
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -07001<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>
Rob Daugherty8047b7c2017-08-01 11:56:58 -04005 <groupId>org.openecomp.so</groupId>
Rob Daugherty26419352017-08-04 15:55:54 -04006 <artifactId>so</artifactId>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -07007 <version>1.1.0-SNAPSHOT</version>
8 </parent>
9
Rob Daugherty9de3ce02017-08-04 12:15:51 -040010 <groupId>org.openecomp.so</groupId>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070011 <artifactId>asdc-controller</artifactId>
12 <name>asdc-controller</name>
13 <description>ASDC CLient and Controller</description>
14 <packaging>war</packaging>
15
16 <build>
17 <finalName>${project.artifactId}-${project.version}</finalName>
18 <plugins>
19 <plugin>
20 <artifactId>maven-war-plugin</artifactId>
21 <version>2.4</version>
22 <configuration>
23 <warSourceDirectory>WebContent</warSourceDirectory>
24 <failOnMissingWebXml>false</failOnMissingWebXml>
25 <attachClasses>true</attachClasses>
26 </configuration>
27 </plugin>
28 </plugins>
29 </build>
30
31 <dependencies>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070032 <dependency>
33 <groupId>org.codehaus.jackson</groupId>
34 <artifactId>jackson-mapper-asl</artifactId>
35 <version>1.9.13</version>
36 </dependency>
37 <dependency>
38 <groupId>org.mockito</groupId>
39 <artifactId>mockito-all</artifactId>
40 <version>1.10.19</version>
41 <scope>test</scope>
42 </dependency>
43 <dependency>
Rob Daugherty9de3ce02017-08-04 12:15:51 -040044 <groupId>org.openecomp.so</groupId>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070045 <artifactId>mso-catalog-db</artifactId>
46 <version>${project.version}</version>
47 </dependency>
48
49 <dependency>
50 <groupId>org.jboss.spec.javax.ejb</groupId>
51 <artifactId>jboss-ejb-api_3.2_spec</artifactId>
52 <version>1.0.0.Final</version>
53 <scope>provided</scope>
54 </dependency>
55 <dependency>
56 <groupId>org.jboss.ejb3</groupId>
57 <artifactId>jboss-ejb3-ext-api</artifactId>
58 <version>2.2.0.Final</version>
59 <scope>provided</scope>
60 </dependency>
61
62 <dependency>
63 <groupId>javax.servlet</groupId>
64 <artifactId>javax.servlet-api</artifactId>
65 <version>3.1.0</version>
66 <scope>test</scope>
67 </dependency>
Arthur Martella62cd6aa2017-09-08 13:27:46 -040068
69 <!-- <dependency>
70 <groupId>org.openecomp.sdc.sdc-distribution-client</groupId>
71 <artifactId>sdc-distribution-client</artifactId>
72 <version>1.1.16</version>
73 <exclusions>
74 <exclusion>
75 <groupId>org.slf4j</groupId>
76 <artifactId>slf4j-log4j12</artifactId>
77 </exclusion>
78 </exclusions>
79 </dependency> -->
80
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070081 <dependency>
Arthur Martella62cd6aa2017-09-08 13:27:46 -040082 <groupId>org.apache.httpcomponents</groupId>
83 <artifactId>httpclient</artifactId>
84 <version>4.4.1</version>
85 <scope>compile</scope>
86 <exclusions>
87 <exclusion>
88 <groupId>org.apache.httpcomponents</groupId>
89 <artifactId>httpclient</artifactId>
90 </exclusion>
91 </exclusions>
92 </dependency>
93
94 <dependency>
95 <groupId>org.openecomp.sdc.sdc-distribution-client</groupId>
96 <artifactId>sdc-distribution-client</artifactId>
97 <version>1.1.32-SNAPSHOT</version>
98 <exclusions>
99 <exclusion>
100 <groupId>org.slf4j</groupId>
101 <artifactId>slf4j-log4j12</artifactId>
102 </exclusion>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700103 </exclusions>
104 </dependency>
105
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400106
107 <dependency>
108 <groupId>org.openecomp.sdc.sdc-tosca</groupId>
109 <artifactId>sdc-tosca</artifactId>
110 <version>1.1.32-SNAPSHOT</version>
111 </dependency>
112
113
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700114 <dependency>
115 <groupId>org.apache.httpcomponents</groupId>
116 <artifactId>httpmime</artifactId>
117 <version>4.5</version>
118 </dependency>
119
120 <dependency>
Rob Daugherty9de3ce02017-08-04 12:15:51 -0400121 <groupId>org.openecomp.so</groupId>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700122 <artifactId>common</artifactId>
123 <version>${project.version}</version>
124 </dependency>
125
126 <dependency>
127 <groupId>org.yaml</groupId>
128 <artifactId>snakeyaml</artifactId>
129 <version>1.15</version>
130 </dependency>
131
132 <dependency>
133 <groupId>javax</groupId>
134 <artifactId>javaee-web-api</artifactId>
135 <version>6.0</version>
136 <scope>provided</scope>
137 </dependency>
138 <dependency>
Rob Daugherty9de3ce02017-08-04 12:15:51 -0400139 <groupId>org.openecomp.so</groupId>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700140 <artifactId>status-control</artifactId>
141 <version>${project.version}</version>
142 </dependency>
143 <dependency>
144 <groupId>commons-io</groupId>
145 <artifactId>commons-io</artifactId>
146 </dependency>
147 </dependencies>
148
149</project>