We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 669dc6f commit 0f25c78Copy full SHA for 0f25c78
1 file changed
src/main/java/org/apache/maven/plugins/artifact/buildinfo/BuildInfoWriter.java
@@ -141,11 +141,6 @@ private void printSourceInformation(MavenProject project) {
141
sourceAvailable = true;
142
p.println("source.scm.uri=" + project.getScm().getConnection());
143
p.println("source.scm.tag=" + project.getScm().getTag());
144
- if (project.getArtifact().isSnapshot()) {
145
- log.warn("SCM source tag in buildinfo source.scm.tag="
146
- + project.getScm().getTag() + " does not permit rebuilders reproducible source checkout");
147
- // TODO is it possible to use Scm API to get SCM version?
148
- }
149
} else {
150
p.println("# no scm configured in pom.xml");
151
}
0 commit comments