155 lines
5.9 KiB
XML
155 lines
5.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" 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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>kotlin-quasar</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
<name>kotlin-quasar</name>
|
|
<packaging>jar</packaging>
|
|
|
|
<parent>
|
|
<groupId>com.baeldung</groupId>
|
|
<artifactId>parent-modules</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
|
<version>${kotlin.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
<artifactId>kotlin-test</artifactId>
|
|
<version>${kotlin.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>co.paralleluniverse</groupId>
|
|
<artifactId>quasar-core</artifactId>
|
|
<version>${quasar.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>co.paralleluniverse</groupId>
|
|
<artifactId>quasar-actors</artifactId>
|
|
<version>${quasar.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>co.paralleluniverse</groupId>
|
|
<artifactId>quasar-reactive-streams</artifactId>
|
|
<version>${quasar.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>co.paralleluniverse</groupId>
|
|
<artifactId>quasar-kotlin</artifactId>
|
|
<version>${quasar.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>${junit.version}</version>
|
|
</dependency>
|
|
<!-- logging -->
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>${org.slf4j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
<version>${logback.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-core</artifactId>
|
|
<version>${logback.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
<version>${org.slf4j.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<sourceDirectory>src/main/kotlin</sourceDirectory>
|
|
<testSourceDirectory>src/test/kotlin</testSourceDirectory>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
<artifactId>kotlin-maven-plugin</artifactId>
|
|
<version>${kotlin.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<id>compile</id>
|
|
<phase>compile</phase>
|
|
<goals>
|
|
<goal>compile</goal>
|
|
</goals>
|
|
</execution>
|
|
<execution>
|
|
<id>test-compile</id>
|
|
<phase>test-compile</phase>
|
|
<goals>
|
|
<goal>test-compile</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<jvmTarget>1.8</jvmTarget>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<version>${dependency.plugin.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<id>getClasspathFilenames</id>
|
|
<goals>
|
|
<goal>properties</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>${surefire.plugin.version}</version>
|
|
<configuration>
|
|
<argLine>-Dco.paralleluniverse.fibers.verifyInstrumentation=true</argLine>
|
|
<argLine>-javaagent:${co.paralleluniverse:quasar-core:jar}</argLine>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<version>${exec.plugin.version}</version>
|
|
<configuration>
|
|
<workingDirectory>target/classes</workingDirectory>
|
|
<executable>echo</executable>
|
|
<arguments>
|
|
<argument>-javaagent:${co.paralleluniverse:quasar-core:jar}</argument>
|
|
<argument>-classpath</argument>
|
|
<classpath/>
|
|
<argument>com.baeldung.quasar.QuasarHelloWorldKt</argument>
|
|
</arguments>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<properties>
|
|
<quasar.version>0.8.0</quasar.version>
|
|
<kotlin.version>1.3.31</kotlin.version>
|
|
<org.slf4j.version>1.7.21</org.slf4j.version>
|
|
<logback.version>1.1.7</logback.version>
|
|
<dependency.plugin.version>3.1.1</dependency.plugin.version>
|
|
<surefire.plugin.version>2.22.1</surefire.plugin.version>
|
|
<exec.plugin.version>1.3.2</exec.plugin.version>
|
|
<junit.version>4.12</junit.version>
|
|
</properties>
|
|
|
|
</project>
|