<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
<modelVersion>4.0.0</modelVersion>
|
<parent>
|
<groupId>com.qianwen</groupId>
|
<artifactId>smart-parent</artifactId>
|
<version>1.0.0</version>
|
</parent>
|
|
|
<artifactId>smart-core-tool</artifactId>
|
|
<dependencies>
|
|
<!-- Blade -->
|
<dependency>
|
<groupId>com.qianwen</groupId>
|
<artifactId>smart-core-launch</artifactId>
|
<version>1.0.0</version>
|
</dependency>
|
<!-- Jackson -->
|
<dependency>
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
</dependency>
|
<!-- Guava -->
|
<dependency>
|
<groupId>com.google.guava</groupId>
|
<artifactId>guava</artifactId>
|
</dependency>
|
<!--Swagger-->
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger2</artifactId>
|
<exclusions>
|
<exclusion>
|
<groupId>io.swagger</groupId>
|
<artifactId>swagger-models</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>io.swagger</groupId>
|
<artifactId>swagger-models</artifactId>
|
</dependency>
|
<!-- protostuff -->
|
<dependency>
|
<groupId>io.protostuff</groupId>
|
<artifactId>protostuff-core</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>io.protostuff</groupId>
|
<artifactId>protostuff-runtime</artifactId>
|
</dependency>
|
<!-- jackson -->
|
<dependency>
|
<groupId>com.fasterxml.jackson.module</groupId>
|
<artifactId>jackson-module-jaxb-annotations</artifactId>
|
</dependency>
|
<!-- validation -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-validation</artifactId>
|
</dependency>
|
<!-- Auto -->
|
<dependency>
|
<groupId>com.qianwen</groupId>
|
<artifactId>smart-core-auto</artifactId>
|
<scope>provided</scope>
|
<version>1.0.0</version>
|
</dependency>
|
|
<!--hutool-->
|
<dependency>
|
<groupId>cn.hutool</groupId>
|
<artifactId>hutool-all</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-lang3</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>commons-codec</groupId>
|
<artifactId>commons-codec</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>commons-beanutils</groupId>
|
<artifactId>commons-beanutils</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-collections4</artifactId>
|
</dependency>
|
<!--groovy-->
|
<dependency>
|
<groupId>org.codehaus.groovy</groupId>
|
<artifactId>groovy-all</artifactId>
|
<optional>true</optional>
|
<type>pom</type>
|
</dependency>
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
</dependency>
|
<!--ognl-->
|
<dependency>
|
<groupId>ognl</groupId>
|
<artifactId>ognl</artifactId>
|
<optional>true</optional>
|
</dependency>
|
|
<!--spel-->
|
<dependency>
|
<groupId>org.springframework</groupId>
|
<artifactId>spring-expression</artifactId>
|
<optional>true</optional>
|
</dependency>
|
<dependency>
|
<groupId>com.belerweb</groupId>
|
<artifactId>pinyin4j</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>joda-time</groupId>
|
<artifactId>joda-time</artifactId>
|
</dependency>
|
<!-- fastjson -->
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
</dependency>
|
</dependencies>
|
|
|
</project>
|