Skip to content

Commit

Permalink
Fix for release issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sjoerdmulder committed Jan 21, 2025
1 parent 3570c22 commit 80010d3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 30 deletions.
38 changes: 9 additions & 29 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -12,39 +12,19 @@ lazy val root = (project in file("."))
List(
organization := "com.crobox.clickhouse",
homepage := Some(url("https://github.com/crobox/clickhouse-scala-client")),
licenses := List("The GNU Lesser General Public License, Version 3.0" -> url("http://www.gnu.org/licenses/lgpl-3.0.txt")),
developers := List(
Developer(
"crobox",
"Crobox",
"[email protected]",
url("https://crobox.com")
)
),
scalaVersion := "2.13.16",
crossScalaVersions := List("2.13.16", "3.3.1"),
javacOptions ++= Seq("-g", "-Xlint:unchecked", "-Xlint:deprecation", "-source", "11", "-target", "11"),
scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature", "-language:_", "-encoding", "UTF-8"),
// Managed by the sbt-ci-release plugin
// publishTo := {
// val nexus = "https://oss.sonatype.org/"
// if (version.value.trim.endsWith("SNAPSHOT"))
// Some("snapshots" at nexus + "content/repositories/snapshots")
// else
// Some("releases" at nexus + "service/local/staging/deploy/maven2")
// },
pomExtra := {
<url>https://github.com/crobox/clickhouse-scala-client</url>
<licenses>
<license>
<name>The GNU Lesser General Public License, Version 3.0</name>
<url>http://www.gnu.org/licenses/lgpl-3.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>git@github.com:crobox/clickhouse-scala-client.git</url>
<connection>scm:git@github.com:crobox/clickhouse-scala-client.git</connection>
</scm>
<developers>
<developer>
<id>crobox</id>
<name>crobox</name>
<url>https://github.com/crobox</url>
</developer>
</developers>
}
)
),
name := "clickhouse"
Expand Down
1 change: 0 additions & 1 deletion version.sbt

This file was deleted.

0 comments on commit 80010d3

Please sign in to comment.