Skip to content

"Coverage is above minimum" message fixed #15

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

Merged
merged 1 commit into from
Feb 19, 2015

Conversation

rigoford
Copy link
Contributor

Just some minor updates.

"Coverage is above minimum [93.19% < 80.000000%]" was being displayed (notice less than symbol).
Formatting of minimum coverage value restricted to two decimal places.
IntelliJ files added to .gitignore

"Coverage is above minimum [93.19% < 80.000000%]" was being displayed
(notice
less than symbol).

Formatting of minimum coverage value restricted to two decimal places.

IntelliJ files added to .gitignore
gslowikowski added a commit that referenced this pull request Feb 19, 2015
@gslowikowski gslowikowski merged commit 6f699c6 into scoverage:master Feb 19, 2015
@gslowikowski
Copy link
Member

1.0.5-SNAPSHOT snapshot deployed to Sonatype snapshots repository.

Add

    <pluginRepositories>
        <pluginRepository>
            <id>sonatype-nexus-snapshots</id>
            <name>Sonatype Nexus Snapshots</name>
            <url>https://oss.sonatype.org/content/repositories/snapshots</url>
            <releases>
                <enabled>false</enabled>
            </releases>
        </pluginRepository>
    </pluginRepositories>

to your pom.xml or better:

<settings>
    ...
    <profiles>
        ...
        <profile>
            <id>myprofile</id>
            <pluginRepositories>
                <pluginRepository>
                    <id>sonatype-nexus-snapshots</id>
                    <name>Sonatype Nexus Snapshots</name>
                    <url>https://oss.sonatype.org/content/repositories/snapshots</url>
                    <releases>
                        <enabled>false</enabled>
                    </releases>
                </pluginRepository>
            </pluginRepositories>
        </profile>
        ...
    </profiles>

    <activeProfiles>
       <activeProfile>myprofile</activeProfile>
    </activeProfiles>
    ...
</settings>

to ~/.m2/settings.xml file to use it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants