123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- <?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.iotechn</groupId>
- <artifactId>unimall</artifactId>
- <version>0.0.1-RELEASE</version>
- </parent>
- <groupId>com.iotechn</groupId>
- <artifactId>unimall-launcher</artifactId>
- <version>0.0.1-RELEASE</version>
- <name>unimall-launcher</name>
- <description>unimall启动器</description>
- <properties>
- <java.version>1.8</java.version>
- <maven.deploy.skip>true</maven.deploy.skip>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.iotechn</groupId>
- <artifactId>unimall-admin-api</artifactId>
- <version>0.0.1-RELEASE</version>
- </dependency>
- <dependency>
- <groupId>com.iotechn</groupId>
- <artifactId>unimall-data</artifactId>
- <version>0.0.1-RELEASE</version>
- </dependency>
- <dependency>
- <groupId>com.iotechn</groupId>
- <artifactId>unimall-biz</artifactId>
- <version>0.0.1-RELEASE</version>
- </dependency>
- <dependency>
- <groupId>com.iotechn</groupId>
- <artifactId>unimall-core</artifactId>
- <version>0.0.1-RELEASE</version>
- </dependency>
- <!-- 获取用户浏览器信息 -->
- <dependency>
- <groupId>eu.bitwalker</groupId>
- <artifactId>UserAgentUtils</artifactId>
- <version>1.20</version>
- </dependency>
- <!-- 阿里云对象存储 -->
- <dependency>
- <groupId>com.aliyun.oss</groupId>
- <artifactId>aliyun-sdk-oss</artifactId>
- </dependency>
- <!-- 模板引擎 freemarker -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-freemarker</artifactId>
- </dependency>
- <!-- lombok 工具 -->
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>1.18.4</version>
- <scope>provided</scope>
- </dependency>
- <!-- 阿里巴巴 json 解析 -->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- </dependency>
- <!-- redis 依赖 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-redis</artifactId>
- </dependency>
- <!-- 日志 -->
- <!--<dependency> -->
- <!--<groupId>org.springframework.boot</groupId> -->
- <!--<artifactId>spring-boot-starter-log4j2</artifactId> -->
- <!--</dependency> -->
- <!-- 模板引擎 freemarker -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-freemarker</artifactId>
- </dependency>
- <!-- WEB -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <!-- spring boot -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter</artifactId>
- </dependency>
- <!-- 单元测试 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- <!-- 引入本地jar -->
- <dependency>
- <groupId>com.dangdang.openplatform.openapi</groupId>
- <artifactId>sdk</artifactId>
- <version>1.0-SNAPSHOT</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/src/main/lib/dangdang-open-sdk.jar</systemPath>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <executable>true</executable>
- <includeSystemScope>true</includeSystemScope>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- <configuration>
- <classifier>exec</classifier>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|