Skip to content
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 CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ There are 2 Maven profiles that you can activate to speed up the build of the Mu

- `-Pskip-rs-tck` to avoid running the Reactive Streams TCK
- `-Pparallel-tests` to run the JUnit5 tests in parallel
- `-Pskip-rs-operators-tests` to avoid running the Reactive Streams Operators tests

The 2 profiles can be activated at the same time if you want to benefit from parallel tests and skip the Reactive Streams TCK.
This is mostly useful to have fast development feedback loops.
Expand Down
1 change: 0 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ quick-build:
install:
./mvnw clean install


# Run all the tests
verify:
./mvnw verify -Pparallel-tests -T8
Expand Down
17 changes: 17 additions & 0 deletions reactive-streams-operators-jakarta/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,23 @@
</build>

<profiles>
<profile>
<id>skip-rs-operators-tests</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</profile>

<profile>
<id>coverage</id>
<activation>
Expand Down
17 changes: 17 additions & 0 deletions reactive-streams-operators/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,23 @@
</build>

<profiles>
<profile>
<id>skip-rs-operators-tests</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</profile>

<profile>
<id>coverage</id>
<properties>
Expand Down