Skip to content

Commit

Permalink
Merge pull request #43 from neicnordic/hotfix/jcenter-build
Browse files Browse the repository at this point in the history
make jcenter build work on docker file
  • Loading branch information
Dmytro Titov authored Oct 22, 2020
2 parents 67bd956 + 383a090 commit 0aac584
Showing 1 changed file with 29 additions and 17 deletions.
46 changes: 29 additions & 17 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,16 +70,6 @@
<artifactId>minio</artifactId>
<version>7.1.4</version>
</dependency>
<dependency>
<groupId>no.uio.ifi</groupId>
<artifactId>crypt4gh</artifactId>
<version>2.4.2</version>
</dependency>
<dependency>
<groupId>no.uio.ifi</groupId>
<artifactId>clearinghouse</artifactId>
<version>1.1.0</version>
</dependency>
<dependency>
<groupId>net.logstash.logback</groupId>
<artifactId>logstash-logback-encoder</artifactId>
Expand All @@ -90,15 +80,37 @@
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>no.uio.ifi</groupId>
<artifactId>crypt4gh</artifactId>
<version>2.4.2</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>no.uio.ifi</groupId>
<artifactId>clearinghouse</artifactId>
<version>1.1.0</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>

<repositories>
<repository>
<id>central</id>
<name>bintray</name>
<url>https://jcenter.bintray.com</url>
</repository>
</repositories>
<repositories>
<repository>
<id>jcenter</id>
<name>jcenter</name>
<url>https://jcenter.bintray.com</url>
</repository>
</repositories>

<build>
<plugins>
Expand Down

0 comments on commit 0aac584

Please sign in to comment.