Permalink
...
Checking mergeability…
Don’t worry, you can still create the pull request.
Comparing changes
Open a pull request
- 1 commit
- 1 file changed
- 0 commit comments
- 1 contributor
Unified
Split
Showing
with
45 additions
and 3 deletions.
- +45 −3 pom.xml
View
48
pom.xml
| @@ -1,12 +1,53 @@ | ||
| <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/maven-v4_0_0.xsd"> | ||
| <modelVersion>4.0.0</modelVersion> | ||
| - <groupId>org.monarchinitiative.owlsim</groupId> | ||
| + <groupId>org.monarchinitiative</groupId> | ||
| <artifactId>owlsim</artifactId> | ||
| - <version>3.0-SNAPSHOT</version> | ||
| - <name>owlsim</name> | ||
| + <version>0.1.0</version> | ||
| + <name>${project.groupId}:${project.artifactId}</name> | ||
| + <description>Ontology-based fuzzy search and matching</description> | ||
| + <inceptionYear>2011</inceptionYear> | ||
| <packaging>pom</packaging> | ||
| + <licenses> | ||
| + <license> | ||
| + <name>The BSD 3-Clause License</name> | ||
| + <url>https://opensource.org/licenses/BSD-3-Clause</url> | ||
| + <distribution>repo</distribution> | ||
| + </license> | ||
| + </licenses> | ||
| + <developers> | ||
| + <developer> | ||
| + <name>Chris Mungall</name> | ||
| + <email>cjmungall@lbl.gov</email> | ||
| + <organization>Monarch Initiative</organization> | ||
| + <organizationUrl>http://monarchinitiative.org</organizationUrl> | ||
| + </developer> | ||
| + <developer> | ||
| + <name>Jeremy Nguyen-Xuan</name> | ||
| + <email>jnguyenxuan@lbl.gov</email> | ||
| + <organization>Monarch Initiative</organization> | ||
| + <organizationUrl>http://monarchinitiative.org</organizationUrl> | ||
| + </developer> | ||
| + <developer> | ||
| + <name>Jules Jacobsen</name> | ||
| + <email>jules.jacobsen@gmail.com</email> | ||
| + <organization>Monarch Initiative</organization> | ||
| + <organizationUrl>http://monarchinitiative.org</organizationUrl> | ||
| + </developer> | ||
| + </developers> | ||
| + <scm> | ||
| + <connection>scm:git:https://github.com/monarch-initiative/owlsim-v3.git</connection> | ||
| + <developerConnection>scm:git:git@github.com:monarch-initiative/owlsim-v3.git | ||
| + </developerConnection> | ||
| + <url>https://github.com/monarch-initiative/owlsim-v3</url> | ||
| + <tag>HEAD</tag> | ||
| + </scm> | ||
| + <ciManagement> | ||
| + <system>Travis CI</system> | ||
| + <url>https://travis-ci.org/monarch-initiative/owlsim-v3</url> | ||
| + </ciManagement> | ||
| + | ||
| <modules> | ||
| <module>owlsim-core</module> | ||
| <module>owlsim-services</module> | ||
| @@ -19,6 +60,7 @@ | ||
| <dropwizard.version>0.7.1</dropwizard.version> | ||
| <guice.version>4.0</guice.version> | ||
| <jackson.version>2.8.2</jackson.version> | ||
| + <java.version>1.8</java.version> | ||
| </properties> | ||
| <build> | ||
| <plugins> | ||