|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + |
| 6 | + <parent> |
| 7 | + <groupId>io.cucumber</groupId> |
| 8 | + <artifactId>cucumber-jvm</artifactId> |
| 9 | + <relativePath>../pom.xml</relativePath> |
| 10 | + <version>2.0.0-SNAPSHOT</version> |
| 11 | + </parent> |
| 12 | + |
| 13 | + <artifactId>cucumber-kotlin-java8</artifactId> |
| 14 | + <packaging>jar</packaging> |
| 15 | + <name>Cucumber-JVM: Kotlin Java8</name> |
| 16 | + |
| 17 | + <properties> |
| 18 | + <kotlin.version>1.1.2-2</kotlin.version> |
| 19 | + </properties> |
| 20 | + |
| 21 | + <dependencies> |
| 22 | + <dependency> |
| 23 | + <groupId>io.cucumber</groupId> |
| 24 | + <artifactId>cucumber-java8</artifactId> |
| 25 | + </dependency> |
| 26 | + <dependency> |
| 27 | + <groupId>io.cucumber</groupId> |
| 28 | + <artifactId>cucumber-junit</artifactId> |
| 29 | + <scope>test</scope> |
| 30 | + </dependency> |
| 31 | + <dependency> |
| 32 | + <groupId>junit</groupId> |
| 33 | + <artifactId>junit</artifactId> |
| 34 | + <scope>test</scope> |
| 35 | + </dependency> |
| 36 | + <dependency> |
| 37 | + <groupId>net.sourceforge.cobertura</groupId> |
| 38 | + <artifactId>cobertura</artifactId> |
| 39 | + <scope>test</scope> |
| 40 | + </dependency> |
| 41 | + <dependency> |
| 42 | + <groupId>org.jetbrains.kotlin</groupId> |
| 43 | + <artifactId>kotlin-stdlib</artifactId> |
| 44 | + <version>${kotlin.version}</version> |
| 45 | + <scope>test</scope> |
| 46 | + </dependency> |
| 47 | + </dependencies> |
| 48 | + |
| 49 | + <build> |
| 50 | + <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory> |
| 51 | + <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory> |
| 52 | + <plugins> |
| 53 | + <plugin> |
| 54 | + <artifactId>kotlin-maven-plugin</artifactId> |
| 55 | + <groupId>org.jetbrains.kotlin</groupId> |
| 56 | + <version>${kotlin.version}</version> |
| 57 | + <executions> |
| 58 | + <execution> |
| 59 | + <id>compile</id> |
| 60 | + <goals> |
| 61 | + <goal>compile</goal> |
| 62 | + </goals> |
| 63 | + </execution> |
| 64 | + <execution> |
| 65 | + <id>test-compile</id> |
| 66 | + <goals> |
| 67 | + <goal>test-compile</goal> |
| 68 | + </goals> |
| 69 | + </execution> |
| 70 | + </executions> |
| 71 | + </plugin> |
| 72 | + <plugin> |
| 73 | + <artifactId>maven-jar-plugin</artifactId> |
| 74 | + <configuration> |
| 75 | + <skip>true</skip> |
| 76 | + </configuration> |
| 77 | + </plugin> |
| 78 | + <plugin> |
| 79 | + <artifactId>maven-install-plugin</artifactId> |
| 80 | + <configuration> |
| 81 | + <skip>true</skip> |
| 82 | + </configuration> |
| 83 | + </plugin> |
| 84 | + <plugin> |
| 85 | + <artifactId>maven-deploy-plugin</artifactId> |
| 86 | + <configuration> |
| 87 | + <skip>true</skip> |
| 88 | + </configuration> |
| 89 | + </plugin> |
| 90 | + </plugins> |
| 91 | + </build> |
| 92 | + |
| 93 | +</project> |
0 commit comments