-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
58 lines (50 loc) · 2.11 KB
/
Copy pathpom.xml
File metadata and controls
58 lines (50 loc) · 2.11 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
<?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>
<parent>
<artifactId>parent</artifactId>
<groupId>io.github.finoid</groupId>
<version>0.12.0</version>
</parent>
<groupId>io.github.finoid</groupId>
<artifactId>code-style</artifactId>
<version>main</version>
<name>finoid-code-style</name>
<description>A library that enforces the organization's code style using Checkstyle for consistent
formatting across projects.
</description>
<properties>
<java.version>17</java.version>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.release>17</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<central-publishing-maven-plugin.version>0.7.0</central-publishing-maven-plugin.version>
<maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version>
<maven-javadoc-plugin.version>3.7.0</maven-javadoc-plugin.version>
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
</properties>
<developers>
<developer>
<id>nicklaswallgren</id>
<name>Nicklas Wallgren</name>
<email>nicklas.wallgren@gmail.com</email>
</developer>
</developers>
<licenses>
<license>
<name>The MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/finoid/code-style</url>
<connection>scm:git:https://github.com/finoid/code-style.git</connection>
<developerConnection>scm:git:ssh://git@github.com/finoid/code-style.git</developerConnection>
<tag>HEAD</tag>
</scm>
<url>https://github.com/finoid/code-style</url>
</project>