-
Updated
Mar 14, 2020 - Shell
Scala
Scala is a general-purpose programming language providing support for functional programming and a strong static type system. Designed to be concise, many of Scala's design decisions aimed to address criticisms of Java.
Here are 135 public repositories matching this topic...
-
Updated
Jun 14, 2018 - Shell
-
Updated
Jul 27, 2017 - Shell
-
Updated
Jul 30, 2019 - Shell
-
Updated
Jul 30, 2019 - Shell
-
Updated
Oct 21, 2017 - Shell
-
Updated
Jun 27, 2019 - Shell
the oshinko-webui tooling currently defaults to exposing a route to the spark master ui when a cluster is created. the clusters created automatically by the source-to-image tooling do not. should the default behavior of exposing this route be consistent across all deployment methodologies?
Wanted to notify you of a really strange issue I ran into and my fix. I was using the following Dockerfile for a simple multi-stage SBT build:
FROM bigtruedata/sbt AS build
WORKDIR /app
COPY . .
RUN sbt assembly
FROM openjdk:8-alpine
COPY --from=build /app/target/scala-2.12/app.jar /app/app.jar
EXPOSE 8080
ENTRYPOINT ["java", "-jar", "/app/app.jar"]
Which, after all the bu
-
Updated
Apr 24, 2020 - Shell
-
Updated
Apr 22, 2020 - Shell
-
Updated
Aug 25, 2019 - Shell
-
Updated
Jul 12, 2017 - Shell
-
Updated
Mar 7, 2019 - Shell
README example is obsolete for latest SBT version:
Run style check before compilation
Add the following sbt settings:
compile in Compile <<= (compile in Compile) dependsOn (jcheckStyle in Compile)
compile in Test <<= (compile in Test) dependsOn (jcheckStyle in Test)
Working configuration:
Compile / compile := (Compile / compile).dependsOn(Compile / jcheckStyle).val
-
Updated
Mar 26, 2018 - Shell
-
Updated
May 29, 2017 - Shell
-
Updated
Aug 16, 2017 - Shell
The sbt distributions used in sbtenv-install have md5 sums but sbtenv-install is only able to handle sha1 sums.
Ideally, sbtenv-install should check downloaded tarballs against their md5 sums.