diff options
author | aSemy <897017+aSemy@users.noreply.github.com> | 2023-03-16 02:15:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-16 02:15:49 +0100 |
commit | 12e2a3c6b8bf1533148ddf29c77e73f5045754a6 (patch) | |
tree | f6072f01aa8e43da84fa65d79d87d720ff7220c7 /runners/maven-plugin/pom.template.xml | |
parent | 34c0f73afa9c950b0eaf7fc3fbffb8dd600ba35a (diff) | |
download | dokka-12e2a3c6b8bf1533148ddf29c77e73f5045754a6.tar.gz dokka-12e2a3c6b8bf1533148ddf29c77e73f5045754a6.tar.bz2 dokka-12e2a3c6b8bf1533148ddf29c77e73f5045754a6.zip |
Refactor Maven Runner build config (#2911)
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> |