-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
78 lines (69 loc) · 2.8 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
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<artifactId>location4j-parent</artifactId>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<version>${maven-deploy-plugin.version}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<description>A location service for Java, identify a city, state or country by multiple terms.
</description>
<developers>
<developer>
<email>[email protected]</email>
<id>tomaytotomato</id>
<name>Bruce Taylor</name>
</developer>
</developers>
<groupId>com.tomaytotomato</groupId>
<licenses>
<license>
<distribution>repo</distribution>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>
<modelVersion>4.0.0</modelVersion>
<modules>
<module>buildtools</module>
<module>location4j</module>
</modules>
<packaging>pom</packaging>
<properties>
<assertj-core.version>3.26.3</assertj-core.version>
<central-publishing-maven-plugin.version>0.5.0</central-publishing-maven-plugin.version>
<jacoco-maven-plugin.version>0.8.12</jacoco-maven-plugin.version>
<junit-jupiter.version>5.10.3</junit-jupiter.version>
<maven-deploy-plugin.version>3.1.2</maven-deploy-plugin.version>
<maven-gpg-plugin.version>3.2.4</maven-gpg-plugin.version>
<maven-surefire-plugin.version>3.3.1</maven-surefire-plugin.version>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<sonar-maven-plugin.version>4.0.0.4121</sonar-maven-plugin.version>
<sonar.coverage.jacoco.xmlReportPaths>${project.build.directory}/site/jacoco/jacoco.xml
</sonar.coverage.jacoco.xmlReportPaths>
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
<sonar.language>java</sonar.language>
<sonar.organization>tomaytotomato</sonar.organization>
<spotless.version>2.43.0</spotless.version>
</properties>
<scm>
<connection>scm:git:https://github.com/tomaytotomato/location4j.git</connection>
<developerConnection>scm:git:ssh://[email protected]:tomaytotomato/location4j.git
</developerConnection>
<url>https://github.com/tomaytotomato/location4j</url>
</scm>
<url>https://github.com/tomaytotomato/location4j</url>
<version>1.0.0</version>
</project>