Skip to content

Commit

Permalink
Merge pull request #73 from raymondlam/disableTCKTestDuringInstall
Browse files Browse the repository at this point in the history
Changed the default behaviour for TCK to generate jar and not run tes…
  • Loading branch information
Emily-Jiang authored Sep 1, 2017
2 parents 726833e + a6914dc commit 5ad77db
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 5ad77db

Please sign in to comment.