• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

Ekryd / echo-maven-plugin / 3648

14 Nov 2024 01:38PM CUT coverage: 96.795%. Remained the same
3648

push

circleci

web-flow
Update dependency org.codehaus.mojo:versions-maven-plugin to v2.18.0

302 of 312 relevant lines covered (96.79%)

0.97 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

100.0
/echo/src/main/java/echo/output/EchoOutput.java
1
package echo.output;
2

3
/** Output a message to standard output with a specific level */
4
public interface EchoOutput {
5
  /** The message will be output with a failure level (exception will occur) */
6
  void fail(String content);
7

8
  /** The message will be output with error level */
9
  void error(String content);
10

11
  /** The message will be output with warning level */
12
  void warning(String content);
13

14
  /** The message will be output with info level (default level) */
15
  void info(String content);
16

17
  /**
18
   * The message will be output with debug level (maven debugging must be turned on to see message)
19
   */
20
  void debug(String content);
21
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc