|
17 | 17 | ~ See the License for the specific language governing permissions and |
18 | 18 | ~ limitations under the License. |
19 | 19 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~--> |
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" |
21 | 21 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
22 | 22 | <modelVersion>4.0.0</modelVersion> |
23 | 23 |
|
|
27 | 27 | <version>1.0-SNAPSHOT</version> |
28 | 28 | </parent> |
29 | 29 |
|
| 30 | + <groupId>org.eclipse.microprofile.reactive.messaging</groupId> |
30 | 31 | <artifactId>microprofile-reactive-messaging-tck</artifactId> |
31 | 32 | <name>MicroProfile Reactive Messaging TCK</name> |
32 | 33 | <description>MicroProfile Reactive Messaging :: TCK</description> |
33 | 34 |
|
| 35 | + <properties> |
| 36 | + <checkstyle.methodNameFormat>^_?[a-z][a-zA-Z0-9_]*$</checkstyle.methodNameFormat> |
| 37 | + </properties> |
| 38 | + |
34 | 39 | <dependencies> |
35 | 40 | <dependency> |
36 | 41 | <groupId>org.eclipse.microprofile.reactive.messaging</groupId> |
37 | 42 | <artifactId>microprofile-reactive-messaging-api</artifactId> |
38 | 43 | <version>${project.version}</version> |
39 | 44 | </dependency> |
40 | | - <dependency> |
41 | | - <groupId>org.reactivestreams</groupId> |
42 | | - <artifactId>reactive-streams-tck</artifactId> |
43 | | - </dependency> |
44 | 45 | <dependency> |
45 | 46 | <groupId>javax.enterprise</groupId> |
46 | 47 | <artifactId>cdi-api</artifactId> |
|
53 | 54 | <groupId>org.jboss.arquillian.testng</groupId> |
54 | 55 | <artifactId>arquillian-testng-container</artifactId> |
55 | 56 | </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>org.testng</groupId> |
| 59 | + <artifactId>testng</artifactId> |
| 60 | + </dependency> |
56 | 61 | </dependencies> |
57 | 62 |
|
58 | 63 | <build> |
|
0 commit comments