Maven: Fix build for Maven 3.0.5

This commit is contained in:
Sergey Mashkov
2015-05-19 14:59:44 +03:00
parent 1edce76d01
commit 4ef745974e
+19 -2
View File
@@ -33,7 +33,7 @@
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.1</version>
<version>3.4</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
@@ -60,7 +60,24 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.1</version>
<version>3.4</version>
<executions>
<execution>
<id>default-descriptor</id>
<goals>
<goal>descriptor</goal>
</goals>
<phase>process-classes</phase>
</execution>
<execution>
<id>help-descriptor</id>
<goals>
<goal>helpmojo</goal>
</goals>
<phase>process-classes</phase>
</execution>
</executions>
</plugin>
</plugins>