Skip to content

Commit

Permalink
Update jena version 5.0.0
Browse files Browse the repository at this point in the history
Add http client library
  • Loading branch information
mittalVaghela committed Dec 19, 2024
1 parent e7b83b8 commit f7f2e52
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
4 changes: 4 additions & 0 deletions backend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,10 @@
<groupId>org.apache.jena</groupId>
<artifactId>jena-arq</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>
<!-- Tests -->
<dependency>
<groupId>org.assertj</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ public FusekiServer fusekiServer( final TripleStoreProperties properties ) {
.verbose( true )
.contextPath( embedded.getContextPath() )
.enableStats( true )
.enableCors( true )
.build().start();
}

Expand Down
11 changes: 11 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@
<samm.sdk.version>2.9.8</samm.sdk.version>
<jena.version>5.0.0</jena.version>
<shacl.version>1.3.1</shacl.version>
<apache.http.client.version>4.5.12</apache.http.client.version>

<!-- persistence -->
<mapstruct.version>1.5.3.Final</mapstruct.version>
Expand All @@ -123,6 +124,11 @@

<dependencyManagement>
<dependencies>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${logback.version}</version>
</dependency>
<!-- Predefined potential dependencies and versions -->
<!-- Java Stuff -->
<dependency>
Expand Down Expand Up @@ -385,6 +391,11 @@
<version>${shacl.version}</version>
</dependency>

<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>${apache.http.client.version}</version>
</dependency>
<!-- Test -->
<dependency>
<groupId>org.assertj</groupId>
Expand Down

0 comments on commit f7f2e52

Please sign in to comment.