Switch to Mill

This commit is contained in:
Aly 2020-09-18 11:51:04 -07:00
parent cc43229ef0
commit f78d1a7aeb
6 changed files with 34 additions and 38 deletions

32
.gitignore vendored
View File

@ -1,28 +1,4 @@
# Created by https://www.toptal.com/developers/gitignore/api/scala,sbt,metals
# Edit at https://www.toptal.com/developers/gitignore?templates=scala,sbt,metals
### Metals ###
.metals/
.bloop/
project/metals.sbt
### SBT ###
# Simple Build Tool
# http://www.scala-sbt.org/release/docs/Getting-Started/Directories.html#configuring-version-control
dist/*
target/
lib_managed/
src_managed/
project/boot/
project/plugins/project/
.history
.cache
.lib/
### Scala ###
*.class
*.log
# End of https://www.toptal.com/developers/gitignore/api/scala,sbt,metals
.bloop/*
.metals/*
.vscode/*
out/*

View File

@ -1,6 +0,0 @@
lazy val core = (project in file("core")).settings(
organization := "tf.bug",
name := "fancade-core",
version := "2.0.0",
scalaVersion := "2.13.3",
)

23
build.sc Normal file
View File

@ -0,0 +1,23 @@
import mill._, scalalib._, publish._
object core extends ScalaModule with PublishModule {
override def scalaVersion = "2.13.3"
override def artifactName = "fancade-core"
override def publishVersion = "2.0.0"
override def pomSettings = PomSettings(
description = "A library for representing Fancade scripts",
organization = "tf.bug",
url = "https://gitdab.com/s/fancadescala",
licenses = Seq(License.MIT),
versionControl = VersionControl(
browsableRepository = Some("https://gitdab.com/s/fancadescala"),
connection = Some(VersionControlConnection.gitGit("gitdab.com", "s/fancadescala.git")),
developerConnection = Some(VersionControlConnection.gitSsh("ssh.gitdab.com", ":s/fancadescala.git", username = Some("git"))),
tag = None,
),
developers = Seq(
Developer("sorenbug", "Soren", "https://gitdab.com/s"),
),
)
}

View File

@ -0,0 +1,7 @@
package tf.bug.fancade
object Foo {
def main(args: Array[String]): Unit = {
println("hi")
}
}

View File

@ -1 +0,0 @@
sbt.version = 1.3.13

View File

@ -1,3 +0,0 @@
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.1.13")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.10")
addSbtPlugin("org.jmotor.sbt" % "sbt-dependency-updates" % "1.2.2")