Skip to content

Commit

Permalink
Add module molgenis-data-icd10
Browse files Browse the repository at this point in the history
  • Loading branch information
tommydeboer committed Aug 23, 2018
1 parent 7625148 commit 48912f0
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 0 deletions.
5 changes: 5 additions & 0 deletions molgenis-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,11 @@
<artifactId>molgenis-data-i18n</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.molgenis</groupId>
<artifactId>molgenis-data-icd10</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.molgenis</groupId>
<artifactId>molgenis-i18n</artifactId>
Expand Down
54 changes: 54 additions & 0 deletions molgenis-data-icd10/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<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.molgenis</groupId>
<artifactId>molgenis</artifactId>
<version>7.1.0-SNAPSHOT</version>
</parent>
<artifactId>molgenis-data-icd10</artifactId>

<name>data-icd10</name>
<description>ICD-10 related functionality</description>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.molgenis</groupId>
<artifactId>molgenis-data</artifactId>
<version>${project.version}</version>
</dependency>
<!-- third party dependencies -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>findbugs-annotations</artifactId>
<scope>provided</scope>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>org.molgenis</groupId>
<artifactId>molgenis-test</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -973,6 +973,7 @@
<module>molgenis-data-excel</module>
<module>molgenis-data-file</module>
<module>molgenis-data-i18n</module>
<module>molgenis-data-icd10</module>
<module>molgenis-data-import</module>
<module>molgenis-data-index</module>
<module>molgenis-data-migrate</module>
Expand Down

0 comments on commit 48912f0

Please sign in to comment.