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