All Projects → codecov → Example Java Maven

codecov / Example Java Maven

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Example Java Maven

javadoc-coverage
A Doclet to generate JavaDoc coverage reports ☕️🧪📗
Stars: ✭ 23 (-52.08%)
Mutual labels:  coverage, maven
Eclemma
🌘 Java Code Coverage for Eclipse IDE
Stars: ✭ 45 (-6.25%)
Mutual labels:  coverage
Angular2 Webpack Boilerplate
A boilerplate for Angular 2 and Webpack
Stars: ✭ 30 (-37.5%)
Mutual labels:  coverage
Spring Web Rss Channels
A Full Stack RSS Reader web application built with Spring MVC and JSP. It uses libraries like Spring, JPA, Bootstrap, Apache Tiles, JSP etc. There is also a static code analysis tool called Checkstyle.
Stars: ✭ 40 (-16.67%)
Mutual labels:  maven
Notes
📝 Migrated to(迁移至) https://github.com/Kuangcp/Note 当前仓库已经废弃, 对应的博客网站:
Stars: ✭ 33 (-31.25%)
Mutual labels:  maven
Spring Jms
Spring JMS Tutorials
Stars: ✭ 42 (-12.5%)
Mutual labels:  maven
Rasusa
Randomly subsample sequencing reads to a specified coverage
Stars: ✭ 28 (-41.67%)
Mutual labels:  coverage
Danyuan Application
初学者 spirng-boot版本
Stars: ✭ 47 (-2.08%)
Mutual labels:  maven
Spark Scala Maven Example
Example Maven configuration for a Spark, Scala project
Stars: ✭ 45 (-6.25%)
Mutual labels:  maven
Wetech Cms
wetech cms是本人自己整合开发的一套内容管理系统。旨在开发一个通用的、可持续开发集成的、方便扩展的cms系统,目前主要用来替代本人的wordpress博客
Stars: ✭ 40 (-16.67%)
Mutual labels:  maven
Lib I18n
The library `Lib-I18N` allows a developer to bind a key-value pair of a `.properties` file to a [StringBinding]. This makes it very easy to change the language during runtime in a [JavaFX] application.
Stars: ✭ 40 (-16.67%)
Mutual labels:  maven
Aliyungradleconfig
自用的安卓开源项目工程模板。阿里云远程仓库加速,发布到maven仓库、上传到jcenter,代码混淆、资源混淆,持续集成(CI),多渠道自动打包。在天朝使用jcenter、mavenCentral及google三个远程仓库,Gradle Sync太慢?一招教你配置阿里云镜像源。init.d/init.gradle
Stars: ✭ 37 (-22.92%)
Mutual labels:  maven
Imagecoordinatespace
UICoordinateSpace for UIImageView image
Stars: ✭ 42 (-12.5%)
Mutual labels:  coverage
Arc Xcode Test Engine
An Xcode test engine for use with Phabricator's arc command line tool.
Stars: ✭ 31 (-35.42%)
Mutual labels:  coverage
Weather
一个天气查询服务:爬取数据、Web服务、小程序展示
Stars: ✭ 46 (-4.17%)
Mutual labels:  maven
Web Framework For Java
A seed project with spring boot for AngularJS, AngularJs Material, Thymeleaf, RESTful API, MySQL and admin panel based on AdminLTE.
Stars: ✭ 29 (-39.58%)
Mutual labels:  maven
Maven Assembly Plugin
Apache Maven Assembly Plugin
Stars: ✭ 39 (-18.75%)
Mutual labels:  maven
Covimerage
Generate coverage information for Vim scripts.
Stars: ✭ 41 (-14.58%)
Mutual labels:  coverage
Piggly
PL/pgSQL stored procedure code coverage tool
Stars: ✭ 47 (-2.08%)
Mutual labels:  coverage
Hellojpro
Stars: ✭ 46 (-4.17%)
Mutual labels:  maven

Codecov Java Maven Example

FOSSA Status

Guide

Travis Setup

Add to your .travis.yml file.

language: java

# Cobertura is not supported in JDK11 so you must downgrade the JDK that Travis uses if you want to use Cobertura with Travis.
# See https://github.com/cobertura/cobertura/issues/381
jdk:
  - openjdk8

script: "mvn cobertura:cobertura"

after_success:
  - bash <(curl -s https://codecov.io/bash)

Produce Coverage Reports

Add Cobertura plugin

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>cobertura-maven-plugin</artifactId>
    <version>2.7</version>
    <configuration>
        <formats>
            <format>html</format>
            <format>xml</format>
        </formats>
        <check />
    </configuration>
</plugin>

Call mvn cobertura:cobertura during your CI tests, see here

Caveats

Private Repos

Add to your .travis.yml file.

after_success:
  - bash <(curl -s https://codecov.io/bash) -t uuid-repo-token

Support

FAQ

  1. More documentation at https://docs.codecov.io
  2. Configure codecov through the codecov.yml https://docs.codecov.io/docs/codecov-yaml

We are happy to help if you have any questions. Please contact email our Support at [email protected]

License

FOSSA Status

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].