This is an automated email from the ASF dual-hosted git repository. andy pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/jena.git
commit 4187c4677438edc85a874f0b45925077e1a68d25 Author: Andy Seaborne <[email protected]> AuthorDate: Tue Apr 6 14:22:47 2021 +0100 Move jcommander dependency management to parent POM --- jena-fuseki2/jena-fuseki-geosparql/pom.xml | 5 +++-- pom.xml | 8 +++++++- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/jena-fuseki2/jena-fuseki-geosparql/pom.xml b/jena-fuseki2/jena-fuseki-geosparql/pom.xml index 9705bba..4f3d7db 100644 --- a/jena-fuseki2/jena-fuseki-geosparql/pom.xml +++ b/jena-fuseki2/jena-fuseki-geosparql/pom.xml @@ -14,7 +14,9 @@ limitations under the License. --> -<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/maven-v4_0_0.xsd"> +<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>jena-fuseki-geosparql</artifactId> <packaging>jar</packaging> @@ -82,7 +84,6 @@ <dependency> <groupId>com.beust</groupId> <artifactId>jcommander</artifactId> - <version>1.81</version> </dependency> <dependency> diff --git a/pom.xml b/pom.xml index a0d9a00..224f742 100644 --- a/pom.xml +++ b/pom.xml @@ -95,7 +95,7 @@ <ver.lucene>8.8.0</ver.lucene> <ver.graalvm>21.0.0.2</ver.graalvm> <ver.jython>2.7.2</ver.jython> - + <ver.jcommander>1.81</ver.jcommander> <ver.mockito>3.8.0</ver.mockito> <ver.awaitility>4.0.3</ver.awaitility> <ver.contract.tests>0.2.0</ver.contract.tests> @@ -599,6 +599,12 @@ <version>${ver.micrometer}</version> </dependency> + <dependency> + <groupId>com.beust</groupId> + <artifactId>jcommander</artifactId> + <version>${ver.jcommander}</version> + </dependency> + </dependencies> </dependencyManagement>
