blob: d1d5b8d6731bc833125df010434c697ad1a1804e [file] [log] [blame]
Yigit Boyar73473d52016-02-12 13:22:18 -08001<?xml version="1.0" encoding="UTF-8"?>
2<project
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5
6 <modelVersion>4.0.0</modelVersion>
7 <properties>
8 <maven-plugin-anno.version>1.4.1</maven-plugin-anno.version>
9 <maven.version>3.0.4</maven.version>
10 </properties>
11
12 <parent>
13 <groupId>org.jetbrains.kotlin</groupId>
14 <artifactId>kotlin-project</artifactId>
15 <version>1.0.0-rc-1036</version>
16 <relativePath>../../pom.xml</relativePath>
17 </parent>
18
19 <artifactId>kotlin-gradle-plugin-api</artifactId>
20 <packaging>jar</packaging>
21
22 <description>Gradle plugin API for Kotlin</description>
23
24 <repositories>
25 <repository>
26 <id>jetbrains-utils</id>
27 <url>http://repository.jetbrains.com/utils</url>
28 </repository>
29 </repositories>
30
31 <dependencies>
32 <dependency>
33 <groupId>org.jetbrains.kotlin</groupId>
34 <artifactId>kotlin-stdlib</artifactId>
35 <version>${project.version}</version>
36 </dependency>
37 <dependency>
38 <groupId>org.jetbrains.kotlin</groupId>
39 <artifactId>gradle-api</artifactId>
40 <version>1.6</version>
41 <scope>provided</scope>
42 </dependency>
43 <dependency>
44 <groupId>com.android.tools.build</groupId>
45 <artifactId>gradle</artifactId>
46 <version>0.4.2</version>
47 <scope>provided</scope>
48 </dependency>
49 </dependencies>
50
51 <build>
52 <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
53
54 <plugins>
55 <plugin>
56 <artifactId>kotlin-maven-plugin</artifactId>
57 <groupId>org.jetbrains.kotlin</groupId>
58 <version>${project.version}</version>
59
60 <executions>
61 <execution>
62 <id>compile</id>
63 <phase>compile</phase>
64 <goals> <goal>compile</goal> </goals>
65 </execution>
66
67 <execution>
68 <id>test-compile</id>
69 <phase>test-compile</phase>
70 <goals> <goal>test-compile</goal> </goals>
71 </execution>
72 </executions>
73 </plugin>
74 </plugins>
75 </build>
76</project>