This repository has been archived by the owner on Jul 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from jan0sch/cross-build-for-2_13
Enable cross building for Scala 2.11, 2.12 & 2.13
- Loading branch information
Showing
33 changed files
with
285 additions
and
148 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,54 @@ | ||
# sbt | ||
lib_managed | ||
project/project | ||
target | ||
|
||
# Worksheets (Eclipse or IntelliJ) | ||
*.sc | ||
|
||
# Eclipse | ||
.cache* | ||
.classpath | ||
.project | ||
.scala_dependencies | ||
.settings | ||
.target | ||
.worksheet | ||
|
||
# IntelliJ | ||
.idea | ||
|
||
# ENSIME | ||
.ensime | ||
.ensime_lucene | ||
.ensime_cache | ||
|
||
# Mac | ||
.DS_Store | ||
|
||
# Bloop | ||
.bloop/ | ||
# Emacs | ||
*~ | ||
\#*\# | ||
/.emacs.desktop | ||
/.emacs.desktop.lock | ||
.elc | ||
auto-save-list | ||
tramp | ||
# IntelliJ Idea | ||
*.iml | ||
*.ipr | ||
*.iws | ||
.idea/ | ||
# Logfiles and rotated logfiles. | ||
*.log | ||
*.log.[0-9]* | ||
# MacOS | ||
*.DS_Store | ||
.AppleDouble | ||
.LSOverride | ||
Icon | ||
._* | ||
.DocumentRevisions-V100 | ||
.fseventsd | ||
.Spotlight-V100 | ||
.TemporaryItems | ||
.Trashes | ||
.VolumeIcon.icns | ||
.com.apple.timemachine.donotpresent | ||
.AppleDB | ||
.AppleDesktop | ||
Network Trash Folder | ||
Temporary Items | ||
.apdisk | ||
# Metals | ||
.metals/ | ||
project/metals.sbt | ||
# SBT | ||
target/ | ||
lib_managed/ | ||
src_managed/ | ||
project/boot/ | ||
.history | ||
.cache | ||
# Vim | ||
.*.sw[a-z] | ||
*.un~ | ||
Session.vim | ||
|
||
/tags | ||
# Windows | ||
Thumbs.db | ||
Desktop.ini | ||
|
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
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
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
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
2 changes: 1 addition & 1 deletion
2
benchmarks/src/main/scala/org/dfasdl/utils/benchmarks/DataElementMemoryUsage.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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
sbt.version = 1.2.1 | ||
sbt.version = 1.3.8 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.1") | ||
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "3.0.1") | ||
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.4.0") | ||
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.2.27") | ||
addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.6.2") | ||
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "0.9.3") | ||
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.0") | ||
addSbtPlugin("com.lucidchart" % "sbt-scalafmt" % "1.12") | ||
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1") | ||
addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.3.0") | ||
addSbtPlugin("org.wartremover" % "sbt-wartremover" % "2.2.1") | ||
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.3.1") | ||
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.6.1") | ||
addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.4.0") | ||
addSbtPlugin("org.wartremover" % "sbt-wartremover" % "2.4.3") | ||
|
||
libraryDependencies += "org.slf4j" % "slf4j-nop" % "1.7.25" // Needed by sbt-git | ||
|
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
Oops, something went wrong.