|
18 | 18 | <properties>
|
19 | 19 | <objenesis>1.3</objenesis>
|
20 | 20 | <equalsverifier>1.5</equalsverifier>
|
| 21 | + <kotlin>1.1.2-3</kotlin> |
21 | 22 | </properties>
|
22 | 23 |
|
23 | 24 | <dependencies>
|
|
230 | 231 | <artifactId>spring-webmvc</artifactId>
|
231 | 232 | <scope>test</scope>
|
232 | 233 | </dependency>
|
| 234 | + <dependency> |
| 235 | + <groupId>org.jetbrains.kotlin</groupId> |
| 236 | + <artifactId>kotlin-stdlib-jre8</artifactId> |
| 237 | + <version>${kotlin}</version> |
| 238 | + <optional>true</optional> |
| 239 | + </dependency> |
| 240 | + <dependency> |
| 241 | + <groupId>org.jetbrains.kotlin</groupId> |
| 242 | + <artifactId>kotlin-reflect</artifactId> |
| 243 | + <version>${kotlin}</version> |
| 244 | + <optional>true</optional> |
| 245 | + </dependency> |
| 246 | + <dependency> |
| 247 | + <groupId>org.jetbrains.kotlin</groupId> |
| 248 | + <artifactId>kotlin-test</artifactId> |
| 249 | + <version>${kotlin}</version> |
| 250 | + <scope>test</scope> |
| 251 | + </dependency> |
| 252 | + <dependency> |
| 253 | + <groupId>com.nhaarman</groupId> |
| 254 | + <artifactId>mockito-kotlin</artifactId> |
| 255 | + <version>1.4.0</version> |
| 256 | + <scope>test</scope> |
| 257 | + </dependency> |
233 | 258 |
|
234 | 259 | </dependencies>
|
235 | 260 |
|
236 | 261 | <build>
|
237 | 262 | <plugins>
|
238 | 263 |
|
| 264 | + <plugin> |
| 265 | + <artifactId>kotlin-maven-plugin</artifactId> |
| 266 | + <groupId>org.jetbrains.kotlin</groupId> |
| 267 | + <version>${kotlin}</version> |
| 268 | + <configuration> |
| 269 | + <jvmTarget>1.8</jvmTarget> |
| 270 | + </configuration> |
| 271 | + <executions> |
| 272 | + <execution> |
| 273 | + <id>compile</id> |
| 274 | + <phase>compile</phase> |
| 275 | + <goals> <goal>compile</goal> </goals> |
| 276 | + <configuration> |
| 277 | + <sourceDirs> |
| 278 | + <sourceDir>${project.basedir}/src/main/kotlin</sourceDir> |
| 279 | + <sourceDir>${project.basedir}/src/main/java</sourceDir> |
| 280 | + </sourceDirs> |
| 281 | + </configuration> |
| 282 | + </execution> |
| 283 | + <execution> |
| 284 | + <id>test-compile</id> |
| 285 | + <phase>test-compile</phase> |
| 286 | + <goals> <goal>test-compile</goal> </goals> |
| 287 | + <configuration> |
| 288 | + <sourceDirs> |
| 289 | + <sourceDir>${project.basedir}/src/test/kotlin</sourceDir> |
| 290 | + <sourceDir>${project.basedir}/src/test/java</sourceDir> |
| 291 | + </sourceDirs> |
| 292 | + </configuration> |
| 293 | + </execution> |
| 294 | + </executions> |
| 295 | + </plugin> |
| 296 | + |
| 297 | + <plugin> |
| 298 | + <groupId>org.apache.maven.plugins</groupId> |
| 299 | + <artifactId>maven-compiler-plugin</artifactId> |
| 300 | + <executions> |
| 301 | + <execution> |
| 302 | + <id>default-compile</id> |
| 303 | + <phase>none</phase> |
| 304 | + </execution> |
| 305 | + <execution> |
| 306 | + <id>default-testCompile</id> |
| 307 | + <phase>none</phase> |
| 308 | + </execution> |
| 309 | + <execution> |
| 310 | + <id>java-compile</id> |
| 311 | + <phase>compile</phase> |
| 312 | + <goals> <goal>compile</goal> </goals> |
| 313 | + </execution> |
| 314 | + <execution> |
| 315 | + <id>java-test-compile</id> |
| 316 | + <phase>test-compile</phase> |
| 317 | + <goals> <goal>testCompile</goal> </goals> |
| 318 | + </execution> |
| 319 | + </executions> |
| 320 | + </plugin> |
| 321 | + |
239 | 322 | <plugin>
|
240 | 323 | <groupId>com.mysema.maven</groupId>
|
241 | 324 | <artifactId>apt-maven-plugin</artifactId>
|
|
0 commit comments