Update parent to latest version
[reguloj.git] / pom.xml
blob7ce581469b5281cedbf2c56e6e573f11804be04b
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ SPDX-FileCopyrightText: The reguloj Authors
4   ~ SPDX-License-Identifier: 0BSD
5   -->
6 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
8     <modelVersion>4.0.0</modelVersion>
10     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
11     <!--                                  PARENT                                 -->
12     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
13     <parent>
14         <groupId>wtf.metio.maven.parents</groupId>
15         <artifactId>maven-parents-java-prototype</artifactId>
16         <version>2022.12.2</version>
17     </parent>
19     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
20     <!--                               INFORMATIONS                              -->
21     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
22     <groupId>wtf.metio.reguloj</groupId>
23     <artifactId>reguloj</artifactId>
24     <version>9999.99.99-SNAPSHOT</version>
25     <packaging>jar</packaging>
27     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
28     <!--                               INFORMATIONS                              -->
29     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
30     <!-- https://maven.apache.org/pom.html#More_Project_Information -->
31     <inceptionYear>2010</inceptionYear>
32     <name>reguloj</name>
33     <description>Lightweight business rule engine</description>
34     <url>https://github.com/metio/reguloj/</url>
36     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
37     <!--                                 LICENSE                                 -->
38     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
39     <!-- https://maven.apache.org/pom.html#licenses -->
40     <licenses>
41         <license>
42             <name>BSD Zero Clause License</name>
43             <url>https://spdx.org/licenses/0BSD.html</url>
44             <distribution>repo</distribution>
45             <comments>https://spdx.org/licenses/0BSD.html</comments>
46         </license>
47     </licenses>
49     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
50     <!--                                  SOURCE                                 -->
51     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
52     <scm>
53         <connection>scm:git:git@github.com:metio/reguloj.git</connection>
54         <developerConnection>scm:git:git@github.com:metio/reguloj.git</developerConnection>
55         <tag>HEAD</tag>
56         <url>https://github.com/metio/reguloj</url>
57     </scm>
59     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
60     <!--                                PROPERTIES                               -->
61     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
62     <properties>
63         <version.jdk>${javaVersion}</version.jdk>
64     </properties>
66     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
67     <!--                          DISTRIBUTION MANAGEMENT                        -->
68     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
69     <!-- https://maven.apache.org/pom.html#Distribution_Management -->
70     <distributionManagement>
71         <site>
72             <id>metio</id>
73             <name>official website</name>
74             <url>https://github.com/metio/reguloj</url>
75         </site>
76         <snapshotRepository>
77             <id>ossrh</id>
78             <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
79         </snapshotRepository>
80     </distributionManagement>
82     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
83     <!--                               DEPENDENCIES                              -->
84     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
85     <dependencies>
86         <dependency>
87             <groupId>org.mockito</groupId>
88             <artifactId>mockito-core</artifactId>
89             <scope>test</scope>
90         </dependency>
91     </dependencies>
93 </project>