|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 | 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/xsd/maven-4.0.0.xsd">
|
3 | 3 | <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> |
5 | 5 | <modelVersion>4.0.0</modelVersion>
|
6 | 6 | <groupId>de.s42</groupId>
|
7 | 7 | <artifactId>dl</artifactId>
|
8 |
| - <version>1.0.0</version> |
| 8 | + <version>1.0.1-DEV</version> |
9 | 9 | <packaging>jar</packaging>
|
10 | 10 | <properties>
|
11 | 11 | <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> |
14 | 13 | </properties>
|
15 | 14 | <dependencies>
|
16 | 15 | <dependency>
|
17 | 16 | <groupId>de.s42</groupId>
|
18 | 17 | <artifactId>base42</artifactId>
|
19 |
| - <version>1.0.3</version> |
| 18 | + <version>1.0.4-DEV</version> |
20 | 19 | <scope>compile</scope>
|
21 |
| - <type>jar</type> |
22 | 20 | </dependency>
|
23 | 21 | <dependency>
|
24 | 22 | <groupId>de.s42</groupId>
|
25 | 23 | <artifactId>log42</artifactId>
|
26 |
| - <version>1.0.0</version> |
| 24 | + <version>1.0.1-DEV</version> |
27 | 25 | <scope>compile</scope>
|
28 |
| - <type>jar</type> |
29 | 26 | </dependency>
|
30 | 27 | <dependency>
|
31 | 28 | <groupId>org.antlr</groupId>
|
32 | 29 | <artifactId>antlr4-runtime</artifactId>
|
33 | 30 | <version>4.13.1</version>
|
34 | 31 | <scope>compile</scope>
|
35 |
| - <type>jar</type> |
36 | 32 | </dependency>
|
37 | 33 | <dependency>
|
38 | 34 | <groupId>org.json</groupId>
|
39 | 35 | <artifactId>json</artifactId>
|
40 | 36 | <version>20231013</version>
|
41 | 37 | <scope>compile</scope>
|
42 |
| - <type>jar</type> |
43 | 38 | </dependency>
|
44 | 39 | <dependency>
|
45 | 40 | <groupId>org.testng</groupId>
|
46 | 41 | <artifactId>testng</artifactId>
|
47 | 42 | <version>7.8.0</version>
|
48 | 43 | <scope>test</scope>
|
49 |
| - <type>jar</type> |
50 | 44 | </dependency>
|
51 | 45 | </dependencies>
|
52 | 46 | <distributionManagement>
|
|
72 | 66 | </executions>
|
73 | 67 | </plugin>
|
74 | 68 | <plugin>
|
| 69 | + <!-- https://maven.apache.org/plugins/maven-antrun-plugin/ --> |
| 70 | + <groupId>org.apache.maven.plugins</groupId> |
75 | 71 | <artifactId>maven-antrun-plugin</artifactId>
|
76 | 72 | <version>3.1.0</version>
|
77 | 73 | <executions>
|
|
102 | 98 | <!-- https://maven.apache.org/surefire/maven-surefire-plugin/examples/testng.html -->
|
103 | 99 | <groupId>org.apache.maven.plugins</groupId>
|
104 | 100 | <artifactId>maven-surefire-plugin</artifactId>
|
105 |
| - <version>3.2.1</version> |
| 101 | + <version>3.2.2</version> |
106 | 102 | <configuration>
|
107 | 103 | <!-- https://stackoverflow.com/questions/64688896/how-to-make-testng-print-detail-message-about-the-failure -->
|
108 | 104 | <trimStackTrace>false</trimStackTrace>
|
|
160 | 156 | <!-- https://maven.apache.org/plugins/maven-javadoc-plugin/aggregate-mojo.html -->
|
161 | 157 | <groupId>org.apache.maven.plugins</groupId>
|
162 | 158 | <artifactId>maven-javadoc-plugin</artifactId>
|
163 |
| - <version>3.6.0</version> |
| 159 | + <version>3.6.2</version> |
164 | 160 | <configuration>
|
165 | 161 | <outputDirectory>${project.basedir}/docs</outputDirectory>
|
166 | 162 | <reportOutputDirectory>${project.basedir}/docs</reportOutputDirectory>
|
|
0 commit comments