├── project
├── build.properties
└── plugins.sbt
├── version.sbt
├── .dockerignore
├── gnaf-ui
├── html
│ ├── loading.gif
│ ├── index.html
│ └── index.css
└── README.md
├── gnaf-util
├── README.md
├── build.sbt
├── src
│ └── main
│ │ └── scala
│ │ └── au
│ │ └── csiro
│ │ └── data61
│ │ └── gnaf
│ │ └── util
│ │ ├── Util.scala
│ │ ├── Timer.scala
│ │ └── Gnaf.scala
└── 3rd-party-licenses.html
├── gnaf-indexer
├── build.sbt
├── src
│ ├── test
│ │ └── resources
│ │ │ └── logback-test.xml
│ └── main
│ │ ├── resources
│ │ └── logback.xml
│ │ └── scala
│ │ └── au
│ │ └── csiro
│ │ └── data61
│ │ └── gnaf
│ │ └── indexer
│ │ └── Indexer.scala
├── README.md
└── 3rd-party-licenses.html
├── gnaf-extractor
├── build.sbt
├── src
│ └── main
│ │ ├── resources
│ │ ├── logback.xml
│ │ └── application.conf
│ │ ├── script
│ │ ├── loadElasticsearch.sh
│ │ ├── loadElasticsearch.js
│ │ └── gnafMapping.json
│ │ └── scala
│ │ └── au
│ │ └── csiro
│ │ └── data61
│ │ └── gnaf
│ │ └── extractor
│ │ └── Extractor.scala
├── README.md
└── 3rd-party-licenses.html
├── gnaf-test
├── build.sbt
├── src
│ ├── main
│ │ ├── resources
│ │ │ ├── logback.xml
│ │ │ └── application.conf
│ │ └── script
│ │ │ ├── diff.js
│ │ │ ├── summary.js
│ │ │ ├── run.sh
│ │ │ ├── Maps.js
│ │ │ ├── searchLucene.js
│ │ │ └── searchEs.js
│ └── test
│ │ ├── resources
│ │ └── logback-test.xml
│ │ └── scala
│ │ └── au
│ │ └── csiro
│ │ └── data61
│ │ └── gnaf
│ │ └── test
│ │ └── MainTest.scala
├── package.json
├── README.md
└── 3rd-party-licenses.html
├── .gitignore
├── gnaf-db
├── src
│ └── main
│ │ └── script
│ │ ├── constraint.sed
│ │ └── createGnafDb.sh
├── build.sbt
└── 3rd-party-licenses.html
├── gnaf-lucene
├── build.sbt
├── src
│ ├── test
│ │ ├── resources
│ │ │ └── logback-test.xml
│ │ └── scala
│ │ │ └── au
│ │ │ └── csiro
│ │ │ └── data61
│ │ │ └── gnaf
│ │ │ └── lucene
│ │ │ └── GnafLuceneTest.scala
│ └── main
│ │ └── scala
│ │ └── au
│ │ └── csiro
│ │ └── data61
│ │ └── gnaf
│ │ └── lucene
│ │ ├── LuceneUtil.scala
│ │ └── GnafLucene.scala
├── 3rd-party-licenses.html
└── README.md
├── gnaf-contrib
├── src
│ ├── test
│ │ └── resources
│ │ │ └── logback-test.xml
│ └── main
│ │ ├── resources
│ │ ├── logback.xml
│ │ └── application.conf
│ │ └── scala
│ │ └── au
│ │ └── csiro
│ │ └── data61
│ │ └── gnaf
│ │ └── contrib
│ │ ├── db
│ │ └── ContribTables.scala
│ │ └── service
│ │ └── ContribService.scala
├── build.sbt
├── README.md
└── 3rd-party-licenses.html
├── gnaf-search
├── src
│ ├── test
│ │ └── resources
│ │ │ └── logback-test.xml
│ └── main
│ │ ├── resources
│ │ ├── logback.xml
│ │ └── application.conf
│ │ └── scala
│ │ └── au
│ │ └── csiro
│ │ └── data61
│ │ └── gnaf
│ │ └── search
│ │ └── Search.scala
├── README.md
├── build.sbt
└── 3rd-party-licenses.html
├── gnaf-db-service
├── src
│ ├── test
│ │ └── resources
│ │ │ └── logback-test.xml
│ └── main
│ │ ├── resources
│ │ ├── logback.xml
│ │ └── application.conf
│ │ └── scala
│ │ └── au
│ │ └── csiro
│ │ └── data61
│ │ └── gnaf
│ │ └── db
│ │ └── service
│ │ └── DbService.scala
├── build.sbt
├── README.md
└── 3rd-party-licenses.html
├── src
└── main
│ └── script
│ ├── checkupdates.sh
│ └── run.sh
├── Dockerfile
├── LICENSE.txt
├── README.md
└── template.yaml
/project/build.properties:
--------------------------------------------------------------------------------
1 | sbt.version=0.13.12
2 |
--------------------------------------------------------------------------------
/version.sbt:
--------------------------------------------------------------------------------
1 | version in ThisBuild := "1.1-SNAPSHOT"
2 |
--------------------------------------------------------------------------------
/.dockerignore:
--------------------------------------------------------------------------------
1 | indexDir/
2 | gnaf-db/data/
3 | addresses.gz
4 |
--------------------------------------------------------------------------------
/gnaf-ui/html/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/data61/gnaf/HEAD/gnaf-ui/html/loading.gif
--------------------------------------------------------------------------------
/gnaf-util/README.md:
--------------------------------------------------------------------------------
1 | # gnaf-util
2 |
3 | ## Introduction
4 |
5 | This project produces a library of common code used by the other gnaf sub-projects.
6 |
7 |
--------------------------------------------------------------------------------
/gnaf-indexer/build.sbt:
--------------------------------------------------------------------------------
1 | name := "gnaf-indexer"
2 |
3 | libraryDependencies ++= Seq(
4 | "com.github.scopt" %% "scopt" % "3.3.0",
5 | "com.jsuereth" %% "scala-arm" % "2.0.0-M1"
6 | )
7 |
--------------------------------------------------------------------------------
/gnaf-extractor/build.sbt:
--------------------------------------------------------------------------------
1 | name := "gnaf-extractor"
2 |
3 | libraryDependencies ++= Seq(
4 | "com.github.scopt" %% "scopt" % "3.3.0",
5 | "com.jsuereth" %% "scala-arm" % "2.0.0-M1"
6 | )
7 |
--------------------------------------------------------------------------------
/gnaf-test/build.sbt:
--------------------------------------------------------------------------------
1 | name := "gnaf-test"
2 |
3 | libraryDependencies ++= Seq(
4 | "com.github.scopt" %% "scopt" % "3.3.0",
5 | "com.jsuereth" %% "scala-arm" % "2.0.0-M1",
6 | "org.scalatest" %% "scalatest" % "3.0.0" % "test"
7 | )
8 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | *.log
2 | *~
3 |
4 | # sbt specific
5 | target/
6 | /project/project/
7 | /project/target/
8 | .cache-main
9 | .cache-tests
10 |
11 | # Scala-IDE specific
12 | bin/
13 | test-bin/
14 | .classpath
15 | .project
16 | .settings/
17 | .worksheet
18 |
19 |
20 |
--------------------------------------------------------------------------------
/gnaf-db/src/main/script/constraint.sed:
--------------------------------------------------------------------------------
1 | # --regexp-extended
2 | /ALTER TABLE/ {
3 | h
4 | d
5 | }
6 | /CONSTRAINT/ {
7 | H
8 | s~ *CONSTRAINT ([A-Z0-9_)]+) .*~SELECT 'Adding constraint \1 ...' AS Progress, CURRENT_TIME() AS Time;\n~p
9 | g
10 | }
11 |
12 |
13 |
--------------------------------------------------------------------------------
/gnaf-lucene/build.sbt:
--------------------------------------------------------------------------------
1 | name := "gnaf-lucene"
2 |
3 | libraryDependencies ++= Seq(
4 | "com.github.scopt" %% "scopt" % "3.3.0",
5 | "com.jsuereth" %% "scala-arm" % "2.0.0-M1",
6 | "org.scalatest" %% "scalatest" % "3.0.0" % "test"
7 | )
8 |
9 | libraryDependencies ++= Seq(
10 | "lucene-core",
11 | "lucene-analyzers-common"
12 | ) map ("org.apache.lucene" % _ % "6.2.1")
13 |
--------------------------------------------------------------------------------
/gnaf-db/build.sbt:
--------------------------------------------------------------------------------
1 | name := "gnaf-db"
2 |
3 | libraryDependencies ++= Seq(
4 | "com.h2database" % "h2" % "1.4.193" // or postgres or whatever, % "runtime" should be enough, but sbt slick.codegen needs it on compile classpath
5 | )
6 |
7 | libraryDependencies ++= Seq(
8 | "slick-codegen", // only needed when generating slick mapping
9 | "slick",
10 | "slick-hikaricp"
11 | ) map ("com.typesafe.slick" %% _ % "3.1.1")
12 |
--------------------------------------------------------------------------------
/gnaf-util/build.sbt:
--------------------------------------------------------------------------------
1 | name := "gnaf-util"
2 |
3 | libraryDependencies ++= Seq(
4 | "io.spray" %% "spray-json" % "1.3.2",
5 | "com.typesafe.scala-logging" %% "scala-logging" % "3.1.0",
6 | "org.slf4j" % "slf4j-api" % "1.7.12",
7 | "ch.qos.logback" % "logback-classic" % "1.1.3"
8 | // "org.scala-lang" % "scala-reflect" % "2.11.8", // Multiple dependencies with the same organization/name but different versions. To avoid conflict, pick one version
9 | // "org.scala-lang.modules" %% "scala-xml" % "1.0.4" // as above
10 | )
11 |
--------------------------------------------------------------------------------
/gnaf-contrib/src/test/resources/logback-test.xml:
--------------------------------------------------------------------------------
1 |
| Category | License | Dependency | Notes |
|---|---|---|---|
| Apache | Apache 2 | io.spray # spray-json_2.11 # 1.3.2 | |
| Apache | Apache 2.0 License | com.typesafe.scala-logging # scala-logging_2.11 # 3.1.0 | |
| BSD | BSD 3-Clause | org.scala-lang # scala-library # 2.11.8 | |
| BSD | BSD 3-Clause | org.scala-lang # scala-reflect # 2.11.8 | |
| LGPL | EPL + GNU Lesser General Public License | ch.qos.logback # logback-classic # 1.1.3 | |
| LGPL | EPL + GNU Lesser General Public License | ch.qos.logback # logback-core # 1.1.3 | |
| MIT | MIT License | org.slf4j # slf4j-api # 1.7.12 |
| Category | License | Dependency | Notes |
|---|---|---|---|
| Apache | Apache 2 | io.spray # spray-json_2.11 # 1.3.2 | |
| Apache | Apache 2.0 License | com.typesafe.scala-logging # scala-logging_2.11 # 3.1.0 | |
| Apache | The Apache Software License, Version 2.0 | org.apache.lucene # lucene-analyzers-common # 6.2.1 | |
| Apache | The Apache Software License, Version 2.0 | org.apache.lucene # lucene-core # 6.2.1 | |
| BSD | BSD | au.csiro.data61.gnaf # gnaf-lucene_2.11 # 0.8-SNAPSHOT | |
| BSD | BSD | au.csiro.data61.gnaf # gnaf-util_2.11 # 0.8-SNAPSHOT | |
| BSD | BSD 3-Clause | org.scala-lang # scala-library # 2.11.8 | |
| BSD | BSD 3-Clause | org.scala-lang # scala-reflect # 2.11.8 | |
| BSD | BSD-Style | com.jsuereth # scala-arm_2.11 # 2.0.0-M1 | |
| LGPL | EPL + GNU Lesser General Public License | ch.qos.logback # logback-classic # 1.1.3 | |
| LGPL | EPL + GNU Lesser General Public License | ch.qos.logback # logback-core # 1.1.3 | |
| MIT | MIT License | com.github.scopt # scopt_2.11 # 3.3.0 | |
| MIT | MIT License | org.slf4j # slf4j-api # 1.7.12 |
| Category | License | Dependency | Notes |
|---|---|---|---|
| Apache | Apache 2 | io.spray # spray-json_2.11 # 1.3.2 | |
| Apache | Apache 2.0 License | com.typesafe.scala-logging # scala-logging_2.11 # 3.1.0 | |
| Apache | Apache License, Version 2.0 | com.typesafe # config # 1.2.1 | |
| Apache | The Apache Software License, Version 2.0 | com.zaxxer # HikariCP-java6 # 2.3.7 | |
| Apache | The Apache Software License, Version 2.0 | org.javassist # javassist # 3.19.0-GA | |
| BSD | BSD | au.csiro.data61.gnaf # gnaf-util_2.11 # 0.8-SNAPSHOT | |
| BSD | BSD 3-Clause | org.scala-lang # scala-library # 2.11.8 | |
| BSD | BSD 3-Clause | org.scala-lang # scala-reflect # 2.11.8 | |
| BSD | Two-clause BSD-style license | com.typesafe.slick # slick-codegen_2.11 # 3.1.1 | |
| BSD | Two-clause BSD-style license | com.typesafe.slick # slick-hikaricp_2.11 # 3.1.1 | |
| BSD | Two-clause BSD-style license | com.typesafe.slick # slick_2.11 # 3.1.1 | |
| CC0 | CC0 | org.reactivestreams # reactive-streams # 1.0.0 | |
| LGPL | EPL + GNU Lesser General Public License | ch.qos.logback # logback-classic # 1.1.3 | |
| LGPL | EPL + GNU Lesser General Public License | ch.qos.logback # logback-core # 1.1.3 | |
| MIT | MIT License | org.slf4j # slf4j-api # 1.7.12 | |
| Mozilla | MPL 2.0 or EPL 1.0 | com.h2database # h2 # 1.4.193 |
| Category | License | Dependency | Notes |
|---|---|---|---|
| Apache | Apache 2 | io.spray # spray-json_2.11 # 1.3.2 | |
| Apache | Apache 2.0 License | com.typesafe.scala-logging # scala-logging_2.11 # 3.1.0 | |
| Apache | The Apache Software License, Version 2.0 | org.apache.lucene # lucene-analyzers-common # 6.2.1 | |
| Apache | The Apache Software License, Version 2.0 | org.apache.lucene # lucene-core # 6.2.1 | |
| Apache | the Apache License, ASL Version 2.0 | org.scalactic # scalactic_2.11 # 3.0.0 | |
| Apache | the Apache License, ASL Version 2.0 | org.scalatest # scalatest_2.11 # 3.0.0 | |
| BSD | BSD | au.csiro.data61.gnaf # gnaf-util_2.11 # 0.8-SNAPSHOT | |
| BSD | BSD 3-Clause | org.scala-lang # scala-library # 2.11.8 | |
| BSD | BSD 3-Clause | org.scala-lang # scala-reflect # 2.11.8 | |
| BSD | BSD 3-clause | org.scala-lang.modules # scala-parser-combinators_2.11 # 1.0.4 | |
| BSD | BSD 3-clause | org.scala-lang.modules # scala-xml_2.11 # 1.0.5 | |
| BSD | BSD-Style | com.jsuereth # scala-arm_2.11 # 2.0.0-M1 | |
| LGPL | EPL + GNU Lesser General Public License | ch.qos.logback # logback-classic # 1.1.3 | |
| LGPL | EPL + GNU Lesser General Public License | ch.qos.logback # logback-core # 1.1.3 | |
| MIT | MIT License | com.github.scopt # scopt_2.11 # 3.3.0 | |
| MIT | MIT License | org.slf4j # slf4j-api # 1.7.12 |
| Category | License | Dependency | Notes |
|---|---|---|---|
| Apache | Apache 2 | io.spray # spray-json_2.11 # 1.3.2 | |
| Apache | Apache 2.0 License | com.typesafe.scala-logging # scala-logging_2.11 # 3.1.0 | |
| Apache | Apache License, Version 2.0 | com.typesafe # config # 1.2.1 | |
| Apache | The Apache Software License, Version 2.0 | com.zaxxer # HikariCP-java6 # 2.3.7 | |
| Apache | The Apache Software License, Version 2.0 | org.javassist # javassist # 3.19.0-GA | |
| BSD | BSD | au.csiro.data61.gnaf # gnaf-db_2.11 # 0.8-SNAPSHOT | |
| BSD | BSD | au.csiro.data61.gnaf # gnaf-util_2.11 # 0.8-SNAPSHOT | |
| BSD | BSD 3-Clause | org.scala-lang # scala-library # 2.11.8 | |
| BSD | BSD 3-Clause | org.scala-lang # scala-reflect # 2.11.8 | |
| BSD | BSD-Style | com.jsuereth # scala-arm_2.11 # 2.0.0-M1 | |
| BSD | Two-clause BSD-style license | com.typesafe.slick # slick-codegen_2.11 # 3.1.1 | |
| BSD | Two-clause BSD-style license | com.typesafe.slick # slick-hikaricp_2.11 # 3.1.1 | |
| BSD | Two-clause BSD-style license | com.typesafe.slick # slick_2.11 # 3.1.1 | |
| CC0 | CC0 | org.reactivestreams # reactive-streams # 1.0.0 | |
| LGPL | EPL + GNU Lesser General Public License | ch.qos.logback # logback-classic # 1.1.3 | |
| LGPL | EPL + GNU Lesser General Public License | ch.qos.logback # logback-core # 1.1.3 | |
| MIT | MIT License | com.github.scopt # scopt_2.11 # 3.3.0 | |
| MIT | MIT License | org.slf4j # slf4j-api # 1.7.12 | |
| Mozilla | MPL 2.0 or EPL 1.0 | com.h2database # h2 # 1.4.193 |
| Category | License | Dependency | Notes |
|---|---|---|---|
| Apache | Apache 2 | io.spray # spray-json_2.11 # 1.3.2 | |
| Apache | Apache 2.0 License | com.typesafe.scala-logging # scala-logging_2.11 # 3.1.0 | |
| Apache | Apache License, Version 2.0 | com.typesafe # config # 1.2.1 | |
| Apache | The Apache Software License, Version 2.0 | com.zaxxer # HikariCP-java6 # 2.3.7 | |
| Apache | The Apache Software License, Version 2.0 | org.javassist # javassist # 3.19.0-GA | |
| Apache | the Apache License, ASL Version 2.0 | org.scalactic # scalactic_2.11 # 3.0.0 | |
| Apache | the Apache License, ASL Version 2.0 | org.scalatest # scalatest_2.11 # 3.0.0 | |
| BSD | BSD | au.csiro.data61.gnaf # gnaf-db_2.11 # 0.8-SNAPSHOT | |
| BSD | BSD | au.csiro.data61.gnaf # gnaf-util_2.11 # 0.8-SNAPSHOT | |
| BSD | BSD 3-Clause | org.scala-lang # scala-library # 2.11.8 | |
| BSD | BSD 3-Clause | org.scala-lang # scala-reflect # 2.11.8 | |
| BSD | BSD 3-clause | org.scala-lang.modules # scala-parser-combinators_2.11 # 1.0.4 | |
| BSD | BSD 3-clause | org.scala-lang.modules # scala-xml_2.11 # 1.0.5 | |
| BSD | BSD-Style | com.jsuereth # scala-arm_2.11 # 2.0.0-M1 | |
| BSD | Two-clause BSD-style license | com.typesafe.slick # slick-codegen_2.11 # 3.1.1 | |
| BSD | Two-clause BSD-style license | com.typesafe.slick # slick-hikaricp_2.11 # 3.1.1 | |
| BSD | Two-clause BSD-style license | com.typesafe.slick # slick_2.11 # 3.1.1 | |
| CC0 | CC0 | org.reactivestreams # reactive-streams # 1.0.0 | |
| LGPL | EPL + GNU Lesser General Public License | ch.qos.logback # logback-classic # 1.1.3 | |
| LGPL | EPL + GNU Lesser General Public License | ch.qos.logback # logback-core # 1.1.3 | |
| MIT | MIT License | com.github.scopt # scopt_2.11 # 3.3.0 | |
| MIT | MIT License | org.slf4j # slf4j-api # 1.7.12 | |
| Mozilla | MPL 2.0 or EPL 1.0 | com.h2database # h2 # 1.4.193 |
| Category | License | Dependency | Notes |
|---|---|---|---|
| Apache | Apache 2 | ch.megard # akka-http-cors_2.11 # 0.1.2 | |
| Apache | Apache 2 | io.spray # spray-json_2.11 # 1.3.2 | |
| Apache | Apache 2 | joda-time # joda-time # 2.2 | |
| Apache | Apache 2.0 License | com.typesafe.scala-logging # scala-logging_2.11 # 3.1.0 | |
| Apache | Apache License Version 2.0 | org.yaml # snakeyaml # 1.12 | |
| Apache | Apache License, Version 2.0 | com.typesafe # config # 1.3.0 | |
| Apache | Apache License, Version 2.0 | com.typesafe # ssl-config-akka_2.11 # 0.2.1 | |
| Apache | Apache License, Version 2.0 | com.typesafe # ssl-config-core_2.11 # 0.2.1 | |
| Apache | Apache License, Version 2.0 | com.typesafe.akka # akka-actor_2.11 # 2.4.6 | |
| Apache | Apache License, Version 2.0 | com.typesafe.akka # akka-http-core_2.11 # 2.4.6 | |
| Apache | Apache License, Version 2.0 | com.typesafe.akka # akka-http-experimental_2.11 # 2.4.6 | |
| Apache | Apache License, Version 2.0 | com.typesafe.akka # akka-http-spray-json-experimental_2.11 # 2.4.6 | |
| Apache | Apache License, Version 2.0 | com.typesafe.akka # akka-http-testkit_2.11 # 2.4.3 | |
| Apache | Apache License, Version 2.0 | com.typesafe.akka # akka-parsing_2.11 # 2.4.6 | |
| Apache | Apache License, Version 2.0 | com.typesafe.akka # akka-stream-testkit_2.11 # 2.4.3 | |
| Apache | Apache License, Version 2.0 | com.typesafe.akka # akka-stream_2.11 # 2.4.6 | |
| Apache | Apache License, Version 2.0 | com.typesafe.akka # akka-testkit_2.11 # 2.4.3 | |
| Apache | The Apache Software License, Version 2.0 | com.fasterxml.jackson.core # jackson-annotations # 2.4.5 | |
| Apache | The Apache Software License, Version 2.0 | com.fasterxml.jackson.core # jackson-core # 2.4.5 | |
| Apache | The Apache Software License, Version 2.0 | com.fasterxml.jackson.core # jackson-databind # 2.4.5 | |
| Apache | The Apache Software License, Version 2.0 | com.fasterxml.jackson.dataformat # jackson-dataformat-xml # 2.4.5 | |
| Apache | The Apache Software License, Version 2.0 | com.fasterxml.jackson.dataformat # jackson-dataformat-yaml # 2.4.5 | |
| Apache | The Apache Software License, Version 2.0 | com.fasterxml.jackson.datatype # jackson-datatype-joda # 2.4.5 | |
| Apache | The Apache Software License, Version 2.0 | com.fasterxml.jackson.jaxrs # jackson-jaxrs-base # 2.4.5 | |
| Apache | The Apache Software License, Version 2.0 | com.fasterxml.jackson.jaxrs # jackson-jaxrs-json-provider # 2.4.5 | |
| Apache | The Apache Software License, Version 2.0 | com.fasterxml.jackson.module # jackson-module-jaxb-annotations # 2.4.5 | |
| Apache | The Apache Software License, Version 2.0 | com.fasterxml.jackson.module # jackson-module-scala_2.11 # 2.4.2 | |
| Apache | The Apache Software License, Version 2.0 | com.github.swagger-akka-http # swagger-akka-http_2.11 # 0.7.0 | |
| Apache | The Apache Software License, Version 2.0 | com.google.guava # guava # 18.0 | |
| Apache | The Apache Software License, Version 2.0 | com.zaxxer # HikariCP-java6 # 2.3.7 | |
| Apache | The Apache Software License, Version 2.0 | io.swagger # swagger-annotations # 1.5.9 | |
| Apache | The Apache Software License, Version 2.0 | io.swagger # swagger-core # 1.5.9 | |
| Apache | The Apache Software License, Version 2.0 | io.swagger # swagger-jaxrs # 1.5.9 | |
| Apache | The Apache Software License, Version 2.0 | io.swagger # swagger-models # 1.5.9 | |
| Apache | The Apache Software License, Version 2.0 | io.swagger # swagger-scala-module_2.11 # 1.0.2 | |
| Apache | The Apache Software License, Version 2.0 | javax.validation # validation-api # 1.1.0.Final | |
| Apache | The Apache Software License, Version 2.0 | org.apache.commons # commons-lang3 # 3.2.1 | |
| Apache | The Apache Software License, Version 2.0 | org.javassist # javassist # 3.19.0-GA | |
| Apache | The Apache Software License, Version 2.0 | org.json4s # json4s-ast_2.11 # 3.2.11 | |
| Apache | The Apache Software License, Version 2.0 | org.json4s # json4s-core_2.11 # 3.2.11 | |
| Apache | The Apache Software License, Version 2.0 | org.json4s # json4s-jackson_2.11 # 3.2.11 | |
| Apache | The Apache Software License, Version 2.0 | org.json4s # json4s-native_2.11 # 3.2.11 | |
| BSD | BSD | au.csiro.data61.gnaf # gnaf-util_2.11 # 0.8-SNAPSHOT | |
| BSD | BSD 3-Clause | org.scala-lang # scala-compiler # 2.11.8 | |
| BSD | BSD 3-Clause | org.scala-lang # scala-library # 2.11.8 | |
| BSD | BSD 3-Clause | org.scala-lang # scala-reflect # 2.11.8 | |
| BSD | BSD 3-Clause | org.scala-lang # scalap # 2.11.8 | |
| BSD | BSD 3-clause | org.scala-lang.modules # scala-java8-compat_2.11 # 0.7.0 | |
| BSD | BSD 3-clause | org.scala-lang.modules # scala-parser-combinators_2.11 # 1.0.4 | |
| BSD | BSD 3-clause | org.scala-lang.modules # scala-xml_2.11 # 1.0.4 | |
| BSD | BSD-Style | com.thoughtworks.paranamer # paranamer # 2.6 | |
| BSD | The BSD License | org.codehaus.woodstox # stax2-api # 3.1.4 | |
| BSD | The New BSD License | org.reflections # reflections # 0.9.10 | |
| BSD | Two-clause BSD-style license | com.typesafe.slick # slick-codegen_2.11 # 3.1.1 | |
| BSD | Two-clause BSD-style license | com.typesafe.slick # slick-hikaricp_2.11 # 3.1.1 | |
| BSD | Two-clause BSD-style license | com.typesafe.slick # slick_2.11 # 3.1.1 | |
| CC0 | CC0 | org.reactivestreams # reactive-streams # 1.0.0 | |
| GPL with Classpath Extension | CDDL + GPLv2 with classpath exception | javax.ws.rs # jsr311-api # 1.1.1 | |
| LGPL | EPL + GNU Lesser General Public License | ch.qos.logback # logback-classic # 1.1.3 | |
| LGPL | EPL + GNU Lesser General Public License | ch.qos.logback # logback-core # 1.1.3 | |
| LGPL | GNU Lesser General Public License | com.google.code.findbugs # annotations # 2.0.1 | |
| LGPL | GNU Lesser General Public License | com.google.code.findbugs # jsr305 # 2.0.1 | |
| MIT | MIT License | org.slf4j # slf4j-api # 1.7.12 | |
| Mozilla | MPL 2.0 or EPL 1.0 | com.h2database # h2 # 1.4.193 |
| Category | License | Dependency | Notes |
|---|---|---|---|
| Apache | Apache 2 | ch.megard # akka-http-cors_2.11 # 0.1.2 | |
| Apache | Apache 2 | io.spray # spray-json_2.11 # 1.3.2 | |
| Apache | Apache 2 | joda-time # joda-time # 2.2 | |
| Apache | Apache 2.0 License | com.typesafe.scala-logging # scala-logging_2.11 # 3.1.0 | |
| Apache | Apache License Version 2.0 | org.yaml # snakeyaml # 1.12 | |
| Apache | Apache License, Version 2.0 | com.typesafe # config # 1.3.0 | |
| Apache | Apache License, Version 2.0 | com.typesafe # ssl-config-akka_2.11 # 0.2.1 | |
| Apache | Apache License, Version 2.0 | com.typesafe # ssl-config-core_2.11 # 0.2.1 | |
| Apache | Apache License, Version 2.0 | com.typesafe.akka # akka-actor_2.11 # 2.4.6 | |
| Apache | Apache License, Version 2.0 | com.typesafe.akka # akka-http-core_2.11 # 2.4.6 | |
| Apache | Apache License, Version 2.0 | com.typesafe.akka # akka-http-experimental_2.11 # 2.4.6 | |
| Apache | Apache License, Version 2.0 | com.typesafe.akka # akka-http-spray-json-experimental_2.11 # 2.4.6 | |
| Apache | Apache License, Version 2.0 | com.typesafe.akka # akka-http-testkit_2.11 # 2.4.3 | |
| Apache | Apache License, Version 2.0 | com.typesafe.akka # akka-parsing_2.11 # 2.4.6 | |
| Apache | Apache License, Version 2.0 | com.typesafe.akka # akka-stream-testkit_2.11 # 2.4.3 | |
| Apache | Apache License, Version 2.0 | com.typesafe.akka # akka-stream_2.11 # 2.4.6 | |
| Apache | Apache License, Version 2.0 | com.typesafe.akka # akka-testkit_2.11 # 2.4.3 | |
| Apache | The Apache Software License, Version 2.0 | com.fasterxml.jackson.core # jackson-annotations # 2.4.5 | |
| Apache | The Apache Software License, Version 2.0 | com.fasterxml.jackson.core # jackson-core # 2.4.5 | |
| Apache | The Apache Software License, Version 2.0 | com.fasterxml.jackson.core # jackson-databind # 2.4.5 | |
| Apache | The Apache Software License, Version 2.0 | com.fasterxml.jackson.dataformat # jackson-dataformat-xml # 2.4.5 | |
| Apache | The Apache Software License, Version 2.0 | com.fasterxml.jackson.dataformat # jackson-dataformat-yaml # 2.4.5 | |
| Apache | The Apache Software License, Version 2.0 | com.fasterxml.jackson.datatype # jackson-datatype-joda # 2.4.5 | |
| Apache | The Apache Software License, Version 2.0 | com.fasterxml.jackson.jaxrs # jackson-jaxrs-base # 2.4.5 | |
| Apache | The Apache Software License, Version 2.0 | com.fasterxml.jackson.jaxrs # jackson-jaxrs-json-provider # 2.4.5 | |
| Apache | The Apache Software License, Version 2.0 | com.fasterxml.jackson.module # jackson-module-jaxb-annotations # 2.4.5 | |
| Apache | The Apache Software License, Version 2.0 | com.fasterxml.jackson.module # jackson-module-scala_2.11 # 2.4.2 | |
| Apache | The Apache Software License, Version 2.0 | com.github.swagger-akka-http # swagger-akka-http_2.11 # 0.7.0 | |
| Apache | The Apache Software License, Version 2.0 | com.google.guava # guava # 18.0 | |
| Apache | The Apache Software License, Version 2.0 | com.zaxxer # HikariCP-java6 # 2.3.7 | |
| Apache | The Apache Software License, Version 2.0 | io.swagger # swagger-annotations # 1.5.9 | |
| Apache | The Apache Software License, Version 2.0 | io.swagger # swagger-core # 1.5.9 | |
| Apache | The Apache Software License, Version 2.0 | io.swagger # swagger-jaxrs # 1.5.9 | |
| Apache | The Apache Software License, Version 2.0 | io.swagger # swagger-models # 1.5.9 | |
| Apache | The Apache Software License, Version 2.0 | io.swagger # swagger-scala-module_2.11 # 1.0.2 | |
| Apache | The Apache Software License, Version 2.0 | javax.validation # validation-api # 1.1.0.Final | |
| Apache | The Apache Software License, Version 2.0 | org.apache.commons # commons-lang3 # 3.2.1 | |
| Apache | The Apache Software License, Version 2.0 | org.javassist # javassist # 3.19.0-GA | |
| Apache | The Apache Software License, Version 2.0 | org.json4s # json4s-ast_2.11 # 3.2.11 | |
| Apache | The Apache Software License, Version 2.0 | org.json4s # json4s-core_2.11 # 3.2.11 | |
| Apache | The Apache Software License, Version 2.0 | org.json4s # json4s-jackson_2.11 # 3.2.11 | |
| Apache | The Apache Software License, Version 2.0 | org.json4s # json4s-native_2.11 # 3.2.11 | |
| BSD | BSD | au.csiro.data61.gnaf # gnaf-db_2.11 # 0.8-SNAPSHOT | |
| BSD | BSD | au.csiro.data61.gnaf # gnaf-util_2.11 # 0.8-SNAPSHOT | |
| BSD | BSD 3-Clause | org.scala-lang # scala-compiler # 2.11.8 | |
| BSD | BSD 3-Clause | org.scala-lang # scala-library # 2.11.8 | |
| BSD | BSD 3-Clause | org.scala-lang # scala-reflect # 2.11.8 | |
| BSD | BSD 3-Clause | org.scala-lang # scalap # 2.11.8 | |
| BSD | BSD 3-clause | org.scala-lang.modules # scala-java8-compat_2.11 # 0.7.0 | |
| BSD | BSD 3-clause | org.scala-lang.modules # scala-parser-combinators_2.11 # 1.0.4 | |
| BSD | BSD 3-clause | org.scala-lang.modules # scala-xml_2.11 # 1.0.4 | |
| BSD | BSD-Style | com.thoughtworks.paranamer # paranamer # 2.6 | |
| BSD | The BSD License | org.codehaus.woodstox # stax2-api # 3.1.4 | |
| BSD | The New BSD License | org.reflections # reflections # 0.9.10 | |
| BSD | Two-clause BSD-style license | com.typesafe.slick # slick-codegen_2.11 # 3.1.1 | |
| BSD | Two-clause BSD-style license | com.typesafe.slick # slick-hikaricp_2.11 # 3.1.1 | |
| BSD | Two-clause BSD-style license | com.typesafe.slick # slick_2.11 # 3.1.1 | |
| CC0 | CC0 | org.reactivestreams # reactive-streams # 1.0.0 | |
| GPL with Classpath Extension | CDDL + GPLv2 with classpath exception | javax.ws.rs # jsr311-api # 1.1.1 | |
| LGPL | EPL + GNU Lesser General Public License | ch.qos.logback # logback-classic # 1.1.3 | |
| LGPL | EPL + GNU Lesser General Public License | ch.qos.logback # logback-core # 1.1.3 | |
| LGPL | GNU Lesser General Public License | com.google.code.findbugs # annotations # 2.0.1 | |
| LGPL | GNU Lesser General Public License | com.google.code.findbugs # jsr305 # 2.0.1 | |
| MIT | MIT License | org.slf4j # slf4j-api # 1.7.12 | |
| Mozilla | MPL 2.0 or EPL 1.0 | com.h2database # h2 # 1.4.193 |
| Category | License | Dependency | Notes |
|---|---|---|---|
| Apache | Apache 2 | ch.megard # akka-http-cors_2.11 # 0.1.2 | |
| Apache | Apache 2 | io.spray # spray-json_2.11 # 1.3.2 | |
| Apache | Apache 2 | joda-time # joda-time # 2.2 | |
| Apache | Apache 2.0 License | com.typesafe.scala-logging # scala-logging_2.11 # 3.1.0 | |
| Apache | Apache License Version 2.0 | org.yaml # snakeyaml # 1.12 | |
| Apache | Apache License, Version 2.0 | com.typesafe # config # 1.3.0 | |
| Apache | Apache License, Version 2.0 | com.typesafe # ssl-config-akka_2.11 # 0.2.1 | |
| Apache | Apache License, Version 2.0 | com.typesafe # ssl-config-core_2.11 # 0.2.1 | |
| Apache | Apache License, Version 2.0 | com.typesafe.akka # akka-actor_2.11 # 2.4.6 | |
| Apache | Apache License, Version 2.0 | com.typesafe.akka # akka-http-core_2.11 # 2.4.6 | |
| Apache | Apache License, Version 2.0 | com.typesafe.akka # akka-http-experimental_2.11 # 2.4.6 | |
| Apache | Apache License, Version 2.0 | com.typesafe.akka # akka-http-spray-json-experimental_2.11 # 2.4.6 | |
| Apache | Apache License, Version 2.0 | com.typesafe.akka # akka-http-testkit_2.11 # 2.4.3 | |
| Apache | Apache License, Version 2.0 | com.typesafe.akka # akka-parsing_2.11 # 2.4.6 | |
| Apache | Apache License, Version 2.0 | com.typesafe.akka # akka-stream-testkit_2.11 # 2.4.3 | |
| Apache | Apache License, Version 2.0 | com.typesafe.akka # akka-stream_2.11 # 2.4.6 | |
| Apache | Apache License, Version 2.0 | com.typesafe.akka # akka-testkit_2.11 # 2.4.3 | |
| Apache | The Apache Software License, Version 2.0 | com.fasterxml.jackson.core # jackson-annotations # 2.4.5 | |
| Apache | The Apache Software License, Version 2.0 | com.fasterxml.jackson.core # jackson-core # 2.4.5 | |
| Apache | The Apache Software License, Version 2.0 | com.fasterxml.jackson.core # jackson-databind # 2.4.5 | |
| Apache | The Apache Software License, Version 2.0 | com.fasterxml.jackson.dataformat # jackson-dataformat-xml # 2.4.5 | |
| Apache | The Apache Software License, Version 2.0 | com.fasterxml.jackson.dataformat # jackson-dataformat-yaml # 2.4.5 | |
| Apache | The Apache Software License, Version 2.0 | com.fasterxml.jackson.datatype # jackson-datatype-joda # 2.4.5 | |
| Apache | The Apache Software License, Version 2.0 | com.fasterxml.jackson.jaxrs # jackson-jaxrs-base # 2.4.5 | |
| Apache | The Apache Software License, Version 2.0 | com.fasterxml.jackson.jaxrs # jackson-jaxrs-json-provider # 2.4.5 | |
| Apache | The Apache Software License, Version 2.0 | com.fasterxml.jackson.module # jackson-module-jaxb-annotations # 2.4.5 | |
| Apache | The Apache Software License, Version 2.0 | com.fasterxml.jackson.module # jackson-module-scala_2.11 # 2.4.2 | |
| Apache | The Apache Software License, Version 2.0 | com.github.swagger-akka-http # swagger-akka-http_2.11 # 0.7.0 | |
| Apache | The Apache Software License, Version 2.0 | com.google.guava # guava # 18.0 | |
| Apache | The Apache Software License, Version 2.0 | io.swagger # swagger-annotations # 1.5.9 | |
| Apache | The Apache Software License, Version 2.0 | io.swagger # swagger-core # 1.5.9 | |
| Apache | The Apache Software License, Version 2.0 | io.swagger # swagger-jaxrs # 1.5.9 | |
| Apache | The Apache Software License, Version 2.0 | io.swagger # swagger-models # 1.5.9 | |
| Apache | The Apache Software License, Version 2.0 | io.swagger # swagger-scala-module_2.11 # 1.0.2 | |
| Apache | The Apache Software License, Version 2.0 | javax.validation # validation-api # 1.1.0.Final | |
| Apache | The Apache Software License, Version 2.0 | org.apache.commons # commons-lang3 # 3.2.1 | |
| Apache | The Apache Software License, Version 2.0 | org.apache.lucene # lucene-analyzers-common # 6.2.1 | |
| Apache | The Apache Software License, Version 2.0 | org.apache.lucene # lucene-core # 6.2.1 | |
| Apache | The Apache Software License, Version 2.0 | org.javassist # javassist # 3.18.2-GA | |
| Apache | The Apache Software License, Version 2.0 | org.json4s # json4s-ast_2.11 # 3.2.11 | |
| Apache | The Apache Software License, Version 2.0 | org.json4s # json4s-core_2.11 # 3.2.11 | |
| Apache | The Apache Software License, Version 2.0 | org.json4s # json4s-jackson_2.11 # 3.2.11 | |
| Apache | The Apache Software License, Version 2.0 | org.json4s # json4s-native_2.11 # 3.2.11 | |
| Apache | the Apache License, ASL Version 2.0 | org.scalactic # scalactic_2.11 # 3.0.0 | |
| Apache | the Apache License, ASL Version 2.0 | org.scalatest # scalatest_2.11 # 3.0.0 | |
| BSD | BSD | au.csiro.data61.gnaf # gnaf-lucene_2.11 # 0.8-SNAPSHOT | |
| BSD | BSD | au.csiro.data61.gnaf # gnaf-util_2.11 # 0.8-SNAPSHOT | |
| BSD | BSD 3-Clause | org.scala-lang # scala-compiler # 2.11.8 | |
| BSD | BSD 3-Clause | org.scala-lang # scala-library # 2.11.8 | |
| BSD | BSD 3-Clause | org.scala-lang # scala-reflect # 2.11.8 | |
| BSD | BSD 3-Clause | org.scala-lang # scalap # 2.11.8 | |
| BSD | BSD 3-clause | org.scala-lang.modules # scala-java8-compat_2.11 # 0.7.0 | |
| BSD | BSD 3-clause | org.scala-lang.modules # scala-parser-combinators_2.11 # 1.0.4 | |
| BSD | BSD 3-clause | org.scala-lang.modules # scala-xml_2.11 # 1.0.4 | |
| BSD | BSD 3-clause | org.scala-lang.modules # scala-xml_2.11 # 1.0.5 | |
| BSD | BSD-Style | com.jsuereth # scala-arm_2.11 # 2.0.0-M1 | |
| BSD | BSD-Style | com.thoughtworks.paranamer # paranamer # 2.6 | |
| BSD | The BSD License | org.codehaus.woodstox # stax2-api # 3.1.4 | |
| BSD | The New BSD License | org.reflections # reflections # 0.9.10 | |
| CC0 | CC0 | org.reactivestreams # reactive-streams # 1.0.0 | |
| GPL with Classpath Extension | CDDL + GPLv2 with classpath exception | javax.ws.rs # jsr311-api # 1.1.1 | |
| LGPL | EPL + GNU Lesser General Public License | ch.qos.logback # logback-classic # 1.1.3 | |
| LGPL | EPL + GNU Lesser General Public License | ch.qos.logback # logback-core # 1.1.3 | |
| LGPL | GNU Lesser General Public License | com.google.code.findbugs # annotations # 2.0.1 | |
| LGPL | GNU Lesser General Public License | com.google.code.findbugs # jsr305 # 2.0.1 | |
| MIT | MIT License | com.github.scopt # scopt_2.11 # 3.3.0 | |
| MIT | MIT License | org.slf4j # slf4j-api # 1.7.12 |