-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
118 lines (109 loc) · 4.34 KB
/
pom.xml
File metadata and controls
118 lines (109 loc) · 4.34 KB
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
117
118
<?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>eu.okaeri</groupId>
<artifactId>okaeri-platform</artifactId>
<packaging>pom</packaging>
<version>0.4.51</version>
<modules>
<module>core</module>
<!-- minecraft -->
<module>minecraft</module>
<module>bukkit</module>
<module>bungee</module>
<module>velocity</module>
<!-- standalone -->
<module>standalone</module>
<module>web</module>
<module>cli</module>
<!-- extensions -->
<module>ext-scheduler-quartz</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<library.okaeri-commands.version>0.9.16</library.okaeri-commands.version>
<library.okaeri-configs.version>6.0.0-beta.26</library.okaeri-configs.version>
<library.okaeri-i18n.version>5.1.2</library.okaeri-i18n.version>
<library.okaeri-commons.version>0.2.28</library.okaeri-commons.version>
<library.okaeri-injector.version>2.1.0</library.okaeri-injector.version>
<library.okaeri-validator.version>2.0.5</library.okaeri-validator.version>
<library.okaeri-placeholders.version>5.1.2</library.okaeri-placeholders.version>
<library.okaeri-persistence.version>3.0.1-beta.18</library.okaeri-persistence.version>
<library.okaeri-tasker.version>3.0.3-beta.2</library.okaeri-tasker.version>
<library.okaeri-acl.version>0.1.4</library.okaeri-acl.version>
</properties>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.38</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.3</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.14.0</version>
<configuration>
<compilerArgs>
<arg>-parameters</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.2</version>
<configuration>
<doclint>all,-missing</doclint>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
<repositories>
<repository>
<id>okaeri-releases</id>
<url>https://repo.okaeri.cloud/releases</url>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>okaeri-releases</id>
<url>https://repo.okaeri.cloud/releases</url>
</repository>
<snapshotRepository>
<id>okaeri-snapshots</id>
<url>https://repo.okaeri.cloud/snapshots</url>
</snapshotRepository>
</distributionManagement>
</project>