BAEL-20537: Migrate to the com.baeldung package
This commit is contained in:
parent
c4fc1b9aef
commit
a31800fbb7
|
@ -1,4 +1,4 @@
|
|||
package org.baeldung.java.io.remote;
|
||||
package com.baeldung.java.io.remote;
|
||||
|
||||
import java.io.IOException;
|
||||
|
|
@ -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");
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue