Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: trautonen/coveralls-maven-plugin
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.0.1
Choose a base ref
...
head repository: trautonen/coveralls-maven-plugin
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.1.0
Choose a head ref

Commits on Oct 16, 2014

  1. Verified

    This commit was signed with the committer’s verified signature.
    renovate-bot Mend Renovate
    Copy the full SHA
    1801c54 View commit details
  2. Copy the full SHA
    01a1c7b View commit details

Commits on Oct 26, 2014

  1. Copy the full SHA
    99c4397 View commit details

Commits on Oct 27, 2014

  1. Merge pull request #54 from lpandzic/maven-central-badge

    Badge for maven central.
    trautonen committed Oct 27, 2014
    Copy the full SHA
    aa395ba View commit details

Commits on Feb 6, 2015

  1. Copy the full SHA
    e604328 View commit details

Commits on Feb 8, 2015

  1. Copy the full SHA
    a4c6042 View commit details

Commits on Feb 12, 2015

  1. Fixed source names

    velo committed Feb 12, 2015
    Copy the full SHA
    07f53a0 View commit details

Commits on Feb 13, 2015

  1. Copy the full SHA
    606b1f6 View commit details

Commits on Feb 26, 2015

  1. Fixed bug when compiling non-PR

    velo committed Feb 26, 2015
    Copy the full SHA
    89d02a4 View commit details

Commits on Mar 11, 2015

  1. Made basedir configurable

    Conflicts:
    	src/main/java/org/eluder/coveralls/maven/plugin/CoverallsReportMojo.java
    velo committed Mar 11, 2015
    Copy the full SHA
    42f9770 View commit details

Commits on Mar 17, 2015

  1. Merge pull request #67 from velo/basedir

    Configurable basedir.
    trautonen committed Mar 17, 2015
    Copy the full SHA
    ca358bd View commit details
  2. Copy the full SHA
    acc65bb View commit details
  3. Merge branch 'file_scan' of git://github.com/velo/coveralls-maven-plu…

    …gin into velo-file_scan
    trautonen committed Mar 17, 2015
    Copy the full SHA
    f1d2e54 View commit details
  4. Copy the full SHA
    e5f883c View commit details
  5. Copy the full SHA
    8ab583a View commit details
  6. Copy the full SHA
    477a2b2 View commit details
  7. Merge branch 'master' of github.com:trautonen/coveralls-maven-plugin

    Conflicts:
    	src/main/java/org/eluder/coveralls/maven/plugin/CoverallsReportMojo.java
    trautonen committed Mar 17, 2015
    Copy the full SHA
    88acb94 View commit details
  8. Merge branch 'shippable_support' of git://github.com/velo/coveralls-m…

    …aven-plugin into velo-shippable_support
    trautonen committed Mar 17, 2015
    Copy the full SHA
    b4e21fb View commit details
  9. Copy the full SHA
    2c4d7c7 View commit details
  10. Cleanup.

    trautonen committed Mar 17, 2015
    Copy the full SHA
    395e40a View commit details
  11. Copy the full SHA
    e574a07 View commit details

Commits on Mar 18, 2015

  1. Added shippable to README

    Due to #66
    velo committed Mar 18, 2015
    Copy the full SHA
    67df689 View commit details
  2. Copy the full SHA
    05fa2b6 View commit details
  3. Merge pull request #68 from velo/patch-1

    Added shippable to README.
    trautonen committed Mar 18, 2015
    Copy the full SHA
    f7974bc View commit details
  4. Copy the full SHA
    b90d806 View commit details
  5. Documentation tweaks.

    trautonen committed Mar 18, 2015
    Copy the full SHA
    cab188a View commit details
  6. Copy the full SHA
    b0a68d4 View commit details
  7. Copy the full SHA
    14cf5e8 View commit details
  8. Updated to version 3.1.0.

    trautonen committed Mar 18, 2015
    Copy the full SHA
    4d2cc6c View commit details
