Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup #100

Merged
merged 5 commits into from
Jan 13, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 1 addition & 10 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1 @@
out/*
target/*
project/target/*
project/project/*
js/target/*
js/project/target/*
js/project/project/*
.idea/*
.idea_modules/*
*.iml
target/
8 changes: 8 additions & 0 deletions .jitpack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# workaround for https://github.com/jitpack/jitpack.io/issues/1887

jdk:
- oraclejdk8
before_install:
- wget http://central.maven.org/maven2/org/scala-sbt/sbt-launch/1.1.0/sbt-launch-1.1.0.jar
install:
- java -jar sbt-launch-1.1.0.jar publishM2
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: scala

scala:
- 2.10.7
- 2.11.12
- 2.12.4

Expand Down
3 changes: 1 addition & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ lazy val scalarx = crossProject.settings(
"com.github.julien-truffaut" %%% "monocle-core" % monocleVersion,
"com.github.julien-truffaut" %%% "monocle-macro" % monocleVersion % "test",

"org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided",
"org.scala-lang" % "scala-compiler" % scalaVersion.value % "provided",
"com.lihaoyi" %%% "utest" % "0.6.3" % "test",
"com.lihaoyi" %% "acyclic" % "0.1.7" % "provided"
),
Expand All @@ -33,6 +31,7 @@ lazy val scalarx = crossProject.settings(
"-Ypartial-unification" ::
"-Yno-adapted-args" ::
"-Ywarn-infer-any" ::
"-Ywarn-value-discard" ::
"-Ywarn-nullary-override" ::
"-Ywarn-nullary-unit" ::
Nil,
Expand Down