Skip to content
This repository was archived by the owner on Mar 13, 2023. It is now read-only.

Commit 39b6d01

Browse files
committed
Merge branch 'release-staging/1.7.0' into release
2 parents d03722f + 98a02b9 commit 39b6d01

File tree

557 files changed

+41467
-35137
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

557 files changed

+41467
-35137
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
[![DOI](https://zenodo.org/badge/51161341.svg)](https://zenodo.org/badge/latestdoi/51161341)
12
[![Build Status](https://travis-ci.org/nlpie/biomedicus.svg?branch=master)](https://travis-ci.org/nlpie/biomedicus)
23

34
Overview
@@ -19,7 +20,9 @@ use, and development of BioMedICUS.
1920
Contact and Support
2021
========================================================================================================================
2122

22-
BioMedICUS has a [Google Group](https://groups.google.com/a/umn.edu/forum/#!forum/biomedicus) for contacting developers
23+
For issues or enhancement requests, feel free to submit to the Issues tab on GitHub.
24+
25+
BioMedICUS has a [gitter chat](https://gitter.im/biomedicus/biomedicus) and a [Google Group](https://groups.google.com/a/umn.edu/forum/#!forum/biomedicus) for contacting developers
2326
with questions, suggestions or feedback. Also, bug reports and feature suggestions can be submitted to the Issues tab on
2427
GitHub.
2528

biomedicus-core/pom.xml

Lines changed: 58 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
~ Copyright (c) 2016 Regents of the University of Minnesota.
3+
~ Copyright (c) 2017 Regents of the University of Minnesota.
44
~
55
~ Licensed under the Apache License, Version 2.0 (the "License");
66
~ you may not use this file except in compliance with the License.
@@ -15,62 +15,64 @@
1515
~ limitations under the License.
1616
-->
1717

18-
<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">
19-
<parent>
20-
<artifactId>biomedicus</artifactId>
21-
<groupId>edu.umn.biomedicus</groupId>
22-
<version>1.6.0</version>
23-
</parent>
24-
<modelVersion>4.0.0</modelVersion>
18+
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19+
xmlns="http://maven.apache.org/POM/4.0.0"
20+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21+
<parent>
22+
<artifactId>biomedicus</artifactId>
23+
<groupId>edu.umn.biomedicus</groupId>
24+
<version>1.7.0</version>
25+
</parent>
26+
<modelVersion>4.0.0</modelVersion>
2527

26-
<artifactId>biomedicus-core</artifactId>
28+
<artifactId>biomedicus-core</artifactId>
2729

28-
<properties>
29-
<jackson.version>2.8.3</jackson.version>
30-
</properties>
30+
<properties>
31+
<jackson.version>2.8.3</jackson.version>
32+
</properties>
33+
34+
<dependencies>
35+
<dependency>
36+
<groupId>com.google.inject</groupId>
37+
<artifactId>guice</artifactId>
38+
<version>4.1.0</version>
39+
</dependency>
40+
<dependency>
41+
<groupId>com.google.inject.extensions</groupId>
42+
<artifactId>guice-multibindings</artifactId>
43+
<version>4.1.0</version>
44+
</dependency>
45+
<dependency>
46+
<groupId>org.yaml</groupId>
47+
<artifactId>snakeyaml</artifactId>
48+
<version>1.17</version>
49+
</dependency>
50+
<dependency>
51+
<groupId>org.mapdb</groupId>
52+
<artifactId>mapdb</artifactId>
53+
<version>3.0.4</version>
54+
</dependency>
55+
<dependency>
56+
<groupId>args4j</groupId>
57+
<artifactId>args4j</artifactId>
58+
<version>2.33</version>
59+
</dependency>
60+
<dependency>
61+
<groupId>com.fasterxml.jackson.core</groupId>
62+
<artifactId>jackson-databind</artifactId>
63+
<version>${jackson.version}</version>
64+
</dependency>
65+
<dependency>
66+
<groupId>org.immutables</groupId>
67+
<artifactId>value</artifactId>
68+
<version>2.4.4</version>
69+
<scope>provided</scope>
70+
</dependency>
71+
<dependency>
72+
<groupId>org.apache.opennlp</groupId>
73+
<artifactId>opennlp-tools</artifactId>
74+
<version>1.8.1</version>
75+
</dependency>
76+
</dependencies>
3177

32-
<dependencies>
33-
<dependency>
34-
<groupId>com.google.inject</groupId>
35-
<artifactId>guice</artifactId>
36-
<version>4.1.0</version>
37-
</dependency>
38-
<dependency>
39-
<groupId>com.google.inject.extensions</groupId>
40-
<artifactId>guice-multibindings</artifactId>
41-
<version>4.1.0</version>
42-
</dependency>
43-
<dependency>
44-
<groupId>org.yaml</groupId>
45-
<artifactId>snakeyaml</artifactId>
46-
<version>1.17</version>
47-
</dependency>
48-
<dependency>
49-
<groupId>org.mapdb</groupId>
50-
<artifactId>mapdb</artifactId>
51-
<version>3.0.4</version>
52-
</dependency>
53-
<dependency>
54-
<groupId>args4j</groupId>
55-
<artifactId>args4j</artifactId>
56-
<version>2.33</version>
57-
</dependency>
58-
<dependency>
59-
<groupId>com.fasterxml.jackson.core</groupId>
60-
<artifactId>jackson-databind</artifactId>
61-
<version>${jackson.version}</version>
62-
</dependency>
63-
<dependency>
64-
<groupId>org.immutables</groupId>
65-
<artifactId>value</artifactId>
66-
<version>2.4.4</version>
67-
<scope>provided</scope>
68-
</dependency>
69-
<dependency>
70-
<groupId>org.apache.opennlp</groupId>
71-
<artifactId>opennlp-tools</artifactId>
72-
<version>1.7.2</version>
73-
</dependency>
74-
</dependencies>
75-
7678
</project>

0 commit comments

Comments
 (0)