Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
90 changes: 4 additions & 86 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<!-- Please refer to the Versioning page on TheWorldAvatar wiki for
details on how version numbers should be selected -->
<version>1.47.1</version>
<version>2.0.0</version>

<!-- Project Properties -->
<properties>
Expand Down Expand Up @@ -145,7 +145,6 @@
<!-- Dependencies -->
<!-- If adding dependencies, please include a comment detailing what they're for -->
<dependencies>

<!-- Servlet API -->
<dependency>
<groupId>javax.servlet</groupId>
Expand All @@ -164,27 +163,13 @@
<artifactId>rdf4j-sparqlbuilder</artifactId>
</dependency>

<!-- Driver for connecting to postgresql -->
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>

<!-- ??? -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>

<!-- ??? -->
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>

<!-- Spring MVC for Servlet Environments (depends on spring-core, spring-beans,
spring-context, spring-web) Define this if you use Spring MVC with a Servlet
Container such as Apache Tomcat (org.springframework.web.servlet.*) -->
<!-- Spring MVC for Servlet Environments -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
Expand All @@ -199,29 +184,11 @@
<artifactId>spring-webmvc</artifactId>
</dependency>

<!-- ??? -->
<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jsch</artifactId>
</dependency>
<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jsch.agentproxy.jsch</artifactId>
</dependency>
<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jsch.agentproxy.pageant</artifactId>
</dependency>

<!-- Logging -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
</dependency>

<!-- Processing JSON content -->
<dependency>
Expand Down Expand Up @@ -254,14 +221,6 @@
<groupId>org.apache.jena</groupId>
<artifactId>jena-rdfconnection</artifactId>
</dependency>
<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>jena-shaded-guava</artifactId>
</dependency>
<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>jena-jdbc-driver-mem</artifactId>
</dependency>
<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>jena-jdbc-core</artifactId>
Expand All @@ -270,11 +229,6 @@
<groupId>org.apache.jena</groupId>
<artifactId>jena-jdbc-driver-remote</artifactId>
</dependency>
<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>jena-jdbc</artifactId>
<type>pom</type>
</dependency>

<!-- ??? -->
<dependency>
Expand All @@ -293,25 +247,8 @@
<groupId>jakarta.ws.rs</groupId>
<artifactId>jakarta.ws.rs-api</artifactId>
</dependency>
<!-- ??? -->
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</dependency>

<!-- ??? -->
<dependency>
<groupId>net.sf.py4j</groupId>
<artifactId>py4j</artifactId>
</dependency>

<!-- Following RDF4J dependencies are added for enabling the federated query
feature supported by FedX-->
<!-- https://mvnrepository.com/artifact/org.eclipse.rdf4j/rdf4j-repository-http -->
<dependency>
<groupId>org.eclipse.rdf4j</groupId>
<artifactId>rdf4j-repository-http</artifactId>
</dependency>
<!-- Following RDF4J dependencies are added for enabling the federated query feature supported by FedX-->
<dependency>
<groupId>org.eclipse.rdf4j</groupId>
<artifactId>rdf4j-tools-federation</artifactId>
Expand Down Expand Up @@ -352,15 +289,7 @@
<scope>test</scope>
</dependency>

<!-- Used to mock environment variables in testing -->
<dependency>
<groupId>com.github.stefanbirkner</groupId>
<artifactId>system-lambda</artifactId>
<scope>test</scope>
</dependency>

<!-- Used for integration testing to spin up temporary Docker containers with required
applications (e.g. postgres, Blazegraph) -->
<!-- Used for integration testing to spin up temporary Docker containers with required applications -->
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>postgresql</artifactId>
Expand All @@ -376,10 +305,6 @@
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
Expand Down Expand Up @@ -417,13 +342,6 @@
<groupId>net.postgis</groupId>
<artifactId>postgis-jdbc</artifactId>
</dependency>

<!-- Required to provide classes including
'org.glassfish.jersey.internal.RuntimeDelegateImpl' when using JDKs newer that version 8 -->
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-common</artifactId>
</dependency>
</dependencies>


Expand Down
Loading