2017-01-02 05:51:12 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2017-05-12 14:32:54 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2017-06-30 05:42:22 -04:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2017-01-02 05:51:12 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>kotlin</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
2017-05-09 16:37:43 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2017-05-12 14:32:54 -04:00
|
|
|
</parent>
|
|
|
|
|
2017-06-30 05:42:22 -04:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>central</id>
|
|
|
|
<url>http://jcenter.bintray.com</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
2017-01-02 05:51:12 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
|
|
<artifactId>kotlin-stdlib</artifactId>
|
2017-01-17 03:54:51 -05:00
|
|
|
<version>${kotlin-stdlib.version}</version>
|
2017-01-02 05:51:12 -05:00
|
|
|
</dependency>
|
2017-01-02 08:48:05 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
|
|
<artifactId>kotlin-test-junit</artifactId>
|
2017-01-17 03:54:51 -05:00
|
|
|
<version>${kotlin-test-junit.version}</version>
|
2017-01-02 08:48:05 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-04-25 03:50:02 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
|
|
<artifactId>kotlin-reflect</artifactId>
|
|
|
|
<version>${kotlin-reflect.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-06-30 05:42:22 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains.kotlinx</groupId>
|
|
|
|
<artifactId>kotlinx-coroutines-core</artifactId>
|
|
|
|
<version>${kotlinx.version}</version>
|
|
|
|
</dependency>
|
2017-07-02 01:08:10 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.nhaarman</groupId>
|
|
|
|
<artifactId>mockito-kotlin</artifactId>
|
|
|
|
<version>${mockito-kotlin.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-01-02 05:51:12 -05:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>kotlin-maven-plugin</artifactId>
|
|
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
2017-01-17 03:54:51 -05:00
|
|
|
<version>${kotlin-maven-plugin.version}</version>
|
2017-01-02 05:51:12 -05:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2017-01-29 09:29:55 -05:00
|
|
|
<id>compile</id>
|
2017-05-12 14:32:54 -04:00
|
|
|
<goals>
|
|
|
|
<goal>compile</goal>
|
|
|
|
</goals>
|
2017-01-27 09:11:34 -05:00
|
|
|
<configuration>
|
|
|
|
<sourceDirs>
|
2017-01-29 09:29:55 -05:00
|
|
|
<sourceDir>${project.basedir}/src/main/kotlin</sourceDir>
|
|
|
|
<sourceDir>${project.basedir}/src/main/java</sourceDir>
|
2017-01-27 09:11:34 -05:00
|
|
|
</sourceDirs>
|
|
|
|
</configuration>
|
2017-01-02 05:51:12 -05:00
|
|
|
</execution>
|
|
|
|
<execution>
|
2017-01-29 09:29:55 -05:00
|
|
|
<id>test-compile</id>
|
2017-05-12 14:32:54 -04:00
|
|
|
<goals>
|
|
|
|
<goal>test-compile</goal>
|
|
|
|
</goals>
|
2017-01-27 09:11:34 -05:00
|
|
|
<configuration>
|
|
|
|
<sourceDirs>
|
2017-01-29 09:29:55 -05:00
|
|
|
<sourceDir>${project.basedir}/src/test/kotlin</sourceDir>
|
|
|
|
<sourceDir>${project.basedir}/src/test/java</sourceDir>
|
2017-01-27 09:11:34 -05:00
|
|
|
</sourceDirs>
|
|
|
|
</configuration>
|
2017-01-29 09:29:55 -05:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.5.1</version>
|
|
|
|
<executions>
|
2017-05-12 14:32:54 -04:00
|
|
|
<!-- Replacing default-compile as it is treated specially
|
|
|
|
by maven -->
|
2017-01-29 09:29:55 -05:00
|
|
|
<execution>
|
|
|
|
<id>default-compile</id>
|
|
|
|
<phase>none</phase>
|
|
|
|
</execution>
|
2017-05-12 14:32:54 -04:00
|
|
|
<!-- Replacing default-testCompile as it is treated specially
|
|
|
|
by maven -->
|
2017-01-29 09:29:55 -05:00
|
|
|
<execution>
|
|
|
|
<id>default-testCompile</id>
|
|
|
|
<phase>none</phase>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>java-compile</id>
|
|
|
|
<phase>compile</phase>
|
2017-05-12 14:32:54 -04:00
|
|
|
<goals>
|
|
|
|
<goal>compile</goal>
|
|
|
|
</goals>
|
2017-01-29 09:29:55 -05:00
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>java-test-compile</id>
|
|
|
|
<phase>test-compile</phase>
|
2017-05-12 14:32:54 -04:00
|
|
|
<goals>
|
|
|
|
<goal>testCompile</goal>
|
|
|
|
</goals>
|
2017-01-02 05:51:12 -05:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2017-01-17 03:54:51 -05:00
|
|
|
<properties>
|
2017-06-30 05:42:22 -04:00
|
|
|
<kotlin-maven-plugin.version>1.1.2</kotlin-maven-plugin.version>
|
|
|
|
<kotlin-test-junit.version>1.1.2</kotlin-test-junit.version>
|
|
|
|
<kotlin-stdlib.version>1.1.2</kotlin-stdlib.version>
|
|
|
|
<kotlin-reflect.version>1.1.2</kotlin-reflect.version>
|
|
|
|
<kotlinx.version>0.15</kotlinx.version>
|
2017-07-02 01:08:10 -04:00
|
|
|
<mockito-kotlin.version>1.5.0</mockito-kotlin.version>
|
2017-01-17 03:54:51 -05:00
|
|
|
</properties>
|
|
|
|
|
2017-01-02 05:51:12 -05:00
|
|
|
</project>
|