aboutsummaryrefslogtreecommitdiff
path: root/runners/maven-plugin/pom.template.xml
blob: 01ad60d268f2fdd15a0594adc37b5a63b1fb7802 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="1.0" encoding="UTF-8"?>
<!--
  ~ Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
  -->

<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>