File tree Expand file tree Collapse file tree 4 files changed +30
-3
lines changed Expand file tree Collapse file tree 4 files changed +30
-3
lines changed Original file line number Diff line number Diff line change 3
3
.settings
4
4
target
5
5
project /boot
6
+ .scala_dependencies
Original file line number Diff line number Diff line change @@ -5,4 +5,27 @@ version := "0.1"
5
5
scalaVersion := " 2.9.0-1"
6
6
7
7
// dependencies
8
- libraryDependencies += " junit" % " junit" % " 4.8" % " test"
8
+ // geo
9
+ {
10
+ val geotoolsVersion = " 2.7.2"
11
+ libraryDependencies += " org.geotools" % " gt-main" % geotoolsVersion
12
+ libraryDependencies += " org.geotools" % " gt-shapefile" % geotoolsVersion
13
+ }
14
+
15
+ // test
16
+ libraryDependencies += " com.novocode" % " junit-interface" % " 0.7" % " test->default"
17
+
18
+ libraryDependencies += " junit" % " junit" % " 4.8.1" % " test"
19
+
20
+ libraryDependencies += " org.scala-tools.testing" %% " scalacheck" % " 1.9" % " test"
21
+
22
+ // plugins
23
+ seq(sbtassembly.Plugin .assemblySettings: _* )
24
+
25
+ // resolvers
26
+ resolvers += " Nexus Public Repo" at " http://nexus.places.devbln.europe.nokia.com/nexus/content/groups/public/"
27
+
28
+ resolvers += " Nexus Public Snapshots Repo" at " http://nexus.places.devbln.europe.nokia.com/nexus/content/groups/public-snapshots/"
29
+
30
+ // other
31
+ ivyLoggingLevel := UpdateLogging .Full
Original file line number Diff line number Diff line change 13
13
14
14
<dependencies >
15
15
16
- <!-- GEO -->
16
+ <!-- GEO -->
17
17
<dependency >
18
18
<groupId >org.geotools</groupId >
19
19
<artifactId >gt-main</artifactId >
75
75
<plugin >
76
76
<groupId >org.apache.maven.plugins</groupId >
77
77
<artifactId >maven-compiler-plugin</artifactId >
78
- <version >2.3.2</version >
78
+ <version >2.3.2</version >
79
79
<configuration >
80
80
<compilerVersion >${java.version} </compilerVersion >
81
81
<source >${java.version} </source >
Original file line number Diff line number Diff line change
1
+
2
+ // assembly -- https://github.com/eed3si9n/sbt-assembly
3
+ libraryDependencies <+= (sbtVersion) { sv => " com.eed3si9n" %% " sbt-assembly" % (" sbt" + sv + " _0.6" ) }
You can’t perform that action at this time.
0 commit comments