-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
61 lines (57 loc) · 2.33 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import xerial.sbt.Sonatype.*
enablePlugins(SitePreviewPlugin, ParadoxSitePlugin)
enablePlugins(SiteScaladocPlugin)
enablePlugins(GhpagesPlugin)
ThisBuild / organization := "io.github.scala-tessella"
ThisBuild / scalaVersion := "3.3.4"
ThisBuild / semanticdbEnabled := true
ThisBuild / semanticdbVersion := scalafixSemanticdb.revision
ThisBuild / versionScheme := Some("early-semver")
ThisBuild / licenses := Seq("APL2" -> url("https://www.apache.org/licenses/LICENSE-2.0.txt"))
ThisBuild / publishTo := sonatypePublishToBundle.value
ThisBuild / developers := List(Developer("scala-tessella", "scala-tessella", "mario.callisto@gmail.com", url("https://github.com/scala-tessella")))
ThisBuild / homepage := Some(url("https://github.com/scala-tessella/tessella"))
ThisBuild / scmInfo := Some(ScmInfo(
url("https://github.com/scala-tessella/tessella"),
"scm:git:https://github.com/scala-tessella/tessella.git",
"scm:git:git@github.com:scala-tessella/tessella.git"
))
lazy val root: Project =
project
.in(file("."))
.aggregate(tessella.js, tessella.jvm)
.settings(
sonatypeProjectHosting := Some(GitHubHosting("scala-tessella", "tessella", "mario.callisto@gmail.com")),
sonatypeCredentialHost := "s01.oss.sonatype.org",
SiteScaladoc / siteSubdirName := "api",
paradoxProperties += ("scaladoc.base_url" -> "api"),
libraryDependencies ++= Seq(
"io.github.scala-tessella" %% "ring-seq" % "0.6.2",
"io.github.iltotore" %% "iron" % "2.6.0",
"org.scala-lang.modules" %% "scala-xml" % "2.3.0",
),
git.remoteRepo := sonatypeProjectHosting.value.get.scmUrl,
ghpagesNoJekyll := true,
scalacOptions += "-deprecation"
)
lazy val tessella =
crossProject(JSPlatform, JVMPlatform)
.crossType(CrossType.Pure)
.in(file("."))
.settings(
name := "tessella",
description := "Tilings by regular polygons",
libraryDependencies ++= Seq(
"io.github.scala-tessella" %%% "ring-seq" % "0.6.2",
"io.github.iltotore" %%% "iron" % "2.6.0",
"org.scala-lang.modules" %%% "scala-xml" % "2.3.0",
"org.scalatest" %%% "scalatest" % "3.2.19" % "test",
"org.scalacheck" %%% "scalacheck" % "1.18.1" % "test",
)
)
.jvmSettings(
// Add JVM-specific settings here
)
.jsSettings(
// Add JS-specific settings here
)