This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[debug] Reading incremental options from map | |
[info] Running source-dependencies/subproject-pipelining | |
[debug] Reading incremental options from map | |
[debug] PIPELINING value was read. | |
[debug] Reading incremental options from map | |
[debug] PIPELINING value was read. | |
[debug] [zinc] IncrementalCompile ----------- | |
[debug] IncrementalCompile.incrementalCompile | |
[debug] previous = Stamps for: 0 products, 0 sources, 0 libraries Map() | |
[debug] current source = Set(${BASE}/dep/A.scala) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* sbt | |
* Licensed under Apache License 2.0 (see LICENSE) | |
*/ | |
package org.scalasbt.sbtw; | |
import java.io.IOException; | |
import java.io.OutputStream; | |
import java.io.InputStream; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Homebrew build logs for sbt on macOS 10.14.3 | |
Build date: 2020-01-15 01:26:06 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Homebrew build logs for sbt on macOS 10.14.3 | |
Build date: 2020-01-15 01:26:06 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sealed abstract class Bool | |
case class True() extends Bool | |
case class False() extends Bool | |
sealed abstract class Nat | |
case class Zero() extends Nat | |
case class Succ (rec_x1:Nat) extends Nat | |
sealed abstract class Int | |
case class Pos (rec_x1:Nat) extends Int |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ sbt | |
[info] Loading settings for project global-plugins from foo.sbt ... | |
[info] Loading global plugins from C:\Users\eed3si9n\.sbt\1.0\plugins | |
[info] Loading project definition from C:\cygwin64\home\eed3si9n\work\hello\project | |
[info] Compiling 1 Scala source to C:\cygwin64\home\eed3si9n\work\hello\project\target\scala-2.12\sbt-1.0\classes ... | |
[info] Done compiling. | |
[info] Loading settings for project root from build.sbt ... | |
[info] Set current project to Hello (in build file:/C:/cygwin64/home/eed3si9n/work/hello/) | |
[error] java.io.IOException: Could not create directory C:\cygwin64\home\eed3si9n\work\hello\target\streams\_global\_global\checkBuildSources\_global\inputFileStamps: java.nio.file.AccessDeniedException: C:\cygwin64\home\eed3si9n\work\hello\target\streams\_global\_global\checkBuildSources\_global | |
[error] Use 'last' for the full log. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Util._ | |
import Dependencies._ | |
import Sxr.sxr | |
import com.typesafe.tools.mima.core._, ProblemFilters._ | |
import local.Scripted | |
import scala.xml.{ Node => XmlNode, NodeSeq => XmlNodeSeq, _ } | |
import scala.xml.transform.{ RewriteRule, RuleTransformer } | |
import scala.util.Try | |
ThisBuild / version := { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sbt new lampepfl/dotty.g8 | |
Copying runtime jar. | |
[info] [launcher] getting org.scala-sbt sbt 1.3.2 (this may take some time)... | |
downloading https://repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.2/sbt-1.3.2.jar ... | |
downloading https://repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.3.1/io_2.12-1.3.1.jar ... | |
downloading https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.10/scala-library-2.12.10.jar ... | |
downloading https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.2/main_2.12-1.3.2.jar ... | |
:: loading settings :: url = jar:file:/root/.sdkman/candidates/sbt/1.3.2/bin/sbt-launch.jar!/org/apache/ivy/core/settings/ivysettings.xml | |
:: loading settings :: url = jar:file:/root/.sdkman/candidates/sbt/1.3.2/bin/sbt-launch.jar!/org/apache/ivy/core/settings/ivysettings.xml | |
:: loading settings :: url = jar:file:/root/.sdkman/candidates/sbt/1.3.2/bin/sbt-launch.jar!/org/apache/ivy/core/settings/ivysettings.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sbt:foo> pgp-cmd gen-key | |
Please enter the name associated with the key: foo | |
Please enter the email associated with the key: [email protected] | |
Please enter the passphrase for the key: **** | |
Please re-enter the passphrase for the key: **** | |
[info] Creating a new PGP key, this could take a long time. | |
[info] Public key := /home/demiourgos1/.sbt/gpg/pubring.asc | |
[info] Secret key := /home/demiourgos1/.sbt/gpg/secring.asc | |
[info] Please do not share your secret key. Your public key is free to share. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[info] Compiling 14 Scala sources to /Users/eed3si9n/work/scala-modules/scala/build/quick/classes/library ... | |
[error] /Users/eed3si9n/work/scala-modules/scala/src/library/scala/StringContext.scala:272:28: object min is not a member of package math | |
[error] case s => math.min(s, inputIndex) | |
[error] ^ | |
[error] /Users/eed3si9n/work/scala-modules/scala/src/library/scala/StringContext.scala:276:28: object max is not a member of package math | |
[error] case s => math.max(s, inputIndex) | |
[error] ^ | |
[error] /Users/eed3si9n/work/scala-modules/scala/src/library/scala/collection/Factory.scala:52:52: object max is not a member of package math | |
[error] val b = new mutable.StringBuilder(scala.math.max(0, it.knownSize)) | |
[error] ^ |