security check issues
[sdc/dcae-d/dt-be-main.git] / dcaedt_validator / checker / 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-Validator</artifactId>
7                 <version>1.3.0-SNAPSHOT</version>
8         </parent>
9         <artifactId>DCAE-DT-Validator-Checker</artifactId>
10         <packaging>jar</packaging>
11         <name>DCAE DT Validator Checker</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.codehaus.mojo</groupId>
46                                 <artifactId>buildnumber-maven-plugin</artifactId>
47                                 <version>1.4</version>
48                                 <executions>
49                                         <execution>
50                                                 <phase>validate</phase>
51                                                 <goals>
52                                                         <goal>create</goal>
53                                                 </goals>
54                                         </execution>
55                                 </executions>
56                                 <configuration>
57                                         <doCheck>false</doCheck>
58                                         <doUpdate>false</doUpdate>
59                                 </configuration>
60                         </plugin>
61                         <plugin>
62                                 <groupId>org.apache.maven.plugins</groupId>
63                                 <artifactId>maven-jar-plugin</artifactId>
64                                 <version>2.1</version>
65                                 <configuration>
66                                         <archive>
67                                                 <manifest>
68                                                         <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
69                                                 </manifest>
70                                                 <manifestEntries>
71                                                         <Implementation-Build>${buildNumber}</Implementation-Build>
72                                                 </manifestEntries>
73                                         </archive>
74                                 </configuration>
75                         </plugin>
76                         <plugin>
77                                 <groupId>org.apache.maven.plugins</groupId>
78                                 <artifactId>maven-assembly-plugin</artifactId>
79                                 <version>2.6</version>
80                                 <executions>
81                                         <execution>
82                                                 <id>make-assembly</id>
83                                                 <!-- this is used for inheritance merges -->
84                                                 <phase>package</phase>
85                                                 <!-- bind to the packaging phase -->
86                                                 <goals>
87                                                         <goal>single</goal>
88                                                 </goals>
89                                                 <configuration>
90                                                         <!--<archive>-->
91                                                         <!--<manifest>-->
92                                                         <!--<mainClass>org.onap.sdc.dcae.checker.Checker</mainClass>-->
93                                                         <!--</manifest>-->
94                                                         <!--</archive>-->
95                                                         <descriptorRefs>
96                                                                 <descriptorRef>jar-with-dependencies</descriptorRef>
97                                                         </descriptorRefs>
98                                                 </configuration>
99                                         </execution>
100                                 </executions>
101                         </plugin>
102                 </plugins>
103         </build>
104         <dependencies>
105                 <dependency>
106                         <groupId>commons-io</groupId>
107                         <artifactId>commons-io</artifactId>
108                         <version>2.4</version>
109                 </dependency>
110                 <dependency>
111                         <groupId>commons-cli</groupId>
112                         <artifactId>commons-cli</artifactId>
113                         <version>1.3</version>
114                 </dependency>
115                 <dependency>
116                         <groupId>commons-jxpath</groupId>
117                         <artifactId>commons-jxpath</artifactId>
118                         <version>1.3</version>
119                 </dependency>
120                 <dependency>
121                         <groupId>commons-lang</groupId>
122                         <artifactId>commons-lang</artifactId>
123                         <version>2.6</version>
124                 </dependency>
125                 <dependency>
126                         <groupId>com.google.guava</groupId>
127                         <artifactId>guava</artifactId>
128                         <version>17.0</version>
129                 </dependency>
130                 <dependency>
131                         <groupId>org.yaml</groupId>
132                         <artifactId>snakeyaml</artifactId>
133                         <version>1.17</version>
134                 </dependency>
135                 <dependency>
136                         <groupId>com.fasterxml.jackson.core</groupId>
137                         <artifactId>jackson-core</artifactId>
138                         <version>2.7.6</version>
139                 </dependency>
140                 <dependency>
141                         <groupId>com.fasterxml.jackson.core</groupId>
142                         <artifactId>jackson-databind</artifactId>
143                         <version>2.7.8</version>
144                 </dependency>
145                 <dependency>
146                         <groupId>org.reflections</groupId>
147                         <artifactId>reflections</artifactId>
148                         <version>0.9.11</version>
149                 </dependency>
150                 <dependency>
151                         <groupId>org.onap.sdc.dcae-d.dt-be-main</groupId>
152                         <artifactId>kwalify</artifactId>
153                         <version>${project.version}</version>
154                 </dependency>
155         </dependencies>
156 </project>