-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
96 lines (82 loc) · 2.86 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
<?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>
<groupId>com.io7m.primogenitor</groupId>
<artifactId>com.io7m.primogenitor.full</artifactId>
<version>8.3.1</version>
</parent>
<groupId>com.io7m.checkstyle_rules</groupId>
<artifactId>com.io7m.checkstyle_rules</artifactId>
<version>1.2.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>com.io7m.checkstyle_rules</name>
<description>Checkstyle rules for all io7m projects</description>
<url>https://www.io7m.com/software/checkstyle_rules</url>
<properties>
<!-- Configuration. -->
<io7m.checkstyle.artifact>com.io7m.checkstyle_rules</io7m.checkstyle.artifact>
<io7m.checkstyle.path>/com/io7m/checkstyle_rules/checkstyle.xml</io7m.checkstyle.path>
<io7m.api.previousVersion>1.0.0</io7m.api.previousVersion>
<io7m.java.targetJavaVersion>11</io7m.java.targetJavaVersion>
<mdep.analyze.skip>true</mdep.analyze.skip>
</properties>
<licenses>
<license>
<name>ISC</name>
<url>https://www.io7m.com/license/isc.txt</url>
</license>
</licenses>
<scm>
<url>https://www.github.com/io7m-com/checkstyle_rules</url>
<connection>scm:git:https://www.github.com/io7m-com/checkstyle_rules</connection>
<developerConnection>scm:git:https://www.github.com/io7m-com/checkstyle_rules</developerConnection>
</scm>
<developers>
<developer>
<id>io7m</id>
<name>Mark Raynsford</name>
<email>code@io7m.com</email>
<url>https://www.io7m.com</url>
</developer>
</developers>
<issueManagement>
<url>https://www.github.com/io7m-com/checkstyle_rules/issues</url>
<system>GitHub Issues</system>
</issueManagement>
<distributionManagement>
<site>
<id>io7m.com</id>
<name>io7m.com</name>
<url>https://www.io7m.com/software/checkstyle_rules</url>
</site>
<repository>
<id>sonatype-nexus-staging</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<ciManagement>
<system>GitHub Actions</system>
<url>https://www.github.com/io7m-com/checkstyle_rules/actions</url>
</ciManagement>
<prerequisites>
<maven>3.0.4</maven>
</prerequisites>
<build>
<plugins>
<!-- Generate a site -->
<plugin>
<groupId>com.io7m.minisite</groupId>
<artifactId>com.io7m.minisite.maven_plugin</artifactId>
<inherited>false</inherited>
</plugin>
</plugins>
</build>
</project>