-
Notifications
You must be signed in to change notification settings - Fork 17
/
pom.xml
116 lines (108 loc) · 4.77 KB
/
pom.xml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?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>de.metaphoriker</groupId>
<artifactId>pathetic-main</artifactId>
<packaging>pom</packaging>
<version>4.0</version>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<modules>
<module>pathetic-api</module>
<module>pathetic-bukkit</module>
<module>pathetic-bukkit/pathetic-example</module>
<module>pathetic-engine</module>
<module>pathetic-bukkit/pathetic-provider</module>
<module>pathetic-bukkit/pathetic-provider/paper</module>
<module>pathetic-bukkit/pathetic-provider/spigot</module>
<module>pathetic-bukkit/pathetic-provider/spigot/v1_8</module>
<module>pathetic-bukkit/pathetic-provider/spigot/v1_12</module>
<module>pathetic-bukkit/pathetic-provider/spigot/v1_15</module>
<module>pathetic-bukkit/pathetic-provider/spigot/v1_16</module>
<module>pathetic-bukkit/pathetic-provider/spigot/v1_17</module>
<module>pathetic-bukkit/pathetic-provider/spigot/v1_18</module>
<module>pathetic-bukkit/pathetic-provider/spigot/v1_18_R2</module>
<module>pathetic-bukkit/pathetic-provider/spigot/v1_19_R2</module>
<module>pathetic-bukkit/pathetic-provider/spigot/v1_19_R3</module>
<module>pathetic-bukkit/pathetic-provider/spigot/v1_20_R1</module>
<module>pathetic-bukkit/pathetic-provider/spigot/v1_20_R2</module>
<module>pathetic-bukkit/pathetic-provider/spigot/v1_20_R3</module>
<module>pathetic-bukkit/pathetic-provider/spigot/v1_20_R4</module>
<module>pathetic-bukkit/pathetic-provider/spigot/v1_21_R1</module>
<module>pathetic-bukkit/pathetic-provider/spigot/v1_21_R2</module>
<module>pathetic-bukkit/pathetic-provider/spigot/v1_21_R3</module>
<module>pathetic-bukkit/pathetic-provider/resolver</module>
</modules>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.2</version>
<configuration>
<reportOutputDirectory>${project.reporting.outputDirectory}/myoutput</reportOutputDirectory>
<destDir>myapidocs</destDir>
</configuration>
</plugin>
</plugins>
</reporting>
<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
</repositories>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>de.metaphoriker</groupId>
<artifactId>pathetic-api</artifactId>
<version>4.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<finalName>${project.name}</finalName>
<defaultGoal>javadoc:javadoc</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.2</version>
<configuration>
<source>8</source>
<reportOutputDirectory>../</reportOutputDirectory>
<destDir>javadoc</destDir>
<tags>
<tag>
<name>api.Note</name>
<placement>a</placement>
<head>API Note:</head>
</tag>
<tag>
<name>experimental</name>
<placement>a</placement>
<head>Experimental:</head>
</tag>
<tag>
<name>default</name>
<placement>a</placement>
<head>Default:</head>
</tag>
<tag>
<name>depending</name>
<placement>a</placement>
<head>Depends on:</head>
</tag>
</tags>
</configuration>
</plugin>
</plugins>
</build>
</project>