chore: 简化 package,对于互斥包不再单独命名,例如:data.mp、data.mf,统一为 data

This commit is contained in:
2025-07-04 21:15:28 +08:00
parent 78a7904c2f
commit 223236aad3
59 changed files with 105 additions and 107 deletions

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package top.continew.license.autoconfigure;
package top.continew.starter.license.autoconfigure;
import jakarta.annotation.PostConstruct;
import org.slf4j.Logger;
@@ -25,7 +25,7 @@ import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Bean;
import top.continew.license.service.LicenseCreateService;
import top.continew.starter.license.service.LicenseCreateService;
import top.continew.starter.core.constant.PropertiesConstants;
/**

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package top.continew.license.autoconfigure;
package top.continew.starter.license.autoconfigure;
import org.springframework.boot.context.properties.ConfigurationProperties;
import top.continew.starter.core.constant.PropertiesConstants;

View File

@@ -14,11 +14,11 @@
* limitations under the License.
*/
package top.continew.license.manager;
package top.continew.starter.license.manager;
import de.schlichtherle.license.*;
import de.schlichtherle.xml.GenericCertificate;
import top.continew.license.exception.LicenseException;
import top.continew.starter.license.exception.LicenseException;
import java.util.Date;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package top.continew.license.service;
package top.continew.starter.license.service;
import cn.hutool.core.util.IdUtil;
import com.fasterxml.jackson.databind.ObjectMapper;
@@ -22,11 +22,11 @@ import de.schlichtherle.license.*;
import net.lingala.zip4j.ZipFile;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import top.continew.license.exception.LicenseException;
import top.continew.license.manager.ServerLicenseManager;
import top.continew.license.model.*;
import top.continew.license.util.ExecCmdUtil;
import top.continew.license.util.ServerInfoUtils;
import top.continew.starter.license.exception.LicenseException;
import top.continew.starter.license.manager.ServerLicenseManager;
import top.continew.starter.license.model.*;
import top.continew.starter.license.util.ExecCmdUtil;
import top.continew.starter.license.util.ServerInfoUtils;
import javax.security.auth.x500.X500Principal;
import java.io.File;

View File

@@ -1 +1 @@
top.continew.license.autoconfigure.LicenseGenerateAutoConfiguration
top.continew.starter.license.autoconfigure.LicenseGenerateAutoConfiguration