|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 |
|
5 | 5 | <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> |
8 | 8 | <packaging>jar</packaging> |
9 | 9 |
|
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> |
14 | 12 | <url>https://github.com/raydac/java-prolog-parser</url> |
15 | 13 |
|
16 | 14 | <properties> |
|
66 | 64 | <dependency> |
67 | 65 | <groupId>org.junit.jupiter</groupId> |
68 | 66 | <artifactId>junit-jupiter-api</artifactId> |
69 | | - <version>5.3.1</version> |
| 67 | + <version>5.4.2</version> |
70 | 68 | <scope>test</scope> |
71 | 69 | </dependency> |
72 | 70 | <dependency> |
73 | 71 | <groupId>org.junit.jupiter</groupId> |
74 | 72 | <artifactId>junit-jupiter-engine</artifactId> |
75 | | - <version>5.3.1</version> |
| 73 | + <version>5.4.2</version> |
76 | 74 | <scope>test</scope> |
77 | 75 | </dependency> |
78 | 76 | <dependency> |
79 | 77 | <groupId>org.mockito</groupId> |
80 | 78 | <artifactId>mockito-core</artifactId> |
81 | | - <version>2.23.0</version> |
| 79 | + <version>2.28.2</version> |
82 | 80 | <scope>test</scope> |
83 | 81 | </dependency> |
84 | 82 | </dependencies> |
|
91 | 89 | <plugin> |
92 | 90 | <groupId>org.apache.maven.plugins</groupId> |
93 | 91 | <artifactId>maven-assembly-plugin</artifactId> |
94 | | - <version>3.1.0</version> |
| 92 | + <version>3.1.1</version> |
95 | 93 | <configuration> |
96 | 94 | <descriptors> |
97 | 95 | <descriptor>src/assemble/distribution.xml</descriptor> |
|
128 | 126 | <plugin> |
129 | 127 | <groupId>org.apache.maven.plugins</groupId> |
130 | 128 | <artifactId>maven-source-plugin</artifactId> |
131 | | - <version>3.0.1</version> |
| 129 | + <version>3.1.0</version> |
132 | 130 | <executions> |
133 | 131 | <execution> |
134 | 132 | <id>generate-sources</id> |
|
142 | 140 | <plugin> |
143 | 141 | <groupId>org.apache.maven.plugins</groupId> |
144 | 142 | <artifactId>maven-javadoc-plugin</artifactId> |
145 | | - <version>3.0.1</version> |
| 143 | + <version>3.1.0</version> |
146 | 144 | <configuration> |
147 | 145 | <failOnError>true</failOnError> |
148 | 146 | <show>protected</show> |
|
183 | 181 | <plugin> |
184 | 182 | <groupId>org.apache.maven.plugins</groupId> |
185 | 183 | <artifactId>maven-compiler-plugin</artifactId> |
186 | | - <version>3.8.0</version> |
| 184 | + <version>3.8.1</version> |
187 | 185 | <configuration> |
188 | 186 | <compilerArgument>-Xlint:all</compilerArgument> |
189 | 187 | <source>1.8</source> |
|
196 | 194 | <plugin> |
197 | 195 | <groupId>org.apache.maven.plugins</groupId> |
198 | 196 | <artifactId>maven-jar-plugin</artifactId> |
199 | | - <version>3.1.0</version> |
| 197 | + <version>3.1.2</version> |
200 | 198 | <configuration> |
201 | 199 | <archive> |
202 | 200 | <manifestEntries> |
|
208 | 206 |
|
209 | 207 | <plugin> |
210 | 208 | <artifactId>maven-surefire-plugin</artifactId> |
211 | | - <version>2.22.1</version> |
| 209 | + <version>3.0.0-M3</version> |
212 | 210 | </plugin> |
213 | 211 |
|
214 | 212 | <plugin> |
215 | 213 | <groupId>org.codehaus.mojo</groupId> |
216 | 214 | <artifactId>animal-sniffer-maven-plugin</artifactId> |
217 | | - <version>1.17</version> |
| 215 | + <version>1.18</version> |
218 | 216 | <executions> |
219 | 217 | <execution> |
220 | 218 | <id>ensure-java-1.8-class-library</id> |
|
0 commit comments