Skip to content

Commit cb62a2e

Browse files
committed
Update adam dependency version to 1.0.
1 parent 5039e94 commit cb62a2e

File tree

2 files changed

+17
-7
lines changed

2 files changed

+17
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ Install
1313

1414
* JDK 1.8 or later, http://openjdk.java.net
1515
* Apache Maven 3.6.3 or later, http://maven.apache.org
16-
* Apache Spark 3.2.0 or later, http://spark.apache.org
17-
* ADAM: Genomic Data System 0.37.0 or later, https://github.com/bigdatagenomics/adam
16+
* Apache Spark 3.2.1 or later, http://spark.apache.org
17+
* ADAM: Genomic Data System 1.0 or later, https://github.com/bigdatagenomics/adam
1818

1919
To build
2020

@@ -35,7 +35,7 @@ Welcome to
3535
____ __
3636
/ __/__ ___ _____/ /__
3737
_\ \/ _ \/ _ `/ __/ '_/
38-
/___/ .__/\_,_/_/ /_/\_\ version 3.2.0
38+
/___/ .__/\_,_/_/ /_/\_\ version 3.2.1
3939
/_/
4040
4141
Using Scala version 2.12.15 (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0_191)

pom.xml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,19 +61,20 @@
6161
</license>
6262
</licenses>
6363
<properties>
64-
<adam.version>0.37.0</adam.version>
65-
<bdg-convert.version>0.12.0</bdg-convert.version>
64+
<adam.version>1.0</adam.version>
65+
<bdg-convert.version>1.0</bdg-convert.version>
6666
<biojava.version>6.0.5</biojava.version>
67+
<guava.version>31.1-jre</guava.version>
6768
<jdk.version>1.8</jdk.version>
6869
<junit.version>4.13.2</junit.version>
6970
<maven.enforcer.jdk-version>[1.8,)</maven.enforcer.jdk-version>
7071
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
7172
<project.build.targetEncoding>UTF-8</project.build.targetEncoding>
72-
<scala-guice.version>5.0.1</scala-guice.version>
73+
<scala-guice.version>5.1.0</scala-guice.version>
7374
<scala.version>2.12.15</scala.version>
7475
<scala.version.prefix>2.12</scala.version.prefix>
7576
<slf4j.version>1.7.30</slf4j.version>
76-
<spark.version>3.2.0</spark.version>
77+
<spark.version>3.2.1</spark.version>
7778
</properties>
7879
<build>
7980
<pluginManagement>
@@ -373,6 +374,10 @@
373374
<groupId>org.biojava</groupId>
374375
<artifactId>biojava-genome</artifactId>
375376
<exclusions>
377+
<exclusion>
378+
<groupId>com.google.guava</groupId>
379+
<artifactId>*</artifactId>
380+
</exclusion>
376381
<exclusion>
377382
<groupId>org.apache.logging.log4j</groupId>
378383
<artifactId>*</artifactId>
@@ -389,6 +394,11 @@
389394
<artifactId>slf4j-log4j12</artifactId>
390395
<version>${slf4j.version}</version>
391396
</dependency>
397+
<dependency>
398+
<groupId>com.google.guava</groupId>
399+
<artifactId>guava</artifactId>
400+
<version>${guava.version}</version>
401+
</dependency>
392402
</dependencies>
393403
</dependencyManagement>
394404
<dependencies>

0 commit comments

Comments
 (0)