Skip to content

Commit 7b90934

Browse files
committed
started 2.0.1-SNAPSHOT
1 parent 1aa7a6a commit 7b90934

File tree

1 file changed

+14
-16
lines changed

1 file changed

+14
-16
lines changed

pom.xml

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,12 @@
33
<modelVersion>4.0.0</modelVersion>
44

55
<groupId>com.igormaznitsa</groupId>
6-
<artifactId>prologparser</artifactId>
7-
<version>2.0.0</version>
6+
<artifactId>java-prolog-parser</artifactId>
7+
<version>2.0.1-SNAPSHOT</version>
88
<packaging>jar</packaging>
99

10-
<name>Java Prolog Parser</name>
11-
<description>It is a hand-written prolog parser, it allows to parse prolog sources written in Edinburgh Prolog
12-
style
13-
</description>
10+
<name>Edinburg Prolog Parser</name>
11+
<description>It is a hand-written prolog parser, it allows to parse prolog sources written in Edinburgh Prolog style</description>
1412
<url>https://github.com/raydac/java-prolog-parser</url>
1513

1614
<properties>
@@ -66,19 +64,19 @@
6664
<dependency>
6765
<groupId>org.junit.jupiter</groupId>
6866
<artifactId>junit-jupiter-api</artifactId>
69-
<version>5.3.1</version>
67+
<version>5.4.2</version>
7068
<scope>test</scope>
7169
</dependency>
7270
<dependency>
7371
<groupId>org.junit.jupiter</groupId>
7472
<artifactId>junit-jupiter-engine</artifactId>
75-
<version>5.3.1</version>
73+
<version>5.4.2</version>
7674
<scope>test</scope>
7775
</dependency>
7876
<dependency>
7977
<groupId>org.mockito</groupId>
8078
<artifactId>mockito-core</artifactId>
81-
<version>2.23.0</version>
79+
<version>2.28.2</version>
8280
<scope>test</scope>
8381
</dependency>
8482
</dependencies>
@@ -91,7 +89,7 @@
9189
<plugin>
9290
<groupId>org.apache.maven.plugins</groupId>
9391
<artifactId>maven-assembly-plugin</artifactId>
94-
<version>3.1.0</version>
92+
<version>3.1.1</version>
9593
<configuration>
9694
<descriptors>
9795
<descriptor>src/assemble/distribution.xml</descriptor>
@@ -128,7 +126,7 @@
128126
<plugin>
129127
<groupId>org.apache.maven.plugins</groupId>
130128
<artifactId>maven-source-plugin</artifactId>
131-
<version>3.0.1</version>
129+
<version>3.1.0</version>
132130
<executions>
133131
<execution>
134132
<id>generate-sources</id>
@@ -142,7 +140,7 @@
142140
<plugin>
143141
<groupId>org.apache.maven.plugins</groupId>
144142
<artifactId>maven-javadoc-plugin</artifactId>
145-
<version>3.0.1</version>
143+
<version>3.1.0</version>
146144
<configuration>
147145
<failOnError>true</failOnError>
148146
<show>protected</show>
@@ -183,7 +181,7 @@
183181
<plugin>
184182
<groupId>org.apache.maven.plugins</groupId>
185183
<artifactId>maven-compiler-plugin</artifactId>
186-
<version>3.8.0</version>
184+
<version>3.8.1</version>
187185
<configuration>
188186
<compilerArgument>-Xlint:all</compilerArgument>
189187
<source>1.8</source>
@@ -196,7 +194,7 @@
196194
<plugin>
197195
<groupId>org.apache.maven.plugins</groupId>
198196
<artifactId>maven-jar-plugin</artifactId>
199-
<version>3.1.0</version>
197+
<version>3.1.2</version>
200198
<configuration>
201199
<archive>
202200
<manifestEntries>
@@ -208,13 +206,13 @@
208206

209207
<plugin>
210208
<artifactId>maven-surefire-plugin</artifactId>
211-
<version>2.22.1</version>
209+
<version>3.0.0-M3</version>
212210
</plugin>
213211

214212
<plugin>
215213
<groupId>org.codehaus.mojo</groupId>
216214
<artifactId>animal-sniffer-maven-plugin</artifactId>
217-
<version>1.17</version>
215+
<version>1.18</version>
218216
<executions>
219217
<execution>
220218
<id>ensure-java-1.8-class-library</id>

0 commit comments

Comments
 (0)