-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
105 lines (96 loc) · 3.88 KB
/
pom.xml
File metadata and controls
105 lines (96 loc) · 3.88 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
<?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>dev.greenadine</groupId>
<artifactId>checks-parent</artifactId>
<version>1.0.0</version>
<name>Checks</name>
<packaging>pom</packaging>
<developers>
<developer>
<name>Greenadine</name>
<email>contact@greenadine.dev</email>
<url>https://greenadine.dev</url>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>
<distributionManagement>
<repository>
<id>greenadine-releases</id>
<url>https://repo.greenadine.dev/releases/</url>
</repository>
<snapshotRepository>
<id>greenadine-snapshots</id>
<url>https://repo.greenadine.dev/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<dependencies>
<!-- JetBrains Annotations -->
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>26.0.2</version>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<!-- License -->
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>4.6</version>
<configuration>
<properties>
<year>2025</year>
<owner>Greenadine</owner>
<website>greenadine.dev</website>
</properties>
<licenseSets>
<licenseSet>
<header>LICENSE_HEADER.txt</header>
<includes>
<include>**/src/main/**/*.java</include>
</includes>
</licenseSet>
</licenseSets>
</configuration>
</plugin>
<!-- Javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.2</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<show>public</show>
<windowtitle>${project.name} Javadocs</windowtitle>
<doctitle>${project.name} &ndash; Version ${project.parent.version}</doctitle>
<bottom><![CDATA[Copyright © 2025 Greenadine, licensed under the <a href="https://www.apache.org/licenses/LICENSE-2.0.txt">Apache License, Version 2.0</a>.]]></bottom>
<stylesheetfile>stylesheet.css</stylesheetfile>
<charset>UTF-8</charset>
<encoding>UTF-8</encoding>
<docencoding>UTF-8</docencoding>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<modules>
<module>21</module>
<module>11</module>
</modules>
</project>