Skip to content
This repository has been archived by the owner on Dec 1, 2024. It is now read-only.

Commit

Permalink
proper naming
Browse files Browse the repository at this point in the history
  • Loading branch information
jjba23 committed Sep 30, 2024
1 parent fd19e5e commit d1bc71f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@ fmt:
GITHUB_TOKEN="" sbt "scalafixAll; scalafmt"
test:
GITHUB_TOKEN="" sbt "test"
release:
sbt "publishSigned"
sbt "sonatypeBundleRelease"
9 changes: 4 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ import scala.util.control.NonFatal
import xerial.sbt.Sonatype.sonatypeCentralHost
import xerial.sbt.Sonatype._

ThisBuild / organization := "io.github.jjba23"
name := "zzspec"

ThisBuild / sonatypeProjectHosting := Some(
GitHubHosting("jjba23", "zzspec", "jjbigorra@gmail.com")
)
Expand All @@ -10,9 +13,7 @@ ThisBuild / sonatypeCredentialHost := sonatypeCentralHost

ThisBuild / publishTo := sonatypePublishToBundle.value

ThisBuild / version := "0.8.10"

name := "io.github.jjba23.zzspec"
ThisBuild / version := "0.8.13"

ThisBuild / resolvers += "Mulesoft".at(
"https://repository.mulesoft.org/nexus/content/repositories/public/"
Expand All @@ -26,8 +27,6 @@ val zzspec = project
dependencyOverrides ++= zzspecDependencyOverrides
)

ThisBuild / publishMavenStyle := true

ThisBuild / licenses := Seq(
"LGPL3" -> url("https://www.gnu.org/licenses/lgpl-3.0.en.html")
)
Expand Down

0 comments on commit d1bc71f

Please sign in to comment.