summaryrefslogtreecommitdiff
path: root/integration
diff options
context:
space:
mode:
authorGuillaume Massé <masgui@gmail.com>2018-02-26 19:11:59 +0100
committerLi Haoyi <haoyi.sg@gmail.com>2018-02-26 10:11:59 -0800
commitc537a7ba76f320fb770ad49817701932c7744640 (patch)
treeff745eec8a5918bee6b6012191d0292bb4aa4b42 /integration
parent2a59977d9c4aa23513d2c38a9fa151f9c11e8dc0 (diff)
downloadmill-c537a7ba76f320fb770ad49817701932c7744640.tar.gz
mill-c537a7ba76f320fb770ad49817701932c7744640.tar.bz2
mill-c537a7ba76f320fb770ad49817701932c7744640.zip
Add predefined licenses from spdx (#144)
* Add predefined licenses from spdx * Fix License usages
Diffstat (limited to 'integration')
-rw-r--r--integration/test/resources/acyclic/build.sc4
-rw-r--r--integration/test/resources/upickle/build.sc4
2 files changed, 2 insertions, 6 deletions
diff --git a/integration/test/resources/acyclic/build.sc b/integration/test/resources/acyclic/build.sc
index 373be20a..de228b24 100644
--- a/integration/test/resources/acyclic/build.sc
+++ b/integration/test/resources/acyclic/build.sc
@@ -12,9 +12,7 @@ class AcyclicModule(val crossScalaVersion: String) extends CrossSbtModule with P
description = artifactName(),
organization = "com.lihaoyi",
url = "https://github.com/lihaoyi/acyclic",
- licenses = Seq(
- License("MIT license", "http://www.opensource.org/licenses/mit-license.php")
- ),
+ licenses = Seq(License.MIT),
scm = SCM(
"git://github.com/lihaoyi/acyclic.git",
"scm:git://github.com/lihaoyi/acyclic.git"
diff --git a/integration/test/resources/upickle/build.sc b/integration/test/resources/upickle/build.sc
index 007ab9a2..cd0b4d03 100644
--- a/integration/test/resources/upickle/build.sc
+++ b/integration/test/resources/upickle/build.sc
@@ -12,9 +12,7 @@ trait UpickleModule extends CrossSbtModule with PublishModule{
description = artifactName(),
organization = "com.lihaoyi",
url = "https://github.com/lihaoyi/upickle",
- licenses = Seq(
- License("MIT license", "http://www.opensource.org/licenses/mit-license.php")
- ),
+ licenses = Seq(License.MIT),
scm = SCM(
"git://github.com/lihaoyi/upickle.git",
"scm:git://github.com/lihaoyi/upickle.git"