Skip to content

Commit

Permalink
Fill out rewrite rule section
Browse files Browse the repository at this point in the history
  • Loading branch information
olafurpg committed Aug 13, 2018
1 parent 3a5418b commit 62e3424
Show file tree
Hide file tree
Showing 8 changed files with 499 additions and 201 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ intellij/out


*~
docs/xx.md
2 changes: 1 addition & 1 deletion .jvmopts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
-Xms1G
-Xmx6G
-XX:MaxPermSize=512M
-XX:ReservedCodeCacheSize=250M
-XX:ReservedCodeCacheSize=500M
-XX:+TieredCompilation
-XX:-UseGCOverheadLimit
-XX:+CMSClassUnloadingEnabled
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ inThisBuild(
resolvers += Resolver.sonatypeRepo("releases"),
libraryDependencies ++= List(
scalatest.value % Test,
scalacheck % Test
scalacheck % Test,
scalametaTestkit % Test
)
)
)
Expand Down Expand Up @@ -195,14 +196,13 @@ lazy val benchmarks = project
.dependsOn(coreJVM)
.enablePlugins(JmhPlugin)


lazy val website = project
.enablePlugins(PreprocessPlugin, TutPlugin)
.configs(Tut, Preprocess)
.settings(
crossScalaVersions := List(scala212),
skip in publish := true,
tutSourceDirectory := baseDirectory.value / ".." / "docs",
tutSourceDirectory := baseDirectory.in(ThisBuild).value / "docs",
sourceDirectory in Preprocess := tutTargetDirectory.value,
target in Preprocess := target.value / "docs",
preprocess in Preprocess := (preprocess in Preprocess).dependsOn(tut).value,
Expand Down
Loading

0 comments on commit 62e3424

Please sign in to comment.