aboutsummaryrefslogtreecommitdiff
path: root/stage2/License.scala
diff options
context:
space:
mode:
Diffstat (limited to 'stage2/License.scala')
-rw-r--r--stage2/License.scala9
1 files changed, 9 insertions, 0 deletions
diff --git a/stage2/License.scala b/stage2/License.scala
new file mode 100644
index 0000000..7100f55
--- /dev/null
+++ b/stage2/License.scala
@@ -0,0 +1,9 @@
+package cbt
+import java.net.URL
+case class License(name: String, url: URL)
+object License{
+ object Apache2 extends License(
+ "Apache-2.0",
+ new URL(s"http://www.apache.org/licenses/LICENSE-2.0")
+ )
+}