Skip to content

Commit f487b33

Browse files
committed
!tck reactive-streams#12 Migrated TCK to plain Java
In which we trade off less-DRY in order to be scala-version independent. TCK does not depend on Scala at all now. Please review and I'll rename Java* => * and remove the Scala one versions.
1 parent f8a6ba0 commit f487b33

13 files changed

+2104
-1146
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ target/
1212
.eprj
1313
.history
1414
.idea
15+
.idea_modules

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
organization in ThisBuild := "org.reactivestreams"
22

3-
version in ThisBuild := "0.2-SNAPSHOT"
3+
version in ThisBuild := "0.3-SNAPSHOT"
44

55
licenses in ThisBuild := Seq("CC0" -> url("http://creativecommons.org/publicdomain/zero/1.0/"))
66

tck/build.sbt

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
11
name := "reactive-streams-tck"
22

3+
javacOptions in compile ++= Seq("-encoding", "UTF-8", "-source", "1.6", "-target", "1.6", "-Xlint:unchecked", "-Xlint:deprecation")
4+
5+
javacOptions in (Compile,doc) ++= Seq("-encoding","UTF-8","-docencoding", "UTF-8", "-charset", "UTF-8", "-notimestamp", "-linksource")
6+
7+
crossPaths := false
8+
9+
publishMavenStyle := true
10+
11+
Common.javadocSettings
12+
313
libraryDependencies += "org.testng" % "testng" % "5.14.10"
14+

0 commit comments

Comments
 (0)