Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
* limitations under the License.
*/

lazy val fastring = crossProject in file(".")
lazy val fastring = (file(".") / crossProject)

lazy val fastringJS = fastring.js
lazy val fastringJVM = fastring.jvm

lazy val benchmark = project.dependsOn(fastringJVM)

organization in ThisBuild := "com.dongxiguo"
(ThisBuild / organization) := "com.dongxiguo"

publish / skip := true

Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.3.13
sbt.version=1.8.2
4 changes: 2 additions & 2 deletions secret.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
lazy val secret = {
for (gist <- sys.env.get("SECRET_GIST")) yield {
val secret = project.settings(publish / skip := true).in {
val secret = ({
val secretDirectory = file(sourcecode.File()).getParentFile / "secret"
IO.delete(secretDirectory)
org.eclipse.jgit.api.Git
Expand All @@ -10,7 +10,7 @@ lazy val secret = {
.call()
.close()
secretDirectory
}
} / project.settings(publish / skip := true))
secret
}
}.getOrElse(null)