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 org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@@ -26,9 +26,9 @@ import org.springframework.context.annotation.DependsOn;
import de.schlichtherle.license.LicenseManager;
import jakarta.annotation.PostConstruct;
import top.continew.license.initializing.LicenseStarterInitializingBean;
import top.continew.license.bean.LicenseInstallerBean;
import top.continew.license.manager.CustomLicenseManager;
import top.continew.starter.license.initializing.LicenseStarterInitializingBean;
import top.continew.starter.license.bean.LicenseInstallerBean;
import top.continew.starter.license.manager.CustomLicenseManager;
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;

View File

@@ -14,15 +14,15 @@
* limitations under the License.
*/
package top.continew.license.bean;
package top.continew.starter.license.bean;
import de.schlichtherle.license.LicenseContent;
import de.schlichtherle.license.LicenseManager;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import top.continew.license.autoconfigure.LicenseVerifyProperties;
import top.continew.license.exception.LicenseException;
import top.continew.license.manager.CustomLicenseManager;
import top.continew.starter.license.autoconfigure.LicenseVerifyProperties;
import top.continew.starter.license.exception.LicenseException;
import top.continew.starter.license.manager.CustomLicenseManager;
import java.io.File;
import java.nio.file.Paths;

View File

@@ -14,10 +14,10 @@
* limitations under the License.
*/
package top.continew.license.initializing;
package top.continew.starter.license.initializing;
import org.springframework.beans.factory.InitializingBean;
import top.continew.license.bean.LicenseInstallerBean;
import top.continew.starter.license.bean.LicenseInstallerBean;
/**
* 启动校验 License

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package top.continew.license.manager;
package top.continew.starter.license.manager;
import com.fasterxml.jackson.databind.ObjectMapper;
import de.schlichtherle.license.*;
@@ -22,13 +22,13 @@ import de.schlichtherle.xml.GenericCertificate;
import net.lingala.zip4j.ZipFile;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import top.continew.license.autoconfigure.LicenseVerifyProperties;
import top.continew.license.bean.LicenseInstallerBean;
import top.continew.license.exception.LicenseException;
import top.continew.license.model.ConfigParam;
import top.continew.license.model.CustomKeyStoreParam;
import top.continew.license.model.LicenseExtraModel;
import top.continew.license.util.ServerInfoUtils;
import top.continew.starter.license.autoconfigure.LicenseVerifyProperties;
import top.continew.starter.license.bean.LicenseInstallerBean;
import top.continew.starter.license.exception.LicenseException;
import top.continew.starter.license.model.ConfigParam;
import top.continew.starter.license.model.CustomKeyStoreParam;
import top.continew.starter.license.model.LicenseExtraModel;
import top.continew.starter.license.util.ServerInfoUtils;
import java.io.File;
import java.io.IOException;

View File

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