Skip to content

Commit 537fd29

Browse files
committed
Publish to Maven Central
1 parent 9268219 commit 537fd29

File tree

4 files changed

+14
-15
lines changed

4 files changed

+14
-15
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,5 @@ package-lock.json
2222
node_modules/
2323
.DS_Store
2424
vuepress/docs/.vuepress/dist
25+
.cursor
26+
project/project/metals.sbt

build.sbt

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,29 +7,27 @@ addCommandAlias("check", "all scalafmtSbtCheck scalafmtCheck test:scalafmtCheck"
77

88
lazy val root = (project in file("."))
99
.settings(
10-
name := "zio-agones",
11-
organization := "com.devsisters",
12-
homepage := Some(url("https://github.com/devsisters/zio-agones")),
13-
scalaVersion := scala213,
14-
crossScalaVersions := allScala,
15-
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
16-
scmInfo := Some(
10+
name := "zio-agones",
11+
organization := "com.devsisters",
12+
homepage := Some(url("https://github.com/devsisters/zio-agones")),
13+
scalaVersion := scala213,
14+
crossScalaVersions := allScala,
15+
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
16+
scmInfo := Some(
1717
ScmInfo(
1818
url("https://github.com/devsisters/zio-agones"),
1919
"scm:git:git@github.com:devsisters/zio-agones.git"
2020
)
2121
),
22-
developers := List(
22+
developers := List(
2323
Developer("ghostdogpr", "Pierre Ricadat", "ghostdogpr@gmail.com", url("https://github.com/ghostdogpr"))
2424
),
25-
Compile / PB.targets := Seq(
25+
Compile / PB.targets := Seq(
2626
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value / "scalapb",
2727
scalapb.zio_grpc.ZioCodeGenerator -> (Compile / sourceManaged).value / "scalapb"
2828
),
2929
libraryDependencies ++= Seq(
3030
"io.grpc" % "grpc-netty" % "1.63.0",
3131
"com.thesamet.scalapb" %% "scalapb-runtime-grpc" % scalapb.compiler.Version.scalapbVersion
32-
),
33-
sonatypeRepository := "https://s01.oss.sonatype.org/service/local",
34-
sonatypeCredentialHost := "s01.oss.sonatype.org"
32+
)
3533
)

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version = 1.9.3
1+
sbt.version = 1.11.1

project/plugins.sbt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
2-
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10")
3-
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.13")
2+
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.1")
43
addSbtPlugin("com.thesamet" % "sbt-protoc" % "1.0.2")
54

65
libraryDependencies += "com.thesamet.scalapb.zio-grpc" %% "zio-grpc-codegen" % "0.6.2"

0 commit comments

Comments
 (0)