Showing with 696 additions and 159 deletions.
  1. +6 −0 CHANGELOG.md
  2. +1 −1 LICENSE.MIT
  3. +7 −3 README.md
  4. +18 −2 pom.xml
  5. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/CoverageParser.java
  6. +35 −12 src/main/java/org/eluder/coveralls/maven/plugin/CoverallsReportMojo.java
  7. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/Environment.java
  8. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/ProcessingException.java
  9. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/domain/CoverallsResponse.java
  10. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/domain/Git.java
  11. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/domain/GitRepository.java
  12. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/domain/Job.java
  13. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/domain/JsonObject.java
  14. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/domain/Source.java
  15. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/httpclient/CoverallsClient.java
  16. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/json/JsonWriter.java
  17. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/logging/CoverageTracingLogger.java
  18. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/logging/DryRunLogger.java
  19. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/logging/JobLogger.java
  20. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/logging/Logger.java
  21. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/parser/AbstractXmlEventParser.java
  22. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/parser/CoberturaParser.java
  23. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/parser/JaCoCoParser.java
  24. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/parser/SagaParser.java
  25. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/service/AbstractServiceSetup.java
  26. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/service/Bamboo.java
  27. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/service/Circle.java
  28. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/service/General.java
  29. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/service/Jenkins.java
  30. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/service/ServiceSetup.java
  31. +96 −0 src/main/java/org/eluder/coveralls/maven/plugin/service/Shippable.java
  32. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/service/Travis.java
  33. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/source/AbstractSourceLoader.java
  34. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/source/ChainingSourceCallback.java
  35. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/source/DirectorySourceLoader.java
  36. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/source/MultiSourceLoader.java
  37. +91 −0 src/main/java/org/eluder/coveralls/maven/plugin/source/ScanSourceLoader.java
  38. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/source/SourceCallback.java
  39. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/source/SourceLoader.java
  40. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/source/UniqueSourceCallback.java
  41. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/source/UrlSourceLoader.java
  42. +42 −13 src/main/java/org/eluder/coveralls/maven/plugin/util/CoverageParsersFactory.java
  43. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/util/ExistingFiles.java
  44. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/util/MavenProjectCollector.java
  45. +27 −11 src/main/java/org/eluder/coveralls/maven/plugin/util/SourceLoaderFactory.java
  46. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/util/UrlUtils.java
  47. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/validation/JobValidator.java
  48. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/validation/ValidationError.java
  49. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/validation/ValidationErrors.java
  50. +1 −1 src/main/java/org/eluder/coveralls/maven/plugin/validation/ValidationException.java
  51. +1 −1 src/test/java/org/eluder/coveralls/maven/plugin/CoverageFixture.java
  52. +40 −15 src/test/java/org/eluder/coveralls/maven/plugin/CoverallsReportMojoTest.java
  53. +1 −1 src/test/java/org/eluder/coveralls/maven/plugin/EnvironmentTest.java
  54. +1 −1 src/test/java/org/eluder/coveralls/maven/plugin/ProcessingExceptionTest.java
  55. +1 −1 src/test/java/org/eluder/coveralls/maven/plugin/domain/GitRepositoryTest.java
  56. +1 −1 src/test/java/org/eluder/coveralls/maven/plugin/domain/JobTest.java
  57. +1 −1 src/test/java/org/eluder/coveralls/maven/plugin/domain/SourceTest.java
  58. +1 −1 src/test/java/org/eluder/coveralls/maven/plugin/httpclient/CoverallsClientTest.java
  59. +22 −15 src/test/java/org/eluder/coveralls/maven/plugin/json/JsonWriterTest.java
  60. +1 −1 src/test/java/org/eluder/coveralls/maven/plugin/logging/CoverageTracingLoggerTest.java
  61. +1 −1 src/test/java/org/eluder/coveralls/maven/plugin/logging/DryRunLoggerTest.java
  62. +1 −1 src/test/java/org/eluder/coveralls/maven/plugin/logging/JobLoggerTest.java
  63. +1 −1 src/test/java/org/eluder/coveralls/maven/plugin/parser/AbstractCoverageParserTest.java
  64. +1 −1 src/test/java/org/eluder/coveralls/maven/plugin/parser/CoberturaParserTest.java
  65. +1 −1 src/test/java/org/eluder/coveralls/maven/plugin/parser/JaCoCoParserTest.java
  66. +1 −1 src/test/java/org/eluder/coveralls/maven/plugin/parser/SagaParserTest.java
  67. +1 −1 src/test/java/org/eluder/coveralls/maven/plugin/service/AbstractServiceSetupTest.java
  68. +1 −1 src/test/java/org/eluder/coveralls/maven/plugin/service/BambooTest.java
  69. +1 −1 src/test/java/org/eluder/coveralls/maven/plugin/service/CircleTest.java
  70. +1 −1 src/test/java/org/eluder/coveralls/maven/plugin/service/GeneralTest.java
  71. +1 −1 src/test/java/org/eluder/coveralls/maven/plugin/service/JenkinsTest.java
  72. +102 −0 src/test/java/org/eluder/coveralls/maven/plugin/service/ShippableTest.java
  73. +1 −1 src/test/java/org/eluder/coveralls/maven/plugin/service/TravisTest.java
  74. +1 −1 src/test/java/org/eluder/coveralls/maven/plugin/source/DirectorySourceLoaderTest.java
  75. +1 −1 src/test/java/org/eluder/coveralls/maven/plugin/source/MultiSourceLoaderTest.java
  76. +84 −0 src/test/java/org/eluder/coveralls/maven/plugin/source/ScanSourceLoaderTest.java
  77. +2 −2 src/test/java/org/eluder/coveralls/maven/plugin/source/UniqueSourceCallbackTest.java
  78. +1 −1 src/test/java/org/eluder/coveralls/maven/plugin/source/UrlSourceLoaderTest.java
  79. +31 −12 src/test/java/org/eluder/coveralls/maven/plugin/util/CoverageParsersFactoryTest.java
  80. +1 −1 src/test/java/org/eluder/coveralls/maven/plugin/util/ExistingFilesTest.java
  81. +21 −2 src/test/java/org/eluder/coveralls/maven/plugin/util/SourceLoaderFactoryTest.java
  82. +1 −1 src/test/java/org/eluder/coveralls/maven/plugin/util/TestIoUtil.java
  83. +1 −1 src/test/java/org/eluder/coveralls/maven/plugin/util/UrlUtilsTest.java
  84. +1 −1 src/test/java/org/eluder/coveralls/maven/plugin/validation/JobValidatorTest.java
  85. +1 −1 src/test/java/org/eluder/coveralls/maven/plugin/validation/ValidationErrorTest.java
  86. +1 −1 src/test/java/org/eluder/coveralls/maven/plugin/validation/ValidationErrorsTest.java
  87. +1 −1 src/test/java/org/eluder/coveralls/maven/plugin/validation/ValidationExceptionTest.java
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 3.0.1

- #53: Improved error message for missing source encoding
- #52: Ignore duplicate source files on Cobertura aggregate mode


## 3.0.0

- #48: Removed support for URL based source loading due to Coveralls changes
2 changes: 1 addition & 1 deletion LICENSE.MIT
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2013 - 2014, Tapio Rautonen
Copyright (c) 2013 - 2015, Tapio Rautonen

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,7 @@ coveralls-maven-plugin

[![Build Status](http://img.shields.io/travis/trautonen/coveralls-maven-plugin/master.svg)](https://travis-ci.org/trautonen/coveralls-maven-plugin)
[![Coverage Status](http://img.shields.io/coveralls/trautonen/coveralls-maven-plugin/master.svg)](https://coveralls.io/r/trautonen/coveralls-maven-plugin?branch=master)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.eluder.coveralls/coveralls-maven-plugin/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.eluder.coveralls/coveralls-maven-plugin/)

Maven plugin for submitting Java code coverage reports to [Coveralls](https://coveralls.io/) web
service.
@@ -15,8 +16,8 @@ service.
[Saga](http://timurstrekalov.github.io/saga/) coverage tools
* Multi-module report aggregation
* Built-in support for [Travis CI](https://travis-ci.org/), [Circle](https://circleci.com/),
[Codeship](https://www.codeship.io/), [Jenkins](http://jenkins-ci.org/) and
[Bamboo](https://www.atlassian.com/software/bamboo/) continuous integration services
[Codeship](https://www.codeship.io/), [Jenkins](http://jenkins-ci.org/),
[Bamboo](https://www.atlassian.com/software/bamboo/) and [Shippable](https://www.shippable.com/) continuous integration services
* Fully streaming implementation for fast report generation and small memory footprint
* Provides clean interfaces to allow easy extending to different coverage tools
* Convention over configuration for almost zero configuration usage
@@ -31,7 +32,7 @@ Set up the Coveralls maven plugin in the build section of the project pom.xml:
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>3.0.1</version>
<version>3.1.0</version>
<configuration>
<repoToken>yourcoverallsprojectrepositorytoken</repoToken>
</configuration>
@@ -201,6 +202,7 @@ service environment will not override it.
| `jacocoReports` | `List<File>` | List of additional JaCoCo report files. ${project.reporting.outputDirectory}/jacoco/jacoco.xml is used as default for every module. |
| `coberturaReports` | `List<File>` | List of additional Cobertura report files. ${project.reporting.outputDirectory}/cobertura/coverage.xml is used as default for every module. |
| `sagaReports` | `List<File>` | List of additional Saga report files. ${project.build.directory}/saga-coverage/total-coverage.xml is used as default for every module. |
| `relativeReportDirs` | `List<String>` | List of additional relative report directories. Directories relative to ${project.reporting.outputDirectory} and ${project.build.directory} are scanned for reports. |
| `coverallsFile` | `File` | **Default: ${project.build.directory}/coveralls.json**<br>File path to write and submit Coveralls data. |
| `coverallsUrl` | `String` | **Default: https://coveralls.io/api/v1/jobs**<br>Url for the Coveralls API. |
| `sourceDirectories` | `List<File>` | List of additional source directories. The plugin will scan the project's compiled source roots for defaults. |
@@ -215,6 +217,8 @@ service environment will not override it.
| `pullRequest` | `String` | GitHub pull request identifier. If not provided the supported service environments are used. |
| `timestamp` | `Date` | **Default: ${timestamp}**<br>Build timestamp. Must be in Maven supported 'yyyy-MM-dd HH:mm:ssa' format. |
| `dryRun` | `boolean` | **Default: false**<br>Dry run Coveralls report without actually sending it. |
| `scanForSources` | `boolean` | **Default: false**<br>Scan subdirectories for source files. |
| `coveralls.basedir` | `File` | **Default: ${project.basedir}<br>Base directory of the project. |
| `coveralls.skip` | `boolean` | **Default: false**<br>Skip the plugin execution. |


20 changes: 18 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -5,12 +5,12 @@
<parent>
<groupId>org.eluder</groupId>
<artifactId>eluder-parent</artifactId>
<version>5</version>
<version>6</version>
</parent>

<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>3.0.1</version>
<version>3.1.0</version>
<packaging>maven-plugin</packaging>

<name>coveralls-maven-plugin</name>
@@ -24,6 +24,14 @@
</developer>
</developers>

<contributors>
<contributor>
<name>Marvin H Froeder</name>
<email>velo dot br at gmail dot com</email>
<url>about.me/velo</url>
</contributor>
</contributors>

<licenses>
<license>
<name>The MIT License (MIT)</name>
@@ -242,6 +250,14 @@
</instrumentation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${maven.checkstyle.version}</version>
<configuration>
<excludes>**/HelpMojo.java</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
* #[license]
* coveralls-maven-plugin
* %%
* Copyright (C) 2013 - 2014 Tapio Rautonen
* Copyright (C) 2013 - 2015 Tapio Rautonen
* %%
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
* #[license]
* coveralls-maven-plugin
* %%
* Copyright (C) 2013 - 2014 Tapio Rautonen
* Copyright (C) 2013 - 2015 Tapio Rautonen
* %%
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -26,14 +26,6 @@
* %[license]
*/

import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Map;
import java.util.Properties;

import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
@@ -57,13 +49,22 @@
import org.eluder.coveralls.maven.plugin.service.General;
import org.eluder.coveralls.maven.plugin.service.Jenkins;
import org.eluder.coveralls.maven.plugin.service.ServiceSetup;
import org.eluder.coveralls.maven.plugin.service.Shippable;
import org.eluder.coveralls.maven.plugin.service.Travis;
import org.eluder.coveralls.maven.plugin.source.SourceCallback;
import org.eluder.coveralls.maven.plugin.source.SourceLoader;
import org.eluder.coveralls.maven.plugin.source.UniqueSourceCallback;
import org.eluder.coveralls.maven.plugin.util.CoverageParsersFactory;
import org.eluder.coveralls.maven.plugin.util.SourceLoaderFactory;

import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Map;
import java.util.Properties;

@Mojo(name = "report", threadSafe = false, aggregator = true)
public class CoverallsReportMojo extends AbstractMojo {

@@ -84,7 +85,13 @@ public class CoverallsReportMojo extends AbstractMojo {
*/
@Parameter(property = "sagaReports")
protected List<File> sagaReports;


/**
* Directories for relative per module specific report files.
*/
@Parameter(property = "relativeReportDirs")
protected List<String> relativeReportDirs;

/**
* File path to write and submit Coveralls data.
*/
@@ -169,6 +176,18 @@ public class CoverallsReportMojo extends AbstractMojo {
@Parameter(property = "dryRun", defaultValue = "false")
protected boolean dryRun;

/**
* Scan subdirectories for source files.
*/
@Parameter(property = "scanForSources", defaultValue = "false")
protected boolean scanForSources;

/**
* Base directory of the project.
*/
@Parameter(property = "coveralls.basedir", defaultValue = "${project.basedir}")
protected File basedir;

/**
* Skip the plugin execution.
*/
@@ -180,7 +199,8 @@ public class CoverallsReportMojo extends AbstractMojo {
*/
@Component
protected MavenProject project;



@Override
public final void execute() throws MojoExecutionException, MojoFailureException {
if (skip) {
@@ -228,6 +248,7 @@ protected List<CoverageParser> createCoverageParsers(final SourceLoader sourceLo
.withJaCoCoReports(jacocoReports)
.withCoberturaReports(coberturaReports)
.withSagaReports(sagaReports)
.withRelativeReportDirs(relativeReportDirs)
.createParsers();
}

@@ -239,6 +260,7 @@ protected List<CoverageParser> createCoverageParsers(final SourceLoader sourceLo
protected SourceLoader createSourceLoader(final Job job) {
return new SourceLoaderFactory(job.getGit().getBaseDir(), project, sourceEncoding)
.withSourceDirectories(sourceDirectories)
.withScanForSources(scanForSources)
.createSourceLoader();
}

@@ -255,6 +277,7 @@ protected Environment createEnvironment() {
protected List<ServiceSetup> getServices() {
Map<String, String> env = System.getenv();
List<ServiceSetup> services = new ArrayList<ServiceSetup>();
services.add(new Shippable(env));
services.add(new Travis(env));
services.add(new Circle(env));
services.add(new Jenkins(env));
@@ -268,7 +291,7 @@ protected List<ServiceSetup> getServices() {
* @throws IOException if an I/O error occurs
*/
protected Job createJob() throws IOException {
Git git = new GitRepository(project.getBasedir()).load();
Git git = new GitRepository(basedir).load();
return new Job()
.withRepoToken(repoToken)
.withServiceName(serviceName)
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
* #[license]
* coveralls-maven-plugin
* %%
* Copyright (C) 2013 - 2014 Tapio Rautonen
* Copyright (C) 2013 - 2015 Tapio Rautonen
* %%
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
* #[license]
* coveralls-maven-plugin
* %%
* Copyright (C) 2013 - 2014 Tapio Rautonen
* Copyright (C) 2013 - 2015 Tapio Rautonen
* %%
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
* #[license]
* coveralls-maven-plugin
* %%
* Copyright (C) 2013 - 2014 Tapio Rautonen
* Copyright (C) 2013 - 2015 Tapio Rautonen
* %%
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
* #[license]
* coveralls-maven-plugin
* %%
* Copyright (C) 2013 - 2014 Tapio Rautonen
* Copyright (C) 2013 - 2015 Tapio Rautonen
* %%
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
* #[license]
* coveralls-maven-plugin
* %%
* Copyright (C) 2013 - 2014 Tapio Rautonen
* Copyright (C) 2013 - 2015 Tapio Rautonen
* %%
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@
* #[license]
* coveralls-maven-plugin
* %%
* Copyright (C) 2013 - 2014 Tapio Rautonen
* Copyright (C) 2013 - 2015 Tapio Rautonen
* %%
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
* #[license]
* coveralls-maven-plugin
* %%
* Copyright (C) 2013 - 2014 Tapio Rautonen
* Copyright (C) 2013 - 2015 Tapio Rautonen
* %%
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
* #[license]
* coveralls-maven-plugin
* %%
* Copyright (C) 2013 - 2014 Tapio Rautonen
* Copyright (C) 2013 - 2015 Tapio Rautonen
* %%
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
* #[license]
* coveralls-maven-plugin
* %%
* Copyright (C) 2013 - 2014 Tapio Rautonen
* Copyright (C) 2013 - 2015 Tapio Rautonen
* %%
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
* #[license]
* coveralls-maven-plugin
* %%
* Copyright (C) 2013 - 2014 Tapio Rautonen
* Copyright (C) 2013 - 2015 Tapio Rautonen
* %%
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
* #[license]
* coveralls-maven-plugin
* %%
* Copyright (C) 2013 - 2014 Tapio Rautonen
* Copyright (C) 2013 - 2015 Tapio Rautonen
* %%
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
* #[license]
* coveralls-maven-plugin
* %%
* Copyright (C) 2013 - 2014 Tapio Rautonen
* Copyright (C) 2013 - 2015 Tapio Rautonen
* %%
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
* #[license]
* coveralls-maven-plugin
* %%
* Copyright (C) 2013 - 2014 Tapio Rautonen
* Copyright (C) 2013 - 2015 Tapio Rautonen
* %%
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
* #[license]
* coveralls-maven-plugin
* %%
* Copyright (C) 2013 - 2014 Tapio Rautonen
* Copyright (C) 2013 - 2015 Tapio Rautonen
* %%
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
* #[license]
* coveralls-maven-plugin
* %%
* Copyright (C) 2013 - 2014 Tapio Rautonen
* Copyright (C) 2013 - 2015 Tapio Rautonen
* %%
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
* #[license]
* coveralls-maven-plugin
* %%
* Copyright (C) 2013 - 2014 Tapio Rautonen
* Copyright (C) 2013 - 2015 Tapio Rautonen
* %%
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
* #[license]
* coveralls-maven-plugin
* %%
* Copyright (C) 2013 - 2014 Tapio Rautonen
* Copyright (C) 2013 - 2015 Tapio Rautonen
* %%
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Loading