-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add publish configuration for Maven Central releases * Allow Scala Tests action to be manually triggered (#2) Signed-off-by: Dr. Daniel Alexander Smith <daniel@danielsmith.eu> * add avro support for RecordValue object (#1) * add avro support for RecordValue object Signed-off-by: Dr. Daniel Alexander Smith <daniel@danielsmith.eu> * use avro version that doesnt conflict with jackson --------- Signed-off-by: Dr. Daniel Alexander Smith <daniel@danielsmith.eu> Co-authored-by: Dr. Daniel Alexander Smith <daniel@danielsmith.eu> * Bump to v1.1.0 Signed-off-by: Dr. Daniel Alexander Smith <daniel@danielsmith.eu> * Create CODEOWNERS Signed-off-by: Dr. Daniel Alexander Smith <daniel@danielsmith.eu> --------- Signed-off-by: Dr. Daniel Alexander Smith <daniel@danielsmith.eu> Co-authored-by: Edward-Jones-6point6 <88337463+Edward-Jones-6point6@users.noreply.github.com>
- Loading branch information
1 parent
c1284a6
commit d9104b6
Showing
6 changed files
with
49 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* @danielsmith-eu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
name: Scala CI - Run Tests | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
ThisBuild / organization := "io.github.6point6" | ||
ThisBuild / organizationName := "6point6" | ||
ThisBuild / organizationHomepage := Some(url("https://6point6.co.uk/")) | ||
|
||
ThisBuild / scmInfo := Some( | ||
ScmInfo( | ||
url("https://github.com/6point6/data-quality-profiler-and-rules-engine"), | ||
"scm:git@github.com:6point6/data-quality-profiler-and-rules-engine.git" | ||
) | ||
) | ||
ThisBuild / developers := List( | ||
Developer( | ||
id = "danielsmith-eu", | ||
name = "Dr. Daniel Alexander Smith", | ||
email = "dan.smith@6point6.co.uk", | ||
url = url("http://danielsmith.eu") | ||
) | ||
) | ||
|
||
ThisBuild / description := "Data Quality Profiler and Rules Engine." | ||
ThisBuild / licenses := List( | ||
"MIT" -> new URL("https://opensource.org/license/mit/") | ||
) | ||
ThisBuild / homepage := Some(url("https://github.com/6point6/data-quality-profiler-and-rules-engine")) | ||
|
||
// Remove all additional repository other than Maven Central from POM | ||
ThisBuild / pomIncludeRepository := { _ => false } | ||
ThisBuild / publishTo := { | ||
// For accounts created after Feb 2021: | ||
val nexus = "https://s01.oss.sonatype.org/" | ||
//val nexus = "https://oss.sonatype.org/" | ||
if (isSnapshot.value) Some("snapshots" at nexus + "content/repositories/snapshots") | ||
else Some("releases" at nexus + "service/local/staging/deploy/maven2") | ||
} | ||
ThisBuild / publishMavenStyle := true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters