From 549ef194efc7a3eee948eac2da4ac36c2e47a6a1 Mon Sep 17 00:00:00 2001 From: Sergey Mashkov Date: Fri, 10 Jul 2015 15:10:36 +0300 Subject: Maven plugin initial implementation --- maven-plugin/pom.xml | 149 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 149 insertions(+) create mode 100644 maven-plugin/pom.xml (limited to 'maven-plugin/pom.xml') diff --git a/maven-plugin/pom.xml b/maven-plugin/pom.xml new file mode 100644 index 00000000..de7a5595 --- /dev/null +++ b/maven-plugin/pom.xml @@ -0,0 +1,149 @@ + + + 4.0.0 + + org.jetbrains.dokka + dokka-maven-plugin + 0.0.1-SNAPSHOT + maven-plugin + + + 1.4.1 + 3.0.5 + 3.0.22 + 0.1-SNAPSHOT + + + + + org.apache.maven + maven-core + ${maven.version} + + + org.apache.maven + maven-model + ${maven.version} + + + org.apache.maven + maven-plugin-api + ${maven.version} + + + org.codehaus.plexus + plexus-utils + ${plexus.version} + + + org.apache.maven.plugin-tools + maven-plugin-annotations + 3.4 + + + + org.jetbrains.dokka + dokka-fatjar + 1.0 + jar + compile + + + + + + my-local-repo + file://${basedir}/../out/repo + + + + + src/main/kotlin + + + + org.jetbrains.kotlin + kotlin-maven-plugin + ${kotlin.version} + + + compile + compile + + compile + + + + test-compile + test-compile + + test-compile + + + + + + org.apache.maven.plugins + maven-plugin-plugin + 3.4 + + + + default-descriptor + + descriptor + + process-classes + + + help-descriptor + + helpmojo + + process-classes + + + + + dokka + + + + + + maven-jar-plugin + 2.6 + + + default-jar + none + + + + + + org.apache.maven.plugins + maven-assembly-plugin + 2.5.5 + + + jar-with-dependencies + + false + + + + make-assembly + package + + single + + + + + + + + \ No newline at end of file -- cgit