Repository: juddi Updated Branches: refs/heads/master f6bc97178 -> fe5dcfab8
JUDDI-952 adding jacoco plugin for code coverage reports. Project: http://git-wip-us.apache.org/repos/asf/juddi/repo Commit: http://git-wip-us.apache.org/repos/asf/juddi/commit/fe5dcfab Tree: http://git-wip-us.apache.org/repos/asf/juddi/tree/fe5dcfab Diff: http://git-wip-us.apache.org/repos/asf/juddi/diff/fe5dcfab Branch: refs/heads/master Commit: fe5dcfab8ce5f0a9614ca33aebac2de0b3c75263 Parents: f6bc971 Author: Alex <[email protected]> Authored: Fri Dec 4 22:07:44 2015 -0500 Committer: Alex <[email protected]> Committed: Fri Dec 4 22:07:44 2015 -0500 ---------------------------------------------------------------------- juddi-core/pom.xml | 1 - pom.xml | 42 +++++++++++++++++++++++++++++++++++++++++- 2 files changed, 41 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/juddi/blob/fe5dcfab/juddi-core/pom.xml ---------------------------------------------------------------------- diff --git a/juddi-core/pom.xml b/juddi-core/pom.xml index af2c0d3..cfa10ea 100644 --- a/juddi-core/pom.xml +++ b/juddi-core/pom.xml @@ -23,7 +23,6 @@ language governing permissions and * limitations under the License. * */ --> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> - <version>1.4.0</version> <configuration> <instructions> <Export-Package>org.apache.juddi, org.apache.juddi.api, http://git-wip-us.apache.org/repos/asf/juddi/blob/fe5dcfab/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 1ed9af1..06b5a18 100644 --- a/pom.xml +++ b/pom.xml @@ -554,7 +554,47 @@ under the License. </execution> </executions> </plugin> - </plugins> + <plugin> + <groupId>org.jacoco</groupId> + <artifactId>jacoco-maven-plugin</artifactId> + <version>0.7.5.201505241946</version> + <executions> + <execution> + <id>jacoco-prepare-agent</id> + <goals> + <goal>prepare-agent</goal> + </goals> + </execution> + <execution> + <id>jacoco-prepare-agent-integration</id> + <goals> + <goal>prepare-agent-integration</goal> + </goals> + </execution> + <execution> + <id>jacoco-report</id> + <goals> + <goal>report</goal> + </goals> + </execution> + <execution> + <id>jacoco-integration</id> + <goals> + <goal>report-integration</goal> + </goals> + </execution> + <execution> + <id>jacoco-check</id> + <goals> + <goal>check</goal> + </goals> + <configuration> + <rules /> + </configuration> + </execution> + </executions> + </plugin> + </plugins> </build> </profile> </profiles> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
