Skip to content

Commit b095630

Browse files
committed
Try not using the coveralls-maven-plugin.
1 parent cf26d42 commit b095630

File tree

3 files changed

+2
-25
lines changed

3 files changed

+2
-25
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,7 @@ jobs:
4949
mvn install -B -q -DskipTests
5050
popd
5151
- name: Build with Maven
52-
run: mvn -Dlogging.config.file=\${maven.multiModuleProjectDirectory}/logging.ci.properties verify -B -Pjacoco coveralls:report -DrepoToken=$COVERALLS_REPO_TOKEN
53-
env:
54-
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
52+
run: mvn -Dlogging.config.file=\${maven.multiModuleProjectDirectory}/logging.ci.properties verify -B -Pjacoco
5553
- name: Coveralls GitHub Action
5654
uses: coverallsapp/[email protected]
5755
- name: Deploy with Maven

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ install:
1919
- mvn install -B -q -DskipTests
2020
- popd
2121
script:
22-
- mvn -Dlogging.config.file=\${maven.multiModuleProjectDirectory}/logging.ci.properties verify -Pjacoco coveralls:report -DrepoToken=$COVERALLS_REPO_TOKEN -B
22+
- mvn -Dlogging.config.file=\${maven.multiModuleProjectDirectory}/logging.ci.properties verify -Pjacoco -B
2323
deploy:
2424
provider: script
2525
script: mvn -s .travis.settings.xml -Dgithub.username=$GITHUB_USERNAME -Dgithub.password=$GITHUB_TOKEN deploy -DskipTests

pom.xml

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -267,27 +267,6 @@
267267
<activeByDefault>false</activeByDefault>
268268
</activation>
269269
<build>
270-
<pluginManagement>
271-
<plugins>
272-
<plugin>
273-
<groupId>com.github.hazendaz.maven</groupId>
274-
<artifactId>coveralls-maven-plugin</artifactId>
275-
<version>4.7.0</version>
276-
<configuration>
277-
<jacocoReports>
278-
<jacocoReport>${project.basedir}/com.ibm.wala.cast.python.report/target/site/jacoco-aggregate/jacoco.xml</jacocoReport>
279-
</jacocoReports>
280-
</configuration>
281-
<dependencies>
282-
<dependency>
283-
<groupId>javax.xml.bind</groupId>
284-
<artifactId>jaxb-api</artifactId>
285-
<version>2.3.1</version>
286-
</dependency>
287-
</dependencies>
288-
</plugin>
289-
</plugins>
290-
</pluginManagement>
291270
<plugins>
292271
<plugin>
293272
<groupId>org.jacoco</groupId>

0 commit comments

Comments
 (0)