DCAE-D be initial commit
[sdc/dcae-d/dt-be-main.git] / dcaedt_catalog / service / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" 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">
2   <modelVersion>4.0.0</modelVersion>
3   
4   <parent>
5     <groupId>org.onap.sdc.dcae</groupId>
6     <artifactId>DCAE-DT-Catalog</artifactId>
7     <version>1806.0.1-SNAPSHOT</version>
8   </parent>
9   <artifactId>DCAE-DT-Catalog-Service</artifactId>
10   <packaging>jar</packaging>
11   <name>DCAE-DT Catalog Service</name>
12
13         <build>
14             <sourceDirectory>src/main/java</sourceDirectory>
15             <plugins>
16               <plugin>
17                 <artifactId>maven-compiler-plugin</artifactId>
18                 <version>3.1</version>
19                 <configuration>
20                   <source>1.8</source>
21                   <target>1.8</target>
22                   <encoding>${project.build.sourceEncoding}</encoding>
23                 </configuration>
24               </plugin>
25                                 <plugin>
26                                         <groupId>org.springframework.boot</groupId>
27                                         <artifactId>spring-boot-maven-plugin</artifactId>
28                                         <version>1.3.3.RELEASE</version>
29                 <configuration>
30                         <mainClass>org.onap.sdc.dcae.catalog.engine.CatalogEngine</mainClass>
31                 </configuration>
32           <executions>
33                   <execution>
34               <goals>
35                 <goal>repackage</goal>
36               </goals>
37             </execution>
38            </executions>
39                                 </plugin>
40             </plugins>
41           </build>
42   <dependencies>
43     <dependency>
44       <groupId>junit</groupId>
45       <artifactId>junit</artifactId>
46       <version>3.8.1</version>
47       <scope>test</scope>
48     </dependency>
49                 <dependency>
50                         <groupId>org.springframework</groupId>
51                         <artifactId>spring-core</artifactId>
52                         <version>4.3.5.RELEASE</version>
53                 </dependency>
54                 <dependency>
55                         <groupId>org.springframework</groupId>
56                         <artifactId>spring-web</artifactId>
57                         <version>4.3.5.RELEASE</version>
58                 </dependency>
59                 <dependency>
60                         <groupId>org.springframework.boot</groupId>
61                         <artifactId>spring-boot-starter-web</artifactId>
62                         <version>1.4.1.RELEASE</version>
63                 </dependency>
64                 <dependency>
65                         <groupId>org.springframework</groupId>
66                         <artifactId>spring-webmvc</artifactId>
67                         <version>4.3.5.RELEASE</version>
68                 </dependency>
69                 <dependency>
70                         <groupId>org.springframework.boot</groupId>
71                         <artifactId>spring-boot-autoconfigure</artifactId>
72                         <version>1.4.1.RELEASE</version>
73                 </dependency>
74         <dependency>
75             <groupId>org.onap.sdc.dcae</groupId>
76             <artifactId>DCAE-DT-Catalog-API</artifactId>
77             <version>${project.version}</version>
78         </dependency>
79   </dependencies>
80 </project>