修改xxljob包名
This commit is contained in:
parent
1078f78060
commit
d5f90b9540
|
|
@ -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>
|
||||
|
|
@ -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;
|
||||
|
|
@ -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;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.tacit.starter.xxljob.properties;
|
||||
package com.tacit.common.xxljob.properties;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.tacit.starter.xxljob.properties;
|
||||
package com.tacit.common.xxljob.properties;
|
||||
|
||||
|
||||
import lombok.Data;
|
||||
|
|
@ -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;
|
||||
|
|
@ -1,2 +1,2 @@
|
|||
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
|
||||
com.tacit.starter.xxljob.XxlJobAutoConfiguration
|
||||
com.tacit.common.xxljob.XxlJobAutoConfiguration
|
||||
|
|
@ -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>
|
||||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue