Skip to content

Wip add modulename √ #412

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

Merged
merged 5 commits into from
Nov 23, 2017
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CopyrightWaivers.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,4 @@ egetman | Evgeniy Getman, [email protected]
patriknw | Patrik Nordwall, [email protected], Lightbend Inc
angelsanz | Ángel Sanz, [email protected]
shenghaiyang | 盛海洋, [email protected]
kiiadi | Kyle Thomson, [email protected], Amazon.com
8 changes: 7 additions & 1 deletion api/build.gradle
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
description = "reactive-streams"
description = "reactive-streams"

jar {
manifest {
attributes('Automatic-Module-Name': 'org.reactivestreams')
}
}
7 changes: 7 additions & 0 deletions examples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,11 @@ dependencies {
compile project(':reactive-streams')
testCompile project(':reactive-streams-tck')
}

jar {
manifest {
attributes('Automatic-Module-Name': 'org.reactivestreams.examples')
}
}

test.useTestNG()
9 changes: 8 additions & 1 deletion flow-adapters/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,15 @@ dependencies {
testCompile project(':reactive-streams-tck')
testCompile group: 'org.testng', name: 'testng', version: '5.14.10'
}

jar {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This appears twice.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@akarnokd Nice catch, I've fixed that now :)

manifest {
attributes('Automatic-Module-Name': 'org.reactivestreams.flowadapters')
}
}

test.useTestNG()

javadoc {
options.links("http://download.java.net/java/jdk9/docs/api")
options.links("https://docs.oracle.com/javase/9/docs/api")
}
7 changes: 7 additions & 0 deletions tck-flow/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,11 @@ dependencies {
compile project(':reactive-streams-tck')
compile project(':reactive-streams-flow-adapters')
}

jar {
manifest {
attributes('Automatic-Module-Name': 'org.reactivestreams.tckflow')
}
}

test.useTestNG()
7 changes: 7 additions & 0 deletions tck/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,11 @@ dependencies {
compile project(':reactive-streams')
compile project(':reactive-streams-examples')
}

jar {
manifest {
attributes('Automatic-Module-Name': 'org.reactivestreams.tck')
}
}

test.useTestNG()