This repository was archived by the owner on Jun 25, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
135 lines (123 loc) · 4.85 KB
/
Copy pathpom.xml
File metadata and controls
135 lines (123 loc) · 4.85 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<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>
<!-- === Parent === -->
<parent>
<groupId>io.github.chrimle</groupId>
<artifactId>chrimle-oss-parent</artifactId>
<version>0.13.1</version>
</parent>
<!-- === Project Coordinates === -->
<artifactId>compact-java-cli</artifactId>
<version>0.1.0-alpha</version>
<packaging>jar</packaging>
<!-- === Project Metadata === -->
<name>Compact Java CLI</name>
<description>A compact Java CLI library, utilizing the latest and greatest from JDK25 (JEP 512)</description>
<url>https://chrimle.github.io/Compact-Java-CLI</url>
<inceptionYear>2025</inceptionYear>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>Compact Java CLI</name>
<url>https://chrimle.github.io/Compact-Java-CLI/</url>
</organization>
<developers>
<developer>
<id>Chrimle</id>
<name>Christopher Molin</name>
<url>https://www.chrimle.com</url>
<roles>
<role>Lead Developer</role>
</roles>
<timezone>CET</timezone>
</developer>
</developers>
<scm>
<url>http://github.com/chrimle/compact-java-cli/tree/main</url>
<connection>scm:git:git://github.com/chrimle/compact-java-cli.git</connection>
<developerConnection>scm:git:ssh://github.com:chrimle/compact-java-cli.git</developerConnection>
</scm>
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub Chrimle Apache Maven Packages</name>
<url>https://maven.pkg.github.com/chrimle/compact-java-cli</url>
</repository>
<snapshotRepository>
<id>github</id>
<name>GitHub Chrimle Apache Maven Snapshot Packages</name>
<url>https://maven.pkg.github.com/chrimle/compact-java-cli</url>
</snapshotRepository>
</distributionManagement>
<!-- === Project Properties === -->
<properties>
<!-- === Meta Properties === -->
<!-- === Maven Compiler === -->
<maven.compiler.release>25</maven.compiler.release>
<maven.compiler.source>25</maven.compiler.source>
<maven.compiler.target>25</maven.compiler.target>
<!-- === Spotless === -->
<spotless.check.skip>false</spotless.check.skip>
<spotless-maven-plugin.version>3.7.0</spotless-maven-plugin.version>
<!-- Publish to Maven Central Repository -->
<maven-javadoc-plugin.version>3.12.0</maven-javadoc-plugin.version>
<!-- === Dependency Versions === -->
</properties>
<!-- === Dependencies === -->
<dependencies/>
<!-- === Build Plugins === -->
<build>
<plugins>
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
<version>${spotless-maven-plugin.version}</version>
<configuration>
<!-- Skips the spotless:apply when running in GitHub Actions -->
<skip>${env.CI}</skip>
<java>
<lineEndings>UNIX</lineEndings>
<includes>
<include>src/main/**/*.java</include>
<include>src/test/**/*.java</include>
</includes>
<googleJavaFormat>
<style>GOOGLE</style>
</googleJavaFormat>
</java>
</configuration>
<executions>
<execution>
<goals>
<goal>apply</goal>
</goals>
<phase>validate</phase>
</execution>
</executions>
</plugin>
<!-- Attach javadoc.jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<!-- === Profiles === -->
<profiles/>
</project>