diff options
Diffstat (limited to 'runners/maven-plugin/pom.template.xml')
-rw-r--r-- | runners/maven-plugin/pom.template.xml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/runners/maven-plugin/pom.template.xml b/runners/maven-plugin/pom.template.xml new file mode 100644 index 00000000..97db90ee --- /dev/null +++ b/runners/maven-plugin/pom.template.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <groupId>org.jetbrains.dokka</groupId> + <artifactId>dokka-maven-plugin</artifactId> + <version>${dokka_version}</version> + <packaging>maven-plugin</packaging> + <properties> + <maven.version>${mavenVersion}</maven.version> + </properties> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-plugin-plugin</artifactId> + <version>${mavenPluginToolsVersion}</version> + <configuration> + <helpPackageName>org.jetbrains.dokka.maven</helpPackageName> + </configuration> + </plugin> + </plugins> + <directory>./</directory> + <outputDirectory>./classes/java/main</outputDirectory> + </build> +</project> |