security check issues
[sdc/dcae-d/dt-be-main.git] / dcaedt_catalog / asdc / 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         <parent>
5                 <groupId>org.onap.sdc.dcae-d.dt-be-main</groupId>
6                 <artifactId>DCAE-DT-Catalog</artifactId>
7                 <version>1.3.0-SNAPSHOT</version>
8         </parent>
9         <artifactId>DCAE-DT-Catalog-ASDC</artifactId>
10         <packaging>jar</packaging>
11         <name>DCAE DT ASDC</name>
12         <build>
13                 <sourceDirectory>src/main/java</sourceDirectory>
14                 <plugins>
15                         <plugin>
16                                 <artifactId>maven-compiler-plugin</artifactId>
17                                 <version>3.1</version>
18                                 <configuration>
19                                         <source>1.8</source>
20                                         <target>1.8</target>
21                                         <encoding>${project.build.sourceEncoding}</encoding>
22                                 </configuration>
23                         </plugin>
24                         <plugin>
25                                 <groupId>org.apache.maven.plugins</groupId>
26                                 <artifactId>maven-dependency-plugin</artifactId>
27                                 <version>2.10</version>
28                                 <executions>
29                                         <execution>
30                                                 <id>copy-dependencies</id>
31                                                 <phase>package</phase>
32                                                 <goals>
33                                                         <goal>copy-dependencies</goal>
34                                                 </goals>
35                                                 <configuration>
36                                                         <outputDirectory>${project.build.directory}/deps</outputDirectory>
37                                                         <overWriteReleases>false</overWriteReleases>
38                                                         <overWriteSnapshots>false</overWriteSnapshots>
39                                                         <overWriteIfNewer>true</overWriteIfNewer>
40                                                 </configuration>
41                                         </execution>
42                                 </executions>
43                         </plugin>
44                         <plugin>
45                                 <groupId>org.springframework.boot</groupId>
46                                 <artifactId>spring-boot-maven-plugin</artifactId>
47                                 <version>1.3.3.RELEASE</version>
48                                 <configuration>
49                                         <mainClass>org.onap.sdc.dcae.catalog.asdc.ASDCEngine</mainClass>
50                                 </configuration>
51                                 <executions>
52                                         <execution>
53                                                 <goals>
54                                                         <goal>repackage</goal>
55                                                 </goals>
56                                         </execution>
57                                 </executions>
58                         </plugin>
59                 </plugins>
60         </build>
61         <dependencies>
62                 <dependency>
63                         <groupId>junit</groupId>
64                         <artifactId>junit</artifactId>
65                         <version>3.8.1</version>
66                         <scope>test</scope>
67                 </dependency>
68                 <dependency>
69                         <groupId>org.springframework</groupId>
70                         <artifactId>spring-core</artifactId>
71                         <version>5.0.9.RELEASE</version>
72                 </dependency>
73                 <dependency>
74                         <groupId>org.springframework</groupId>
75                         <artifactId>spring-web</artifactId>
76                         <version>4.3.17.RELEASE</version>
77                 </dependency>
78                 <dependency>
79                         <groupId>org.springframework.boot</groupId>
80                         <artifactId>spring-boot-starter-web</artifactId>
81                         <version>1.4.1.RELEASE</version>
82                 </dependency>
83                 <dependency>
84                         <groupId>org.springframework</groupId>
85                         <artifactId>spring-webmvc</artifactId>
86                         <version>4.3.17.RELEASE</version>
87                 </dependency>
88                 <dependency>
89                         <groupId>org.springframework.boot</groupId>
90                         <artifactId>spring-boot-autoconfigure</artifactId>
91                         <version>1.4.1.RELEASE</version>
92                 </dependency>
93                 <dependency>
94                         <groupId>org.apache.commons</groupId>
95                         <artifactId>commons-lang3</artifactId>
96                         <version>3.5</version>
97                 </dependency>
98                 <dependency>
99                         <groupId>commons-cli</groupId>
100                         <artifactId>commons-cli</artifactId>
101                         <version>1.3</version>
102                 </dependency>
103                 <dependency>
104                         <groupId>org.onap.sdc.dcae-d.dt-be-main</groupId>
105                         <artifactId>DCAE-DT-Catalog-Commons</artifactId>
106                         <version>${project.version}</version>
107                 </dependency>
108                 <dependency>
109                         <groupId>org.onap.sdc.dcae-d.dt-be-main</groupId>
110                         <artifactId>DCAE-DT-Validator-Checker</artifactId>
111                         <version>${project.version}</version>
112                 </dependency>
113                 <dependency>
114                         <groupId>com.google.code.gson</groupId>
115                         <artifactId>gson</artifactId>
116                         <version>2.7</version>
117                 </dependency>
118                 <dependency>
119                         <groupId>junit</groupId>
120                         <artifactId>junit</artifactId>
121                         <scope>test</scope>
122                 </dependency>
123                 <dependency>
124                         <groupId>org.assertj</groupId>
125                         <artifactId>assertj-core</artifactId>
126                         <scope>test</scope>
127                 </dependency>
128                 <dependency>
129                         <groupId>org.mockito</groupId>
130                         <artifactId>mockito-core</artifactId>
131                         <scope>test</scope>
132                 </dependency>
133         </dependencies>
134 </project>