Update parent to latest version
[reguloj.git] / pom.xml
blob459e03e7871aa061e8120ccf531b1c14b0fad421
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ This file is part of reguloj. It is subject to the license terms in the LICENSE file found in the top-level
4   ~ directory of this distribution and at https://creativecommons.org/publicdomain/zero/1.0/. No part of reguloj,
5   ~ including this file, may be copied, modified, propagated, or distributed except according to the terms contained
6   ~ in the LICENSE file.
7   -->
9 <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/maven-v4_0_0.xsd">
10   <modelVersion>4.0.0</modelVersion>
12   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
13   <!--                                  PARENT                                 -->
14   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
15   <parent>
16     <groupId>wtf.metio.maven.parents</groupId>
17     <artifactId>maven-parents-java-prototype</artifactId>
18     <version>2022.10.7</version>
19   </parent>
21   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
22   <!--                               INFORMATIONS                              -->
23   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
24   <groupId>wtf.metio.reguloj</groupId>
25   <artifactId>reguloj</artifactId>
26   <version>9999.99.99-SNAPSHOT</version>
27   <packaging>jar</packaging>
29   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
30   <!--                               INFORMATIONS                              -->
31   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
32   <!-- https://maven.apache.org/pom.html#More_Project_Information -->
33   <inceptionYear>2010</inceptionYear>
34   <name>reguloj</name>
35   <description>Lightweight business rule engine</description>
36   <url>https://github.com/metio/reguloj/</url>
38   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
39   <!--                                  SOURCE                                 -->
40   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
41   <scm>
42     <connection>scm:git:git@github.com:metio/reguloj.git</connection>
43     <developerConnection>scm:git:git@github.com:metio/reguloj.git</developerConnection>
44     <tag>HEAD</tag>
45     <url>https://github.com/metio/reguloj</url>
46   </scm>
48   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
49   <!--                                PROPERTIES                               -->
50   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
51   <properties>
52     <version.jdk>17</version.jdk>
53     <project.build.outputTimestamp>${project.inceptionYear}</project.build.outputTimestamp>
54   </properties>
56   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
57   <!--                          DISTRIBUTION MANAGEMENT                        -->
58   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
59   <!-- https://maven.apache.org/pom.html#Distribution_Management -->
60   <distributionManagement>
61     <site>
62       <id>metio</id>
63       <name>official website</name>
64       <url>https://github.com/metio/reguloj</url>
65     </site>
66     <snapshotRepository>
67       <id>ossrh</id>
68       <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
69     </snapshotRepository>
70   </distributionManagement>
72   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
73   <!--                               DEPENDENCIES                              -->
74   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
75   <dependencies>
76     <dependency>
77       <groupId>org.mockito</groupId>
78       <artifactId>mockito-core</artifactId>
79       <scope>test</scope>
80     </dependency>
81   </dependencies>
83   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
84   <!--                                   BUILD                                 -->
85   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
86   <build>
87     <plugins>
88       <plugin>
89         <artifactId>maven-surefire-plugin</artifactId>
90         <configuration>
91           <argLine>
92             --add-opens wtf.metio.reguloj/wtf.metio.reguloj=ALL-UNNAMED
93             --add-opens wtf.metio.reguloj/wtf.metio.reguloj.shoppingcart=ALL-UNNAMED
94           </argLine>
95         </configuration>
96       </plugin>
97     </plugins>
98   </build>
100 </project>