Skip to content

Commit e6aaf8b

Browse files
author
Pap Lőrinc
committed
Updated most of the Maven dependencies;
1 parent 5e12719 commit e6aaf8b

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

pom.xml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@
1010
</organization>
1111
<packaging>jar</packaging>
1212
<url>https://github.com/JSQLParser/JSqlParser</url>
13-
13+
1414
<licenses>
1515
<license>
1616
<name>GNU Library or Lesser General Public License (LGPL) V2.1</name>
1717
<url>http://www.gnu.org/licenses/lgpl-2.1.html</url>
1818
</license>
1919
</licenses>
20-
20+
2121
<dependencies>
2222
<dependency>
2323
<groupId>junit</groupId>
2424
<artifactId>junit</artifactId>
25-
<version>4.10</version>
25+
<version>4.11</version>
2626
</dependency>
2727
<dependency>
2828
<groupId>commons-io</groupId>
@@ -31,7 +31,7 @@
3131
<scope>test</scope>
3232
</dependency>
3333
</dependencies>
34-
34+
3535
<developers>
3636
<developer>
3737
<name>Tobias Warneke</name>
@@ -49,14 +49,14 @@
4949
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
5050
</snapshotRepository>
5151
</distributionManagement>
52-
52+
5353
<scm>
5454
<connection>scm:git:https://github.com/JSQLParser/JSqlParser.git</connection>
5555
<developerConnection>scm:git:ssh://[email protected]:JSQLParser/JSqlParser.git</developerConnection>
5656
<url>https://github.com/JSQLParser/JSqlParser.git</url>
5757
<tag>HEAD</tag>
5858
</scm>
59-
59+
6060
<issueManagement>
6161
<system>GitHub Issues</system>
6262
<url>https://github.com/JSQLParser/JSqlParser/issues</url>
@@ -66,7 +66,7 @@
6666
<plugins>
6767
<plugin>
6868
<artifactId>maven-compiler-plugin</artifactId>
69-
<version>3.0</version>
69+
<version>3.1</version>
7070
<configuration>
7171
<source>1.6</source>
7272
<target>1.6</target>
@@ -91,7 +91,7 @@
9191
<plugin>
9292
<groupId>org.apache.maven.plugins</groupId>
9393
<artifactId>maven-eclipse-plugin</artifactId>
94-
<version>2.8</version>
94+
<version>2.9</version>
9595
<configuration>
9696
<sourceIncludes>
9797
<sourceInclude>/target/generated-sources/javacc</sourceInclude>
@@ -101,15 +101,15 @@
101101
<plugin>
102102
<groupId>org.apache.maven.plugins</groupId>
103103
<artifactId>maven-resources-plugin</artifactId>
104-
<version>2.4.3</version>
104+
<version>2.6</version>
105105
<configuration>
106106
<encoding>${project.build.sourceEncoding}</encoding>
107107
</configuration>
108108
</plugin>
109109
<plugin>
110110
<groupId>org.codehaus.mojo</groupId>
111111
<artifactId>license-maven-plugin</artifactId>
112-
<version>1.4</version>
112+
<version>1.6</version>
113113
<configuration>
114114
<verbose>false</verbose>
115115
<addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
@@ -147,7 +147,7 @@
147147
<version>1.9</version>
148148
</dependency>
149149
</dependencies>
150-
</plugin>
150+
</plugin>
151151
<plugin>
152152
<groupId>org.apache.maven.plugins</groupId>
153153
<artifactId>maven-source-plugin</artifactId>
@@ -164,7 +164,7 @@
164164
<plugin>
165165
<groupId>org.apache.maven.plugins</groupId>
166166
<artifactId>maven-javadoc-plugin</artifactId>
167-
<version>2.9</version>
167+
<version>2.9.1</version>
168168
<executions>
169169
<execution>
170170
<id>attach-javadocs</id>
@@ -173,7 +173,7 @@
173173
</goals>
174174
</execution>
175175
</executions>
176-
</plugin>
176+
</plugin>
177177
<plugin>
178178
<artifactId>maven-site-plugin</artifactId>
179179
<version>3.3</version>
@@ -186,7 +186,7 @@
186186
</execution>
187187
</executions>
188188
<configuration>
189-
<reportPlugins>
189+
<reportPlugins> <!--TODO this is marked as private since version 3.2 and should be removed-->
190190
<plugin>
191191
<groupId>org.apache.maven.plugins</groupId>
192192
<artifactId>maven-surefire-report-plugin</artifactId>
@@ -245,7 +245,7 @@
245245
</plugin>
246246
</plugins>
247247
</build>
248-
248+
249249
<profiles>
250250
<profile>
251251
<id>sign-release-artifacts</id>
@@ -278,13 +278,13 @@
278278
</build>
279279
</profile>
280280
</profiles>
281-
281+
282282
<properties>
283283
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
284284
</properties>
285-
285+
286286
<description>
287-
JSqlParser parses an SQL statement and translate it into a hierarchy of Java classes.
287+
JSqlParser parses an SQL statement and translate it into a hierarchy of Java classes.
288288
The generated hierarchy can be navigated using the Visitor Pattern.
289289
</description>
290290
</project>

0 commit comments

Comments
 (0)