From 9c5307ca7428e28b1ef019ffe0917cc31683e81f Mon Sep 17 00:00:00 2001 From: "Ariel Shaqed (Scolnicov)" Date: Wed, 18 Oct 2023 09:28:37 +0300 Subject: [PATCH] Actually package the right project Was publishing an empty JAR after some recent change. SBT is weird. --- .gitignore | 70 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ build.sbt | 7 ++---- 2 files changed, 72 insertions(+), 5 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6880d89 --- /dev/null +++ b/.gitignore @@ -0,0 +1,70 @@ +# This is https://raw.githubusercontent.com/scala/scala/2.13.x/.gitignore + +# Are you tempted to edit this file? +# +# First consider if the changes make sense for all, +# or if they are specific to your workflow/system. +# If it is the latter, you can augment this list with +# entries in .git/info/excludes +# +# see also test/files/.gitignore +# + +# +# JARs aren't checked in, they are fetched by sbt +# +/lib/*.jar +/test/files/codelib/*.jar +/test/files/lib/*.jar +/test/files/speclib/instrumented.jar +/tools/*.jar + +# Developer specific properties +/build.properties +/buildcharacter.properties + +# might get generated when testing Jenkins scripts locally +/jenkins.properties + +# target directory for build +/build/ + +# other +/out/ +/bin/ +/sandbox/ + +# intellij +/src/intellij*/*.iml +/src/intellij*/*.ipr +/src/intellij*/*.iws +**/.cache +/.idea +/.settings + +# vscode +/.vscode + +# Standard symbolic link to build/quick/bin +/qbin + +# sbt's target directories +/target/ +/project/**/target/ +/test/macro-annot/target/ +/test/files/target/ +/test/target/ +/build-sbt/ +local.sbt +jitwatch.out + +# Used by the restarr/restarrFull commands as target directories +/build-restarr/ +/target-restarr/ + +# metals +.metals +.bloop +project/**/metals.sbt + +.bsp diff --git a/build.sbt b/build.sbt index 55a254b..83a3501 100644 --- a/build.sbt +++ b/build.sbt @@ -1,9 +1,6 @@ -lazy val projectVersion = "0.0.1" +lazy val projectVersion = "0.0.3-RC.0" -lazy val project = Project("lakefs-spark-extension", file("./src/")) - .settings( - version := projectVersion, - ) +version := projectVersion semanticdbEnabled := true semanticdbVersion := scalafixSemanticdb.revision