BAEL-20537: Migrate to the com.baeldung package

This commit is contained in:
Krzysiek
2019-12-24 13:20:50 +01:00
parent b62b9c8ee0
commit fd05d360de
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");
}
}