Skip to content

Commit

Permalink
- fixes #7 "locking JGit config failed after 5 retries"
Browse files Browse the repository at this point in the history
  • Loading branch information
janScheible committed Dec 31, 2020
1 parent 69da6c8 commit 53d48aa
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ The code changes in a local Git working copy are inspected and not covered metho
This is useful for local development iterations before pushing the changes to a remote repository and starting a CI build.

```DOS .bat
mvn com.scheible.testgapanalysis:test-gap-analysis-maven-plugin:1.1.0:clean-jacoco-reports^
mvn com.scheible.testgapanalysis:test-gap-analysis-maven-plugin:1.1.2:clean-jacoco-reports^
jacoco:prepare-agent^
surefire:test^
jacoco:report^
com.scheible.testgapanalysis:test-gap-analysis-maven-plugin:1.1.0:perform
com.scheible.testgapanalysis:test-gap-analysis-maven-plugin:1.1.2:perform
```
By also adding `jacoco:prepare-agent-integration`, `failsafe:integration-test` and `jacoco:report-integration` integration tests are also considered (method coverages of all JaCoCo reports are merged).

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.scheible.testgapanalysis</groupId>
<artifactId>test-gap-analysis-parent</artifactId>
<version>1.1.1</version>
<version>1.1.2</version>

<packaging>pom</packaging>
<name>com.scheible::test-gap-analysis</name>
Expand Down
6 changes: 3 additions & 3 deletions test-gap-analysis-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<parent>
<artifactId>test-gap-analysis-parent</artifactId>
<groupId>com.scheible.testgapanalysis</groupId>
<version>1.1.1</version>
<version>1.1.2</version>
</parent>

<groupId>com.scheible.testgapanalysis</groupId>
<artifactId>test-gap-analysis-maven-plugin</artifactId>
<version>1.1.1</version>
<version>1.1.2</version>

<packaging>maven-plugin</packaging>
<name>com.scheible::test-gap-analysis maven-plugin</name>
Expand All @@ -21,7 +21,7 @@

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<test-gap-analysis.version>1.1.1</test-gap-analysis.version>
<test-gap-analysis.version>1.1.2</test-gap-analysis.version>
</properties>

<dependencies>
Expand Down
6 changes: 3 additions & 3 deletions test-gap-analysis/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<parent>
<groupId>com.scheible.testgapanalysis</groupId>
<artifactId>test-gap-analysis-parent</artifactId>
<version>1.1.1</version>
<version>1.1.2</version>
</parent>

<groupId>com.scheible.testgapanalysis</groupId>
<artifactId>test-gap-analysis</artifactId>
<version>1.1.1</version>
<version>1.1.2</version>

<packaging>jar</packaging>
<name>com.scheible::test-gap-analysis library</name>
Expand All @@ -27,7 +27,7 @@
<sb-contrib.version>7.4.6</sb-contrib.version>
<slf4j.bug-pattern.version>1.5.0</slf4j.bug-pattern.version>

<jgit.version>5.5.0.201909110433-r</jgit.version>
<jgit.version>5.10.0.202012080955-r</jgit.version>
<javaparser.version>3.14.14</javaparser.version>

<!-- NOTE Dependency versions alligned with Spring Boot 2.1.7.RELEASE (as well spring-boot-maven-plugin version). -->
Expand Down

0 comments on commit 53d48aa

Please sign in to comment.