Skip to content

Commit 04111e3

Browse files
authored
Merge pull request #24 from ada-discovery/highcharts_move
Highcharts relocation finish (Version 0.9.0)
2 parents f705b26 + b64e49d commit 04111e3

File tree

4 files changed

+7
-13
lines changed

4 files changed

+7
-13
lines changed

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name := "ada-app"
22

33
organization in ThisBuild := "org.adada"
44
scalaVersion in ThisBuild := "2.11.12"
5-
version in ThisBuild := "0.9.0-SNAPSHOT"
6-
isSnapshot in ThisBuild := true
5+
version in ThisBuild := "0.9.0"
6+
isSnapshot in ThisBuild := false
77

88
lazy val server = (project in file("server"))
99

development.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,6 @@ Now ada should be running locally: http://localhost:9000/
5555
## Quirks of current module system
5656
If you work with intellij you need to do the following to workaround some dependency issues:
5757

58-
```
59-
git clone https://github.com/ada-discovery/ada-dream-pd-challenge.git
60-
cd ada-dream-pd-challenge/
61-
sbt publishLocal
62-
```
63-
6458
```
6559
cd ada-app/
6660
sbt "project web" publishLocal

web-ncer/build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ routesImport ++= Seq(
2222
)
2323

2424
libraryDependencies ++= Seq(
25-
"org.adada" %% "ada-web" % "0.9.0-SNAPSHOT",
26-
"org.adada" %% "ada-web" % "0.9.0-SNAPSHOT" classifier "assets",
27-
"org.adada" %% "ada-dream-pd-challenge" % "0.1.1",
25+
"org.adada" %% "ada-web" % "0.9.0",
26+
"org.adada" %% "ada-web" % "0.9.0" classifier "assets",
27+
"org.adada" %% "ada-dream-pd-challenge" % "0.1.2",
2828
"org.in-cal" %% "incal-dl4j" % "0.3.0", // DL4J
2929
"org.scalatestplus.play" %% "scalatestplus-play" % "2.0.1" % "test",
3030
"org.apache.pdfbox" % "pdfbox" % "2.0.1",

web/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ signedArtifacts := {
6767
val artifacts: Map[sbt.Artifact, java.io.File] = signedArtifacts.value
6868
val assets: java.io.File = (playPackageAssets in Compile).value
6969
artifacts ++ Seq(
70-
Artifact(moduleName.value, "jar", "jar", "assets") -> assets
71-
// Artifact(moduleName.value, "jar", "jar.asc", "assets") -> new java.io.File(assets.getAbsolutePath + ".asc") // manually sign assets.jar, uncomment, and republish
70+
Artifact(moduleName.value, "jar", "jar", "assets") -> assets,
71+
Artifact(moduleName.value, "jar", "jar.asc", "assets") -> new java.io.File(assets.getAbsolutePath + ".asc") // manually sign assets.jar, uncomment, and republish
7272
)
7373
}
7474

0 commit comments

Comments
 (0)