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

git-commit-id / git-commit-id-maven-plugin / #219

04 Dec 2023 07:24PM CUT coverage: 71.134%. Remained the same
#219

push

web-flow
Merge pull request #676 from git-commit-id/dependabot/maven/org.apache.maven.plugins-maven-javadoc-plugin-3.6.3

Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.2 to 3.6.3

276 of 388 relevant lines covered (71.13%)

0.71 hits per line

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

50.0
/src/main/java/pl/project13/maven/validation/ValidationProperty.java
1
/*
2
 * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski <konrad.malawski@java.pl>
3
 *
4
 * git-commit-id-maven-plugin is free software: you can redistribute it and/or modify
5
 * it under the terms of the GNU Lesser General Public License as published by
6
 * the Free Software Foundation, either version 3 of the License, or
7
 * (at your option) any later version.
8
 *
9
 * git-commit-id-maven-plugin is distributed in the hope that it will be useful,
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 * GNU General Public License for more details.
13
 *
14
 * You should have received a copy of the GNU Lesser General Public License
15
 * along with git-commit-id-maven-plugin.  If not, see <http://www.gnu.org/licenses/>.
16
 */
17

18
package pl.project13.maven.validation;
19

20

21
public class ValidationProperty {
22
  private String name;
23
  private String value;
24
  private String shouldMatchTo;
25

26
  public ValidationProperty() {
×
27
  }
×
28

29
  ValidationProperty(String name, String value, String shouldMatchTo) {
1✔
30
    this.name = name;
1✔
31
    this.value = value;
1✔
32
    this.shouldMatchTo = shouldMatchTo;
1✔
33
  }
1✔
34

35
  public void setName(String name) {
36
    this.name = name;
×
37
  }
×
38

39
  public void setValue(String value) {
40
    this.value = value;
×
41
  }
×
42

43
  public void setShouldMatchTo(String shouldMatchTo) {
44
    this.shouldMatchTo = shouldMatchTo;
×
45
  }
×
46

47
  public String getName() {
48
    return name;
1✔
49
  }
50

51
  public String getValue() {
52
    return value;
1✔
53
  }
54

55
  public String getShouldMatchTo() {
56
    return shouldMatchTo;
1✔
57
  }
58
}
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