Commit 69f59e92 by 朽木不可雕也

backup

parent 9737276e
...@@ -86,7 +86,7 @@ public abstract class CreateTaskJob implements Job { ...@@ -86,7 +86,7 @@ public abstract class CreateTaskJob implements Job {
/** /**
* 创建定时导出任务 * 创建定时导出任务
*/ */
protected final <T extends ExportTaskJob> void createExportTask(@NotNull BarrageCollectionTestTask collectionTask) throws SchedulerException { protected final void createExportTask(@NotNull BarrageCollectionTestTask collectionTask) throws SchedulerException {
Class<ExportTaskJob> taskJobClass = ExportTaskJob.class; Class<ExportTaskJob> taskJobClass = ExportTaskJob.class;
JobBuilder jobBuilder = JobBuilder.newJob(taskJobClass); JobBuilder jobBuilder = JobBuilder.newJob(taskJobClass);
String name = collectionTask.getName(), group = taskJobClass.getSimpleName(); String name = collectionTask.getName(), group = taskJobClass.getSimpleName();
......
...@@ -34,4 +34,21 @@ ...@@ -34,4 +34,21 @@
</dependency> </dependency>
</dependencies> </dependencies>
<build>
<finalName>automatic-test</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project> </project>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment