Skip to content

Commit

Permalink
add missing project pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorrit Poelen committed Apr 12, 2024
1 parent b7fad91 commit d30ccd4
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions nomer-name-parse/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.globalbioticinteractions</groupId>
<artifactId>nomer-parent</artifactId>
<version>0.5.8-SNAPSHOT</version>
<relativePath>../nomer-parent/pom.xml</relativePath>
</parent>

<artifactId>nomer-name-parse</artifactId>
<name>Nomer Name Parsing</name>
<description>Methods to parse taxonomic names</description>

<dependencies>
<dependency>
<groupId>org.eol</groupId>
<artifactId>eol-globi-taxon-resolver</artifactId>
<version>${globi.version}</version>
</dependency>
<dependency>
<groupId>org.gbif</groupId>
<artifactId>name-parser</artifactId>
<version>3.7.1</version>
</dependency>
</dependencies>

<repositories>
<repository>
<id>central</id>
<url>https://repo1.maven.org/maven2/</url>
</repository>
<repository>
<id>gbif-repository</id>
<url>https://repository.gbif.org/content/groups/gbif</url>
</repository>
</repositories>

</project>

0 comments on commit d30ccd4

Please sign in to comment.