You've already forked DataMate
feature: Implement the basic knowledge generation function (#40)
This commit is contained in:
@@ -130,6 +130,10 @@
|
||||
<artifactId>spring-boot-starter-test</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-autoconfigure</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
@@ -141,6 +145,7 @@
|
||||
<configuration>
|
||||
<source>${maven.compiler.source}</source>
|
||||
<target>${maven.compiler.target}</target>
|
||||
<parameters>true</parameters>
|
||||
<compilerArgs>
|
||||
<arg>-parameters</arg>
|
||||
</compilerArgs>
|
||||
|
||||
@@ -16,31 +16,12 @@ import org.springframework.transaction.annotation.EnableTransactionManagement;
|
||||
* @version 1.0.0
|
||||
*/
|
||||
@SpringBootApplication
|
||||
@ComponentScan(basePackages = {
|
||||
"com.datamate.main",
|
||||
"com.datamate.datamanagement",
|
||||
"com.datamate.collection",
|
||||
"com.datamate.operator",
|
||||
"com.datamate.cleaning",
|
||||
"com.datamate.synthesis",
|
||||
"com.datamate.annotation",
|
||||
"com.datamate.evaluation",
|
||||
"com.datamate.pipeline",
|
||||
"com.datamate.execution",
|
||||
"com.datamate.common"
|
||||
})
|
||||
@MapperScan(basePackages = {
|
||||
"com.datamate.collection.infrastructure.persistence.mapper",
|
||||
"com.datamate.datamanagement.infrastructure.persistence.mapper",
|
||||
"com.datamate.operator.infrastructure.persistence.mapper",
|
||||
"com.datamate.cleaning.infrastructure.persistence.mapper",
|
||||
"com.datamate.**.mapper"
|
||||
})
|
||||
@ComponentScan(basePackages = {"com.datamate"})
|
||||
@MapperScan(basePackages = {"com.datamate.**.mapper"})
|
||||
@EnableTransactionManagement
|
||||
@EnableAsync
|
||||
@EnableScheduling
|
||||
public class DataMatePlatformApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(DataMatePlatformApplication.class, args);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user