You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.thing</groupId> <artifactId>thingbi</artifactId> <version>5.1</version> </parent> <artifactId>application</artifactId> <name>ThingBI Application</name>
<properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties>
<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>${spring-boot.version}</version> <type>pom</type> </dependency> <!-- SpringBoot Web容器 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis-spring</artifactId> </dependency> <!--common--> <dependency> <groupId>com.thing.common</groupId> <artifactId>data</artifactId> </dependency> <dependency> <groupId>com.thing.common</groupId> <artifactId>orm</artifactId> </dependency> <dependency> <groupId>com.thing.common</groupId> <artifactId>queue</artifactId> </dependency> <dependency> <groupId>com.thing.common</groupId> <artifactId>script</artifactId> </dependency> <dependency> <groupId>com.thing.common</groupId> <artifactId>security</artifactId> </dependency> <dependency> <groupId>com.thing.common</groupId> <artifactId>transport</artifactId> </dependency> <dependency> <groupId>com.thing.common</groupId> <artifactId>tskv</artifactId> </dependency> <dependency> <groupId>com.thing.common</groupId> <artifactId>util</artifactId> </dependency>
<!--modules--> <dependency> <groupId>com.thing.modules</groupId> <artifactId>actor-biz</artifactId> </dependency> <dependency> <groupId>com.thing.modules</groupId> <artifactId>alarm</artifactId> </dependency> <dependency> <groupId>com.thing.modules</groupId> <artifactId>calculation</artifactId> </dependency> <dependency> <groupId>com.thing.modules</groupId> <artifactId>mock</artifactId> </dependency> <dependency> <groupId>com.thing.modules</groupId> <artifactId>report-analysis</artifactId> </dependency> <dependency> <groupId>com.thing.modules</groupId> <artifactId>configuration</artifactId> </dependency> <dependency> <groupId>com.thing.modules</groupId> <artifactId>dequeue</artifactId> </dependency> <dependency> <groupId>com.thing.modules</groupId> <artifactId>msg</artifactId> </dependency> <dependency> <groupId>com.thing.modules</groupId> <artifactId>quartz</artifactId> </dependency> <dependency> <groupId>com.thing.modules</groupId> <artifactId>carbon-track</artifactId> </dependency> <dependency> <groupId>com.thing.modules</groupId> <artifactId>carbon-public</artifactId> </dependency> <dependency> <groupId>com.thing.modules</groupId> <artifactId>equipment</artifactId> </dependency> <dependency> <groupId>com.thing.modules</groupId> <artifactId>thing</artifactId> </dependency> <dependency> <groupId>com.thing.tools</groupId> <artifactId>system-monitor</artifactId> </dependency> <dependency> <groupId>com.thing.tools</groupId> <artifactId>code-generator</artifactId> </dependency> <dependency> <groupId>com.thing.modules</groupId> <artifactId>filter-rule</artifactId> </dependency> <dependency> <groupId>com.thing.modules</groupId> <artifactId>qingyuan</artifactId> </dependency> <dependency> <groupId>com.thing.modules</groupId> <artifactId>cqc-service</artifactId> </dependency> <dependency> <groupId>com.thing.modules</groupId> <artifactId>visual-design</artifactId> </dependency> <!-- test --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies>
<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skipTests>true</skipTests> </configuration> </plugin> </plugins> </build>
</project>
|