Skip to content

Commit e72a11b

Browse files
authored
Merge pull request #69 from jroper/idiomatic-arquillian
Restructured TCK to make more idiomatic use of Arquillian
2 parents 23d3d2a + 1b2ffb8 commit e72a11b

29 files changed

+720
-460
lines changed

messaging/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@
5858
<scope>provided</scope>
5959
</dependency>
6060
<dependency>
61-
<groupId>org.reactivestreams</groupId>
62-
<artifactId>reactive-streams-tck</artifactId>
63-
<version>1.0.2</version>
61+
<groupId>org.testng</groupId>
62+
<artifactId>testng</artifactId>
63+
<version>6.11</version>
6464
</dependency>
6565
<dependency>
6666
<groupId>javax.enterprise</groupId>

messaging/tck/pom.xml

+10-5
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
~ See the License for the specific language governing permissions and
1818
~ limitations under the License.
1919
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
20-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
20+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2121
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2222
<modelVersion>4.0.0</modelVersion>
2323

@@ -27,20 +27,21 @@
2727
<version>1.0-SNAPSHOT</version>
2828
</parent>
2929

30+
<groupId>org.eclipse.microprofile.reactive.messaging</groupId>
3031
<artifactId>microprofile-reactive-messaging-tck</artifactId>
3132
<name>MicroProfile Reactive Messaging TCK</name>
3233
<description>MicroProfile Reactive Messaging :: TCK</description>
3334

35+
<properties>
36+
<checkstyle.methodNameFormat>^_?[a-z][a-zA-Z0-9_]*$</checkstyle.methodNameFormat>
37+
</properties>
38+
3439
<dependencies>
3540
<dependency>
3641
<groupId>org.eclipse.microprofile.reactive.messaging</groupId>
3742
<artifactId>microprofile-reactive-messaging-api</artifactId>
3843
<version>${project.version}</version>
3944
</dependency>
40-
<dependency>
41-
<groupId>org.reactivestreams</groupId>
42-
<artifactId>reactive-streams-tck</artifactId>
43-
</dependency>
4445
<dependency>
4546
<groupId>javax.enterprise</groupId>
4647
<artifactId>cdi-api</artifactId>
@@ -53,6 +54,10 @@
5354
<groupId>org.jboss.arquillian.testng</groupId>
5455
<artifactId>arquillian-testng-container</artifactId>
5556
</dependency>
57+
<dependency>
58+
<groupId>org.testng</groupId>
59+
<artifactId>testng</artifactId>
60+
</dependency>
5661
</dependencies>
5762

5863
<build>

0 commit comments

Comments
 (0)