修改xxljob包名

This commit is contained in:
panxuejie 2026-01-08 18:13:55 +08:00
parent 1078f78060
commit d5f90b9540
10 changed files with 12 additions and 12 deletions

View File

@ -10,7 +10,7 @@
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>xxljob</artifactId>
<artifactId>common-xxl-job</artifactId>
<properties>
<maven.compiler.source>21</maven.compiler.source>

View File

@ -1,7 +1,7 @@
package com.tacit.starter.xxljob;
package com.tacit.common.xxljob;
import com.tacit.starter.xxljob.properties.XxlExecutorProperties;
import com.tacit.starter.xxljob.properties.XxlJobProperties;
import com.tacit.common.xxljob.properties.XxlExecutorProperties;
import com.tacit.common.xxljob.properties.XxlJobProperties;
import com.xxl.job.core.executor.impl.XxlJobSpringExecutor;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

View File

@ -1,6 +1,6 @@
package com.tacit.starter.xxljob.annotation;
package com.tacit.common.xxljob.annotation;
import com.tacit.starter.xxljob.XxlJobAutoConfiguration;
import com.tacit.common.xxljob.XxlJobAutoConfiguration;
import org.springframework.context.annotation.Import;
import java.lang.annotation.Documented;

View File

@ -1,4 +1,4 @@
package com.tacit.starter.xxljob.properties;
package com.tacit.common.xxljob.properties;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.tacit.starter.xxljob.properties;
package com.tacit.common.xxljob.properties;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.tacit.starter.xxljob.properties;
package com.tacit.common.xxljob.properties;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;

View File

@ -1,2 +1,2 @@
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
com.tacit.starter.xxljob.XxlJobAutoConfiguration
com.tacit.common.xxljob.XxlJobAutoConfiguration

View File

@ -25,7 +25,7 @@
<module>common-feign</module>
<module>common-core</module>
<module>common-redis</module>
<module>xxljob</module>
<module>common-xxl-job</module>
</modules>
</project>

View File

@ -84,7 +84,7 @@
<!-- XXL Job -->
<dependency>
<groupId>com.tacit</groupId>
<artifactId>xxljob</artifactId>
<artifactId>common-xxl-job</artifactId>
<version>${project.parent.version}</version>
</dependency>