Skip to content

Commit

Permalink
Changed the default behaviour for TCK to generate jar and not run tes…
Browse files Browse the repository at this point in the history
…ts during mvn install

Signed-off-by: Raymond Lam <[email protected]>
  • Loading branch information
raymondlam committed Sep 1, 2017
1 parent 726833e commit a6914dc
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tck/rest/how_to_run_tests.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Start your Eclipse Microprofile Server with Metrics enabled

== Tests

*Note:* TCK is currently still under development

If the server is responding on localhost port 8080 you can just run the tests
via

Expand Down
26 changes: 26 additions & 0 deletions tck/rest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,31 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Disabling tests from running during mvn install
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
Expand Down Expand Up @@ -103,6 +128,7 @@
</execution>
</executions>
</plugin>
-->
</plugins>
</build>
</project>

0 comments on commit a6914dc

Please sign in to comment.