Skip to content

Commit

Permalink
Rename groupId and package to gfccollective
Browse files Browse the repository at this point in the history
  • Loading branch information
gheine committed Jan 21, 2020
1 parent 01c235f commit 3ac8fed
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 19 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# gfc-aws-s3 [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.gilt/gfc-aws-s3_2.12/badge.svg?style=plastic)](https://maven-badges.herokuapp.com/maven-central/com.gilt/gfc-aws-s3_2.12) [![Build Status](https://travis-ci.com/gilt/gfc-aws-s3.svg?token=GMHJnzRkMmqWsbzuEWgW&branch=master)](https://travis-ci.com/gilt/gfc-aws-s3)
# gfc-aws-s3 [![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.gfccollective/gfc-aws-s3_2.12/badge.svg?style=plastic)](https://maven-badges.herokuapp.com/maven-central/org.gfccollective/gfc-aws-s3_2.12) [![Build Status](https://travis-ci.com/gilt/gfc-aws-s3.svg?token=GMHJnzRkMmqWsbzuEWgW&branch=master)](https://travis-ci.com/gilt/gfc-aws-s3)

Tools for streaming data to and from S3. Part of the [Gilt Foundation Classes](https://github.com/gilt?q=gfc).

Expand All @@ -7,7 +7,7 @@ Tools for streaming data to and from S3. Part of the [Gilt Foundation Classes](h
The library provides tools to integrate akka-streams with Amazon S3 storage service. To use it add to your dependencies:

```sbt
"com.gilt" %% "gfc-aws-s3" % "0.1.0"
"org.gfccollective" %% "gfc-aws-s3" % "0.1.0"
```

The library contains akka-stream Sources and Sinks to Stream data from and to S3.
Expand All @@ -19,7 +19,7 @@ Allows uploading data to S3 in a streaming manner. The underlying implementation
To create the source:

```scala
import com.gilt.gfc.aws.s3.akka.S3MultipartUploaderSink._
import org.gfccollective.aws.s3.akka.S3MultipartUploaderSink._

val bucketName = "test-bucket"
val fileKey = "test-file"
Expand All @@ -34,7 +34,7 @@ val sink = Sink.s3MultipartUpload(s3Client, bucketName, fileKey, chunkSize)
The sink could also be created in different style manner:

```scala
import com.gilt.gfc.aws.s3.akka.S3MultipartUploaderSink
import org.gfccollective.aws.s3.akka.S3MultipartUploaderSink

val sink = S3MultipartUploaderSink(s3Client, bucketName, fileKey, chunkSize)
```
Expand All @@ -52,7 +52,7 @@ Allows accessing S3 objects as a stream source in two different manners - by par
To do that, use:

```scala
import com.gilt.gfc.aws.s3.akka.S3DownloaderSource._
import org.gfccollective.aws.s3.akka.S3DownloaderSource._

val bucketName = "test-bucket"
val fileKey = "test-file"
Expand All @@ -69,7 +69,7 @@ val source = Source.s3MultipartDownload(s3Client, bucketName, fileKey, memoryBuf
To do that use:

```scala
import com.gilt.gfc.aws.s3.akka.S3DownloaderSource._
import org.gfccollective.aws.s3.akka.S3DownloaderSource._

val bucketName = "test-bucket"
val fileKey = "test-file"
Expand Down
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name := "gfc-aws-s3"

organization := "com.gilt"
organization := "org.gfccollective"

description := "Library to handle data streaming to and from s3"

scalaVersion := "2.12.10"
scalaVersion := "2.13.1"

crossScalaVersions := Seq(scalaVersion.value, "2.13.1")
crossScalaVersions := Seq(scalaVersion.value, "2.12.10")

scalacOptions += "-target:jvm-1.8"

Expand All @@ -16,8 +16,8 @@ libraryDependencies ++= Seq(
"org.slf4j" % "slf4j-api" % "1.7.30",
"com.amazonaws" % "aws-java-sdk-s3" % "1.11.681",
"com.typesafe.akka" %% "akka-stream" % "2.6.1",
"org.scalatest" %% "scalatest" % "3.1.0" % Test,
"org.scalamock" %% "scalamock" % "4.4.0" % Test
"org.scalatest" %% "scalatest" % "3.1.0" % Test,
"org.scalamock" %% "scalamock" % "4.4.0" % Test,
)


Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.gilt.gfc.aws.s3.akka
package org.gfccollective.aws.s3.akka

import java.util.Date

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.gilt.gfc.aws.s3.akka
package org.gfccollective.aws.s3.akka

import akka.stream.stage._
import akka.stream._
Expand Down Expand Up @@ -77,4 +77,4 @@ object FoldResourceSink {

}
}
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.gilt.gfc.aws.s3.akka
package org.gfccollective.aws.s3.akka

import akka.NotUsed
import akka.stream._
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.gilt.gfc.aws.s3.akka
package org.gfccollective.aws.s3.akka

import akka.stream.scaladsl.{Flow, Keep, Sink, Source}
import akka.util.ByteString
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package com.gilt.gfc.aws.s3.akka
package org.gfccollective.aws.s3.akka

class IntendedTestFailureException extends Exception
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.gilt.gfc.aws.s3.akka
package org.gfccollective.aws.s3.akka

import scala.language.postfixOps

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.gilt.gfc.aws.s3.akka
package org.gfccollective.aws.s3.akka

import scala.language.postfixOps

Expand Down

0 comments on commit 3ac8fed

Please sign in to comment.