Skip to content

Commit fdd5864

Browse files
committed
minor fixes/improvements in build script
akka-parsing had wrong version dependency - is part of akka-http and not akka-core, so there is no akka-parsing of version 2.16.x. This always caused build to try to download -- only to get a 404 and then download some version that is available. it is compressed only to be unpacked when building the docker file
1 parent def01af commit fdd5864

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,12 +112,12 @@ project.ext.spec = [
112112

113113
project.ext.externalDependency = [
114114
'akkaHttp': "com.typesafe.akka:akka-http-core_$playScalaVersion:10.2.10", // max version due to licensing
115+
'akkaParsing': "com.typesafe.akka:akka-parsing_$playScalaVersion:10.2.10", // akka-parsing is part of akka-http, so use akka http version
115116
'akkaActor': "com.typesafe.akka:akka-actor_$playScalaVersion:$akkaVersion",
116117
'akkaStream': "com.typesafe.akka:akka-stream_$playScalaVersion:$akkaVersion",
117118
'akkaActorTyped': "com.typesafe.akka:akka-actor-typed_$playScalaVersion:$akkaVersion",
118119
'akkaSlf4j': "com.typesafe.akka:akka-slf4j_$playScalaVersion:$akkaVersion",
119120
'akkaJackson': "com.typesafe.akka:akka-serialization-jackson_$playScalaVersion:$akkaVersion",
120-
'akkaParsing': "com.typesafe.akka:akka-parsing_$playScalaVersion:$akkaVersion",
121121
'akkaProtobuf': "com.typesafe.akka:akka-protobuf-v3_$playScalaVersion:$akkaVersion",
122122
'antlr4Runtime': 'org.antlr:antlr4-runtime:4.9.3',
123123
'antlr4': 'org.antlr:antlr4:4.9.3',

datahub-frontend/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ model {
3434
}
3535

3636
task myTar(type: Tar) {
37-
compression = Compression.GZIP
37+
compression = Compression.NONE
3838

3939
from("${buildDir}/stage")
4040

0 commit comments

Comments
 (0)