Skip to content

Commit 8d49cc7

Browse files
committed
Started version 1.0.1-DEV
1 parent 1ed518c commit 8d49cc7

File tree

1 file changed

+9
-13
lines changed

1 file changed

+9
-13
lines changed

pom.xml

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,46 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<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">
33
<name>Data Language Core</name>
4-
<description>This is the core library for using the Data Language DL.</description>
4+
<description>This is the core library for using the Data Language DL. See https://github.com/studio42gmbh/dl</description>
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>de.s42</groupId>
77
<artifactId>dl</artifactId>
8-
<version>1.0.0</version>
8+
<version>1.0.1-DEV</version>
99
<packaging>jar</packaging>
1010
<properties>
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12-
<maven.compiler.source>17</maven.compiler.source>
13-
<maven.compiler.target>17</maven.compiler.target>
12+
<maven.compiler.release>17</maven.compiler.release>
1413
</properties>
1514
<dependencies>
1615
<dependency>
1716
<groupId>de.s42</groupId>
1817
<artifactId>base42</artifactId>
19-
<version>1.0.3</version>
18+
<version>1.0.4-DEV</version>
2019
<scope>compile</scope>
21-
<type>jar</type>
2220
</dependency>
2321
<dependency>
2422
<groupId>de.s42</groupId>
2523
<artifactId>log42</artifactId>
26-
<version>1.0.0</version>
24+
<version>1.0.1-DEV</version>
2725
<scope>compile</scope>
28-
<type>jar</type>
2926
</dependency>
3027
<dependency>
3128
<groupId>org.antlr</groupId>
3229
<artifactId>antlr4-runtime</artifactId>
3330
<version>4.13.1</version>
3431
<scope>compile</scope>
35-
<type>jar</type>
3632
</dependency>
3733
<dependency>
3834
<groupId>org.json</groupId>
3935
<artifactId>json</artifactId>
4036
<version>20231013</version>
4137
<scope>compile</scope>
42-
<type>jar</type>
4338
</dependency>
4439
<dependency>
4540
<groupId>org.testng</groupId>
4641
<artifactId>testng</artifactId>
4742
<version>7.8.0</version>
4843
<scope>test</scope>
49-
<type>jar</type>
5044
</dependency>
5145
</dependencies>
5246
<distributionManagement>
@@ -72,6 +66,8 @@
7266
</executions>
7367
</plugin>
7468
<plugin>
69+
<!-- https://maven.apache.org/plugins/maven-antrun-plugin/ -->
70+
<groupId>org.apache.maven.plugins</groupId>
7571
<artifactId>maven-antrun-plugin</artifactId>
7672
<version>3.1.0</version>
7773
<executions>
@@ -102,7 +98,7 @@
10298
<!-- https://maven.apache.org/surefire/maven-surefire-plugin/examples/testng.html -->
10399
<groupId>org.apache.maven.plugins</groupId>
104100
<artifactId>maven-surefire-plugin</artifactId>
105-
<version>3.2.1</version>
101+
<version>3.2.2</version>
106102
<configuration>
107103
<!-- https://stackoverflow.com/questions/64688896/how-to-make-testng-print-detail-message-about-the-failure -->
108104
<trimStackTrace>false</trimStackTrace>
@@ -160,7 +156,7 @@
160156
<!-- https://maven.apache.org/plugins/maven-javadoc-plugin/aggregate-mojo.html -->
161157
<groupId>org.apache.maven.plugins</groupId>
162158
<artifactId>maven-javadoc-plugin</artifactId>
163-
<version>3.6.0</version>
159+
<version>3.6.2</version>
164160
<configuration>
165161
<outputDirectory>${project.basedir}/docs</outputDirectory>
166162
<reportOutputDirectory>${project.basedir}/docs</reportOutputDirectory>

0 commit comments

Comments
 (0)