-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sc
30 lines (22 loc) · 857 Bytes
/
build.sc
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
import mill._, scalalib._, publish._
object java_io_extras extends ScalaModule with PublishModule {
def scalaVersion = "2.13.0-M4"
def publishVersion = "0.0.1"
def pomSettings = PomSettings(
description = "Extra integrations between Scala and java.io",
organization = "com.github.joshlemer",
url = "https://github.com/joshlemer/ScalaJavaIoExtras",
licenses = Seq(License.MIT),
versionControl = VersionControl.github("joshlemer", "ScalaJavaIoExtras"),
developers = Seq(
Developer("joshlemer", "Josh Lemer","https://github.com/joshlemer")
)
)
}
/*
name := "InputStreamIterator"
version := "0.1"
scalaVersion := "2.13.0-M4"
libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % Test
publishTo := Some("Sonatype Snapshots Nexus" at "https://oss.sonatype.org/content/repositories/snapshots")
*/