Skip to content

Commit

Permalink
Deploy process to Maven fixed
Browse files Browse the repository at this point in the history
Readme changes
  • Loading branch information
JavierMonton committed Jan 17, 2021
1 parent 01dbca0 commit 533361f
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### Big Data Types v0.2.0
### Big Data Types v0.2.1

- Project splitted into multiple projects
- Project split into multiple projects
- core
- bigquery
- spark
Expand Down
24 changes: 20 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Big Data Types
![CI Tests](https://github.com/data-tools/big-data-types/workflows/ci-tests/badge.svg)
[![codecov](https://codecov.io/gh/data-tools/big-data-types/branch/main/graph/badge.svg)](https://codecov.io/gh/data-tools/big-data-types)
![Maven Central](https://img.shields.io/maven-central/v/io.github.data-tools/big-data-types_2.13)
![Maven Central](https://img.shields.io/maven-central/v/io.github.data-tools/big-data-types-core_2.13)
![Scala 2.12](https://img.shields.io/badge/Scala-2.12-red)
![Scala_2.13](https://img.shields.io/badge/Scala-2.13-red)

A library to transform Case Classes into Database schemas

Expand Down Expand Up @@ -32,11 +34,25 @@ For now, it supports BigQuery and Spark.
* [Creating a custom Formats](#creating-a-custom-formats)

# Quick Start
The library has different modules that can be imported separately
- BigQuery
```
libraryDependencies += "io.github.data-tools" % "big-data-types_2.13" % "{version}"
libraryDependencies += "io.github.data-tools" % "big-data-types-bigquery_2.13" % "{version}"
```
Versions for Scala 2.12 and 2.13 are available in Maven
2.12 is needed for Spark
- Spark
```
libraryDependencies += "io.github.data-tools" % "big-data-types-spark_2.12" % "{version}"
```
- Core
- To get support for abstract SqlTypes, it is included in the others, so it is not needed if you are using one of the others
```
libraryDependencies += "io.github.data-tools" % "big-data-types-core_2.13" % "{version}"
```

Versions for Scala ![Scala 2.12](https://img.shields.io/badge/Scala-2.12-red)
and ![Scala_2.13](https://img.shields.io/badge/Scala-2.13-red) are available in Maven



# BigQuery

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//used to build Sonatype releases
lazy val versionNumber = "0.2.0"
lazy val versionNumber = "0.2.1"
lazy val projectName = "big-data-types"
version := versionNumber
name := projectName
Expand Down

0 comments on commit 533361f

Please sign in to comment.