blob: 7a9df37c2ac1134e63eeb6672ebc5a211e51a063 [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.version>3.0.4</maven.version>
9 </properties>
10
11 <parent>
12 <groupId>org.jetbrains.kotlin</groupId>
13 <artifactId>kotlin-project</artifactId>
14 <version>1.0.0-rc-1036</version>
15 <relativePath>../../pom.xml</relativePath>
16 </parent>
17
18 <artifactId>kotlin-annotation-processing</artifactId>
19 <packaging>jar</packaging>
20
21 <description>Annotation Processor wrapper for Kotlin</description>
22
23 <repositories>
24 <repository>
25 <id>jetbrains-utils</id>
26 <url>http://repository.jetbrains.com/utils</url>
27 </repository>
28 </repositories>
29
30 <dependencies>
31 <dependency>
32 <groupId>org.jetbrains.kotlin</groupId>
33 <artifactId>kotlin-stdlib</artifactId>
34 <version>${project.version}</version>
35 </dependency>
36 <dependency>
37 <groupId>org.jetbrains.kotlin</groupId>
38 <artifactId>gradle-api</artifactId>
39 <version>1.6</version>
40 <scope>provided</scope>
41 </dependency>
42 <dependency>
43 <groupId>com.android.tools.build</groupId>
44 <artifactId>gradle</artifactId>
45 <version>1.1.0</version>
46 <scope>provided</scope>
47 </dependency>
48 </dependencies>
49
50 <build>
51 <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
52 <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>
53
54 <plugins>
55 <plugin>
56 <artifactId>kotlin-maven-plugin</artifactId>
57 <groupId>org.jetbrains.kotlin</groupId>
58 <version>${project.version}</version>
59 <configuration>
60 <annotationPaths>
61 <annotationPath>${basedir}/kotlinAnnotation</annotationPath>
62 </annotationPaths>
63 </configuration>
64
65 <executions>
66 <execution>
67 <id>compile</id>
68 <phase>compile</phase>
69 <goals> <goal>compile</goal> </goals>
70 </execution>
71
72 <execution>
73 <id>test-compile</id>
74 <phase>test-compile</phase>
75 <goals> <goal>test-compile</goal> </goals>
76 </execution>
77 </executions>
78 </plugin>
79 <plugin>
80 <artifactId>maven-failsafe-plugin</artifactId>
81 <version>2.6</version>
82 <executions>
83 <execution>
84 <goals>
85 <goal>integration-test</goal>
86 <goal>verify</goal>
87 </goals>
88 </execution>
89 </executions>
90 </plugin>
91 </plugins>
92 </build>
93</project>