Skip to content

Commit

Permalink
Removed Coveralls and JaCoCo.
Browse files Browse the repository at this point in the history
  • Loading branch information
coulgreer committed May 27, 2020
1 parent f35f6b0 commit f284148
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 60 deletions.
8 changes: 0 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1 @@
language: java

sudo: false

script:
- mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent package org.jacoco:jacoco-maven-plugin:report

after_success:
- mvn clean test jacoco:report coveralls:report
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Password Generator
[![Build Status](https://travis-ci.com/cagreer18/password-generator.svg?branch=master)](https://travis-ci.com/cagreer18/password-generator) [![Coverage Status](https://coveralls.io/repos/github/cagreer18/password-generator/badge.svg?branch=master)](https://coveralls.io/github/cagreer18/password-generator?branch=master)
[![Build Status](https://travis-ci.com/cagreer18/password-generator.svg?branch=master)](https://travis-ci.com/cagreer18/password-generator)

This password generator is meant to help anyone come up with secure passwords/phrases. Also, it is meant to help explain the methods used if the user wishes to hand generate words/phrases.

Expand Down
51 changes: 0 additions & 51 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,57 +27,6 @@
<target>1.8</target>
</configuration>
</plugin>

<!-- Coveralls Plugins -->
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>4.3.0</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.5</version>
<executions>
<execution>
<id>default-prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>default-report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
<execution>
<id>default-check</id>
<goals>
<goal>check</goal>
</goals>
<configuration>
<rules>
<rule>
<element>BUNDLE</element>
<excludes>
<exclude>cagreer.password_generator.Main</exclude>
<exclude>*Test</exclude>
</excludes>
<limits>
<limit>
<counter>COMPLEXITY</counter>
<value>COVEREDRATIO</value>
<minimum>0.9</minimum>
</limit>
</limits>
</rule>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
Expand Down

0 comments on commit f284148

Please sign in to comment.