From 0ba4368271bf2e2b748029dc54f7deb4c17d1205 Mon Sep 17 00:00:00 2001 From: Tim Van Wassenhove Date: Mon, 6 Nov 2023 15:25:04 +0100 Subject: [PATCH] attempt to fix release and updated readme --- README.md | 4 +++- build.sbt | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8aa2aa8..b34ff13 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/be.timvw/adobe-analytics-datafeed-datasource_2.12/badge.svg)](https://central.sonatype.com/artifact/be.timvw/adobe-analytics-datafeed-datasource_2.12) + # Datasource for Adobe Analytics Data Feed Adobe Analytics [Data feeds](https://experienceleague.adobe.com/docs/analytics/export/analytics-data-feed/data-feed-contents/datafeeds-contents.html?lang=en) are a means to get raw data out of Adobe Analytics. @@ -10,7 +12,7 @@ Concretly, escaped values are not handled correctly by a CSV parser due to inher Make sure the package is in the classpath, eg: by using the --packages option: ```bash -spark-shell --packages "be.timvw:adobe-analytics-datafeed-datasource_2.12:0.1.0" +spark-shell --packages "be.timvw:adobe-analytics-datafeed-datasource_2.12:0.0.1" ``` And you can read the feed as following: diff --git a/build.sbt b/build.sbt index 9ba74d6..a289c9f 100644 --- a/build.sbt +++ b/build.sbt @@ -2,8 +2,8 @@ lazy val scala212 = "2.12.18" lazy val supportedScalaVersions = List(scala212) -ThisBuild / organization := "be.timvw" -ThisBuild / name := "adobe-analytics-datafeed-datasource" +organization := "be.timvw" +name := "adobe-analytics-datafeed-datasource" ThisBuild / homepage := Some(url("https://github.com/timvw/adobe-analytics-datafeed-datasource")) ThisBuild / licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0"))