Patch version increased (1.4.0 -> 1.4.1)
[dcaegen2/collectors/hv-ves.git] / build / hv-collector-analysis / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ ============LICENSE_START=======================================================
4   ~ dcaegen2-collectors-veshv
5   ~ ================================================================================
6   ~ Copyright (C) 2018 NOKIA
7   ~ ================================================================================
8   ~ Licensed under the Apache License, Version 2.0 (the "License");
9   ~ you may not use this file except in compliance with the License.
10   ~ You may obtain a copy of the License at
11   ~
12   ~      http://www.apache.org/licenses/LICENSE-2.0
13   ~
14   ~ Unless required by applicable law or agreed to in writing, software
15   ~ distributed under the License is distributed on an "AS IS" BASIS,
16   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17   ~ See the License for the specific language governing permissions and
18   ~ limitations under the License.
19   ~ ============LICENSE_END=========================================================
20   -->
21 <project xmlns="http://maven.apache.org/POM/4.0.0"
22         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24     <modelVersion>4.0.0</modelVersion>
25
26     <licenses>
27         <license>
28             <name>The Apache Software License, Version 2.0</name>
29             <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
30         </license>
31     </licenses>
32
33     <parent>
34         <groupId>org.onap.dcaegen2.collectors.hv-ves</groupId>
35         <artifactId>hv-collector-build</artifactId>
36         <version>1.4.1-SNAPSHOT</version>
37         <relativePath>..</relativePath>
38     </parent>
39
40     <artifactId>hv-collector-analysis</artifactId>
41     <description>VES HighVolume Collector :: Code analysis configuration</description>
42
43     <dependencies>
44         <dependency>
45             <groupId>io.gitlab.arturbosch.detekt</groupId>
46             <artifactId>detekt-api</artifactId>
47             <version>${detekt.version}</version>
48         </dependency>
49         <dependency>
50             <groupId>org.jetbrains.kotlin</groupId>
51             <artifactId>kotlin-stdlib-jdk8</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.jetbrains.kotlin</groupId>
55             <artifactId>kotlin-reflect</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.jetbrains.kotlin</groupId>
59             <artifactId>kotlin-compiler-embeddable</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.jetbrains.kotlin</groupId>
63             <artifactId>kotlin-scripting-compiler-embeddable</artifactId>
64             <scope>test</scope>
65         </dependency>
66
67         <dependency>
68             <groupId>org.jetbrains.kotlin</groupId>
69             <artifactId>kotlin-script-runtime</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.jetbrains.kotlin</groupId>
73             <artifactId>kotlin-script-util</artifactId>
74         </dependency>
75
76         <dependency>
77             <groupId>io.gitlab.arturbosch.detekt</groupId>
78             <artifactId>detekt-test</artifactId>
79             <version>${detekt.version}</version>
80             <scope>test</scope>
81         </dependency>
82         <dependency>
83             <groupId>org.jetbrains.spek</groupId>
84             <artifactId>spek-api</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>org.jetbrains.spek</groupId>
88             <artifactId>spek-junit-platform-engine</artifactId>
89         </dependency>
90         <dependency>
91             <groupId>org.jetbrains.kotlin</groupId>
92             <artifactId>kotlin-test</artifactId>
93         </dependency>
94         <dependency>
95             <groupId>org.assertj</groupId>
96             <artifactId>assertj-core</artifactId>
97         </dependency>
98     </dependencies>
99
100     <build>
101         <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
102         <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>
103         <plugins>
104             <plugin>
105                 <groupId>org.apache.maven.plugins</groupId>
106                 <artifactId>maven-deploy-plugin</artifactId>
107                 <configuration>
108                     <skip>true</skip>
109                 </configuration>
110             </plugin>
111
112             <plugin>
113                 <groupId>org.apache.maven.plugins</groupId>
114                 <artifactId>maven-resources-plugin</artifactId>
115                 <configuration>
116                     <encoding>UTF-8</encoding>
117                 </configuration>
118             </plugin>
119
120             <plugin>
121                 <artifactId>kotlin-maven-plugin</artifactId>
122                 <groupId>org.jetbrains.kotlin</groupId>
123                 <version>${kotlin.version}</version>
124                 <configuration>
125                     <jvmTarget>1.8</jvmTarget>
126                 </configuration>
127                 <executions>
128                     <execution>
129                         <id>compile</id>
130                         <goals>
131                             <goal>compile</goal>
132                         </goals>
133                         <configuration>
134                             <sourceDirs>
135                                 <source>${project.build.sourceDirectory}</source>
136                             </sourceDirs>
137                         </configuration>
138                     </execution>
139                     <execution>
140                         <id>test-compile</id>
141                         <goals>
142                             <goal>test-compile</goal>
143                         </goals>
144                         <configuration>
145                             <sourceDirs>
146                                 <source>${project.build.testSourceDirectory}</source>
147                             </sourceDirs>
148                         </configuration>
149                     </execution>
150                 </executions>
151             </plugin>
152         </plugins>
153     </build>
154 </project>