-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
31 lines (21 loc) · 1.07 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
libraryDependencies += "org.apache.sanselan" % "sanselan" % "0.97-incubator"
libraryDependencies += "org.scala-lang" % "scala-compiler" % "2.11.8"
resolvers += "swt-repo" at "https://github.com/maven-eclipse/maven-eclipse.github.io/tree/master/maven/"
libraryDependencies += "org.eclipse.swt" % "org.eclipse.swt.gtk.linux.x86_64" % "4.3"
libraryDependencies += "org.apache.commons" % "commons-io" % "1.3.2"
seq(lwjglSettings: _*)
// A fork of native-utils from https://github.com/adamheinrich/native-utils that includes a build.sbt in addition to the pom.xml. This allows to use it as a sbt dependency.
//lazy val nativeUtils = ProjectRef(uri("git://github.com/phdoerfler/native-utils#master"), "native-utils")
lazy val commonSettings = Seq(
version := "0.1",
organization := "xyz.riedl",
scalaVersion := "2.11.8"
)
lazy val copi = (project in file(".")).
// dependsOn(nativeUtils).
settings(commonSettings: _*).
settings(
mainClass in Compile := Some("copi.DefaultStarter"),
mainClass in assembly := Some("copi.ScalaEntryPoint")
)
seq(lwjglSettings: _*)