Skip to content

Commit e831e67

Browse files
update version to 1.2.0
1 parent 11d868c commit e831e67

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Example dockerfile that generates an image using GATK and using this package as a provider for the 's3' scheme.
22
FROM us.gcr.io/broad-gatk/gatk:4.2.0.0
3-
COPY build/libs/nio-spi-for-s3-1.1.0-all.jar /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/nio-spi-for-s3-1.1.0-all.jar
3+
COPY build/libs/nio-spi-for-s3-1.2.0-all.jar /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/nio-spi-for-s3-1.2.0-all.jar
44
WORKDIR /gatk
55
CMD ["bash", "--init-file", "/gatk/gatkenv.rc"]
66
ENV PATH /gatk:$PATH

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,21 @@ As a concrete example, using Java 9+ with the popular genomics application [GATK
4242
java -classpath build/libs/nio-spi-for-s3-1.1.0-all.jar:gatk-package-4.2.2.0-local.jar org.broadinstitute.hellbender.Main CountReads -I s3://<some-bucket>/ena/PRJEB3381/ERR194158/ERR194158.hg38.bam
4343
```
4444

45+
## Including as a dependency
46+
47+
Releases of this library are available from Maven Central and can be added to projects using the standard dependency
48+
declarations.
49+
50+
For example:
51+
52+
```xml
53+
<dependency>
54+
<groupId>software.amazon.nio.s3</groupId>
55+
<artifactId>aws-java-nio-spi-for-s3</artifactId>
56+
<version>1.2.0</version>
57+
</dependency>
58+
```
59+
4560
## AWS Credentials
4661

4762
This library will perform all actions using credentials according to the AWS SDK for Java [default credential provider

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ repositories {
2222

2323
group = 'software.amazon.nio.s3'
2424
archivesBaseName = 'nio-spi-for-s3'
25-
version = '1.1.1'
25+
version = '1.2.0'
2626

2727
apply plugin: 'java'
2828
sourceCompatibility = 1.8

0 commit comments

Comments
 (0)