DCAE-D be initial commit
[sdc/dcae-d/dt-be-main.git] / dcaedt_be / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project 
3         xmlns="http://maven.apache.org/POM/4.0.0" 
4         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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         <groupId>org.onap.sdc.dcae.composition</groupId>
7         <artifactId>dcae_dt_be</artifactId>
8         <packaging>war</packaging>
9         <name>DCAE DT BE</name>
10         <parent>
11                 <groupId>org.onap.sdc.dcae</groupId>
12                 <artifactId>dcae_dt_be_main</artifactId>
13                 <version>1806.0.1-SNAPSHOT</version>
14         </parent>
15         <dependencies>
16                 <dependency>
17                         <groupId>org.springframework.boot</groupId>
18                         <artifactId>spring-boot-starter-web</artifactId>
19                         <exclusions>
20                                 <exclusion>
21                                         <groupId>org.springframework.boot</groupId>
22                                         <artifactId>spring-boot-starter-tomcat</artifactId>
23                                 </exclusion>
24                         </exclusions>
25                 </dependency>
26                 <dependency>
27                         <groupId>org.springframework.boot</groupId>
28                         <artifactId>spring-boot-starter-test</artifactId>
29                         <scope>test</scope>
30                 </dependency>
31                 <dependency>
32                         <groupId>org.apache.commons</groupId>
33                         <artifactId>commons-lang3</artifactId>
34                         <version>3.5</version>
35                 </dependency>
36                 <dependency>
37                         <groupId>commons-net</groupId>
38                         <artifactId>commons-net</artifactId>
39                         <version>3.3</version>
40                 </dependency>
41                 <dependency>
42                         <groupId>com.jcraft</groupId>
43                         <artifactId>jsch</artifactId>
44                         <version>0.1.54</version>
45                 </dependency>
46                 <dependency>
47                         <groupId>com.google.code.gson</groupId>
48                         <artifactId>gson</artifactId>
49                         <version>2.8.0</version>
50                 </dependency>
51                 <dependency>
52                         <groupId>org.json</groupId>
53                         <artifactId>json</artifactId>
54                         <version>20160810</version>
55                 </dependency>
56                 <dependency>
57                         <groupId>org.onap.sdc.dcae</groupId>
58                         <artifactId>DCAE-DT-Catalog-ASDC</artifactId>
59                         <version>${project.version}</version>
60                 </dependency>
61                 <dependency>
62                         <groupId>org.onap.sdc.dcae</groupId>
63                         <artifactId>DCAE-DT-Catalog-API</artifactId>
64                         <version>${project.version}</version>
65                 </dependency>
66                 <dependency>
67                         <groupId>org.onap.sdc.dcae</groupId>
68                         <artifactId>DCAE-DT-Catalog-Commons</artifactId>
69                         <version>${project.version}</version>
70                 </dependency>
71                 <dependency>
72                         <groupId>org.onap.sdc.dcae</groupId>
73                         <artifactId>DCAE-DT-Catalog-DB</artifactId>
74                         <version>${project.version}</version>
75                 </dependency>
76                 <dependency>
77                         <groupId>org.onap.sdc.dcae</groupId>
78                         <artifactId>DCAE-DT-Catalog-Service</artifactId>
79                         <version>${project.version}</version>
80                 </dependency>
81                 <dependency>
82                         <groupId>org.powermock</groupId>
83                         <artifactId>powermock-module-junit4</artifactId>
84                         <version>1.6.4</version>
85                         <scope>test</scope>
86                 </dependency>
87                 <dependency>
88                         <groupId>org.powermock</groupId>
89                         <artifactId>powermock-api-mockito</artifactId>
90                         <version>1.6.4</version>
91                         <scope>test</scope>
92                 </dependency>
93                 <dependency>
94                         <groupId>org.testng</groupId>
95                         <artifactId>testng</artifactId>
96                         <version>6.9.10</version>
97                         <scope>test</scope>
98                 </dependency>
99                 <!-- https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple -->
100                 <dependency>
101                         <groupId>com.googlecode.json-simple</groupId>
102                         <artifactId>json-simple</artifactId>
103                         <version>1.1.1</version>
104                 </dependency>
105                 <dependency>
106                         <groupId>io.springfox</groupId>
107                         <artifactId>springfox-swagger2</artifactId>
108                         <version>2.6.1</version>
109                         <scope>compile</scope>
110                 </dependency>
111                 <dependency>
112                         <groupId>io.springfox</groupId>
113                         <artifactId>springfox-swagger-ui</artifactId>
114                         <version>2.6.1</version>
115                         <scope>compile</scope>
116                 </dependency>
117     </dependencies>
118         <profiles>
119                 <profile>
120                         <id>local</id>
121                         <activation>
122                                 <activeByDefault>false</activeByDefault>
123                         </activation>
124                         <dependencies>
125                                 <dependency>
126                                         <groupId>org.springframework.boot</groupId>
127                                         <artifactId>spring-boot-starter-jetty</artifactId>
128                                         <version>1.5.2.RELEASE</version>
129                                         <exclusions>
130                                                 <exclusion>
131                                                         <groupId>org.eclipse.jetty.websocket</groupId>
132                                                         <artifactId>*</artifactId>
133                                                 </exclusion>
134                                         </exclusions>
135                                 </dependency>
136                                 <dependency>
137                                         <groupId>javax.servlet</groupId>
138                                         <artifactId>javax.servlet-api</artifactId>
139                                         <version>4.0.0</version>
140                                         <scope>provided</scope>
141                                 </dependency>
142                         </dependencies>
143                 </profile>
144                 <profile>
145                         <id>server</id>
146                         <activation>
147                                 <activeByDefault>true</activeByDefault>
148                         </activation>
149                         <dependencies>
150                                 <dependency>
151                                         <groupId>javax.servlet</groupId>
152                                         <artifactId>javax.servlet-api</artifactId>
153                                         <version>4.0.0</version>
154                                 </dependency>
155                         </dependencies>
156                 </profile>
157         </profiles>
158         <build>
159                 <finalName>dcae</finalName>
160                 <plugins>
161                         <plugin>
162                                 <groupId>org.apache.maven.plugins</groupId>
163                                 <artifactId>maven-surefire-plugin</artifactId>
164                         </plugin>
165                         <plugin>
166                                 <groupId>org.springframework.boot</groupId>
167                                 <artifactId>spring-boot-maven-plugin</artifactId>
168                                 <configuration>
169                                         <webXml>src/main/webapp/WEB-INF/web.xml</webXml>
170                                         <webResources>
171                                                 <resource>
172                                                         <!-- this is relative to the pom.xml directory -->
173                                                         <directory>src/main/webapp/</directory>
174                                                 </resource>
175                                         </webResources>
176                                 </configuration>
177                                 <!-- <executions><execution><goals><goal>repackage</goal></goals></execution></executions><configuration><jvmArguments> -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8096 
178                                         </jvmArguments></configuration> -->
179                         </plugin>
180                         <plugin>
181                                 <groupId>org.apache.maven.plugins</groupId>
182                                 <artifactId>maven-war-plugin</artifactId>
183                                 <configuration>
184                                         <archive>
185                                                 <manifestEntries>
186                                                         <Specification-Version>${project.version}</Specification-Version>
187                                                 </manifestEntries>
188                                         </archive>
189                                 </configuration>
190                         </plugin>
191                 </plugins>
192         </build>
193 </project>