improve wording
[reguloj.git] / pom.xml
blob0ea189dd9dee460ad1fd050913592fa0cd612c95
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
5   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
6   <!--                                  PARENT                                 -->
7   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
8   <parent>
9     <groupId>wtf.metio.maven.parents</groupId>
10     <artifactId>maven-parents-java-prototype</artifactId>
11     <version>2021.4.5</version>
12   </parent>
14   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
15   <!--                               INFORMATIONS                              -->
16   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
17   <groupId>wtf.metio.reguloj</groupId>
18   <artifactId>reguloj</artifactId>
19   <version>9999.99.99-SNAPSHOT</version>
20   <packaging>jar</packaging>
22   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
23   <!--                               INFORMATIONS                              -->
24   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
25   <!-- https://maven.apache.org/pom.html#More_Project_Information -->
26   <inceptionYear>2010</inceptionYear>
27   <name>reguloj</name>
28   <description>Lightweight business rule engine</description>
29   <url>https://reguloj.projects.metio.wtf/</url>
31   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
32   <!--                                  SOURCE                                 -->
33   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
34   <scm>
35     <connection>scm:git:git@github.com:metio/reguloj.git</connection>
36     <developerConnection>scm:git:git@github.com:metio/reguloj.git</developerConnection>
37     <tag>HEAD</tag>
38     <url>https://github.com/metio/reguloj</url>
39   </scm>
41   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
42   <!--                                PROPERTIES                               -->
43   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
44   <properties>
45     <version.jdk>16</version.jdk>
46     <project.build.outputTimestamp>${project.inceptionYear}</project.build.outputTimestamp>
47   </properties>
49   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
50   <!--                          DISTRIBUTION MANAGEMENT                        -->
51   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
52   <!-- https://maven.apache.org/pom.html#Distribution_Management -->
53   <distributionManagement>
54     <site>
55       <id>metio</id>
56       <name>official website</name>
57       <url>https://reguloj.projects.metio.wtf</url>
58     </site>
59     <snapshotRepository>
60       <id>ossrh</id>
61       <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
62     </snapshotRepository>
63   </distributionManagement>
65   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
66   <!--                               DEPENDENCIES                              -->
67   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
68   <dependencies>
69     <dependency>
70       <groupId>org.mockito</groupId>
71       <artifactId>mockito-core</artifactId>
72       <scope>test</scope>
73     </dependency>
74   </dependencies>
76   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
77   <!--                                   BUILD                                 -->
78   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
79   <build>
80     <plugins>
81       <plugin>
82         <artifactId>maven-surefire-plugin</artifactId>
83         <version>3.0.0-M5</version>
84         <configuration>
85           <argLine>
86             --enable-preview
87             --add-opens wtf.metio.reguloj/wtf.metio.reguloj=ALL-UNNAMED
88             --add-opens wtf.metio.reguloj/wtf.metio.reguloj.shoppingcart=ALL-UNNAMED
89           </argLine>
90         </configuration>
91       </plugin>
92     </plugins>
93   </build>
95 </project>