BAEL-20537: Migrate to the com.baeldung package

This commit is contained in:
Krzysiek 2019-12-24 13:20:50 +01:00
parent c4fc1b9aef
commit a31800fbb7
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
package org.baeldung.java.io.remote;
package com.baeldung.java.io.remote;
import java.io.IOException;

View File

@ -19,8 +19,8 @@ public class MyCustomRule implements EnforcerRule {
String groupId = (String) enforcerRuleHelper.evaluate("${project.groupId}");
if (groupId == null || !groupId.startsWith("org.baeldung")) {
throw new EnforcerRuleException("Project group id does not start with org.baeldung");
if (groupId == null || !groupId.startsWith("com.baeldung")) {
throw new EnforcerRuleException("Project group id does not start with com.baeldung");
}
}