Skip to content

Commit

Permalink
Update pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
julianmendez committed Jan 4, 2024
1 parent e0d9213 commit a5e17a6
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,42 @@
<version>${protege.version}</version>
</dependency>

<dependency>
<!--
Jackson core
(required by OWL API)
[[https://github.com/FasterXML/jackson-core]]
[[https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/]]
-->
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson.version}</version>
</dependency>

<dependency>
<!--
Jackson data-bind
(required by OWL API)
[[https://github.com/FasterXML/jackson-databind]]
[[https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-databind]]
-->
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>

<dependency>
<!--
Jackson annotations
(required by OWL API)
[[https://github.com/FasterXML/jackson-annotations]]
[[https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-annotations/]]
-->
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jackson.version}</version>
</dependency>

<dependency>
<!--
Logback core
Expand Down Expand Up @@ -143,6 +179,19 @@
<version>${jgit.version}</version>
</dependency>

<dependency>
<!--
Google Guava
(required by OWL API and Protege, but Protege uses an older version)
[[https://www.eclipse.org/jgit/]]
[[https://github.com/google/guava]]
[[https://repo1.maven.org/maven2/com/google/guava/guava/]]
-->
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>

</dependencies>
</dependencyManagement>

Expand All @@ -166,8 +215,10 @@
<jcel.version>0.24.1</jcel.version>
<owlapi.version>4.5.26</owlapi.version>
<protege.version>5.5.0</protege.version>
<jackson.version>2.16.0</jackson.version>
<logback.version>1.4.14</logback.version>
<jgit.version>6.8.0.202311291450-r</jgit.version>
<guava.version>32.1.3-jre</guava.version>
</properties>

<build>
Expand Down

0 comments on commit a5e17a6

Please sign in to comment.