Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(#865): code coverage tool maven plugin #1269

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
[submodule "plugins"]
path = plugins
url = https://github.com/openelisglobal/openelisglobal-plugins.git
[submodule "tools/Liquibase-Outdated"]
path = tools/Liquibase-Outdated
url = https://github.com/I-TECH-UW/Liquibase-Outdated.git
[submodule "tools/Password-Migrator"]
path = tools/Password-Migrator
url = https://github.com/I-TECH-UW/Password-Migrator.git
[submodule "Consolidated-Server"]
path = Consolidated-Server
url = [email protected]:I-TECH-UW/Consolidated-Server.git
Expand Down
23 changes: 22 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<log4j.version>2.17.1</log4j.version>
<springframework.version>5.3.26</springframework.version>
<springsecurity.version>5.7.10</springsecurity.version>
<testContainersVersion>1.15.3</testContainersVersion>
<testContainersVersion>1.20.1</testContainersVersion>
</properties>
<dependencies>

Expand Down Expand Up @@ -691,6 +691,27 @@
</java>
</configuration>
</plugin>
<!-- code coverage plugin -->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.12</version> <!-- Use the latest version -->
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>

</plugins>
</build>
</project>
1 change: 0 additions & 1 deletion tools/Liquibase-Outdated
Submodule Liquibase-Outdated deleted from 31ea11
1 change: 0 additions & 1 deletion tools/Password-Migrator
Submodule Password-Migrator deleted from 8cb7c7
Loading