Skip to content

Commit

Permalink
Code review cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
CloudNiner committed Sep 27, 2019
1 parent 3a8b908 commit e66122e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Expand Up @@ -41,8 +41,7 @@ lazy val commonSettings = Seq(
"locationtech-snapshots" at "https://repo.locationtech.org/content/groups/snapshots",
"osgeo" at "http://download.osgeo.org/webdav/geotools/",
"geotrellis-staging" at "https://oss.sonatype.org/service/local/repositories/orglocationtechgeotrellis-1009/content"
),
headerLicense := Some(HeaderLicense.ALv2("2019", "Azavea"))
)
)

lazy val noPublishSettings = Seq(
Expand All @@ -56,6 +55,7 @@ lazy val publishSettings = Seq(
organizationName := "GeoTrellis",
organizationHomepage := Some(new URL("https://geotrellis.io/")),
description := "GeoTrellis Contrib is a place to put GeoTrellis projects that are not included in GeoTrellis Core for one reason or another.",
headerLicense := Some(HeaderLicense.ALv2("2019", "Azavea")),
publishArtifact in Test := false
) ++ sonatypeSettings ++ credentialSettings

Expand Down
5 changes: 3 additions & 2 deletions docker-compose.yml
@@ -1,4 +1,4 @@
version: "3.4"
version: "2.3"
services:
database:
# When this is updated, we'll have to handle creating the postgis extension
Expand All @@ -18,7 +18,8 @@ services:
sbt:
image: quay.io/azavea/openjdk-gdal:2.4-jdk8-slim
depends_on:
- database
database:
condition: service_healthy
links:
- database:database.service.internal
environment:
Expand Down
4 changes: 3 additions & 1 deletion scripts/benchmark
Expand Up @@ -21,6 +21,8 @@ if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
pushd benchmark
make
popd
docker-compose run --rm benchmark "project benchmark" "jmh:run"
docker-compose \
run --rm benchmark \
"project benchmark" "jmh:run"
fi
fi

0 comments on commit e66122e

Please sign in to comment.