Skip to content

Commit 5ad77db

Browse files
authored
Merge pull request #73 from raymondlam/disableTCKTestDuringInstall
Changed the default behaviour for TCK to generate jar and not run tes…
2 parents 726833e + a6914dc commit 5ad77db

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

tck/rest/how_to_run_tests.adoc

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ Start your Eclipse Microprofile Server with Metrics enabled
66

77
== Tests
88

9+
*Note:* TCK is currently still under development
10+
911
If the server is responding on localhost port 8080 you can just run the tests
1012
via
1113

tck/rest/pom.xml

+26
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,31 @@
6363

6464
<build>
6565
<plugins>
66+
<plugin>
67+
<groupId>org.apache.maven.plugins</groupId>
68+
<artifactId>maven-javadoc-plugin</artifactId>
69+
<executions>
70+
<execution>
71+
<id>attach-javadocs</id>
72+
<goals>
73+
<goal>jar</goal>
74+
</goals>
75+
</execution>
76+
</executions>
77+
</plugin>
78+
<plugin>
79+
<groupId>org.apache.maven.plugins</groupId>
80+
<artifactId>maven-source-plugin</artifactId>
81+
<executions>
82+
<execution>
83+
<id>attach-sources</id>
84+
<goals>
85+
<goal>jar</goal>
86+
</goals>
87+
</execution>
88+
</executions>
89+
</plugin>
90+
<!-- Disabling tests from running during mvn install
6691
<plugin>
6792
<artifactId>maven-surefire-plugin</artifactId>
6893
<version>2.19.1</version>
@@ -103,6 +128,7 @@
103128
</execution>
104129
</executions>
105130
</plugin>
131+
-->
106132
</plugins>
107133
</build>
108134
</project>

0 commit comments

Comments
 (0)