|
|
@@ -0,0 +1,233 @@
|
|
|
+<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>
|
|
|
+ <artifactId>service-querySrm</artifactId>
|
|
|
+ <name>service-querySrm</name>
|
|
|
+ <description>基于spring-boot构建的租赁服务系统</description>
|
|
|
+ <packaging>jar</packaging>
|
|
|
+
|
|
|
+ <parent>
|
|
|
+ <artifactId>service-querySrm-parent</artifactId>
|
|
|
+ <groupId>cn.com.citycloud</groupId>
|
|
|
+ <version>0.0.1-SNAPSHOT</version>
|
|
|
+ </parent>
|
|
|
+
|
|
|
+ <properties>
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
+ <swagger.version>2.6.1</swagger.version>
|
|
|
+ <alibaba.druid.version>1.0.29</alibaba.druid.version>
|
|
|
+ <spring.web.version>4.3.8.RELEASE</spring.web.version>
|
|
|
+ <mahout.version>0.9</mahout.version>
|
|
|
+ </properties>
|
|
|
+
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <artifactId>service-entity</artifactId>
|
|
|
+ <groupId>cn.com.citycloud</groupId>
|
|
|
+ <version>0.0.1-SNAPSHOT</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <artifactId>service-common</artifactId>
|
|
|
+ <groupId>cn.com.citycloud</groupId>
|
|
|
+ <version>0.0.1-SNAPSHOT</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <artifactId>service-configuration</artifactId>
|
|
|
+ <groupId>cn.com.citycloud</groupId>
|
|
|
+ <version>0.0.1-SNAPSHOT</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- 数据库连接池 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>druid</artifactId>
|
|
|
+ <version>${alibaba.druid.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.mybatis.spring.boot</groupId>
|
|
|
+ <artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
+ <version>1.1.1</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>mysql</groupId>
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
+ <version>8.0.27</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.pagehelper</groupId>
|
|
|
+ <artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
+ <version>1.1.0</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>tk.mybatis</groupId>
|
|
|
+ <artifactId>mapper-spring-boot-starter</artifactId>
|
|
|
+ <version>1.1.0</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.springfox</groupId>
|
|
|
+ <artifactId>springfox-swagger2</artifactId>
|
|
|
+ <version>${swagger.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.springfox</groupId>
|
|
|
+ <artifactId>springfox-swagger-ui</artifactId>
|
|
|
+ <version>${swagger.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-devtools</artifactId>
|
|
|
+ <optional>true</optional>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-amqp</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-tx</artifactId>
|
|
|
+ <version>${spring.web.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.dingtalk</groupId>
|
|
|
+ <artifactId>dingtalk-sdk</artifactId>
|
|
|
+ <version>1.0.0</version>
|
|
|
+ <scope>system</scope>
|
|
|
+ <systemPath>${project.basedir}/lib/dingtalk-sdk.jar</systemPath>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 智能推荐算法库 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.mahout</groupId>
|
|
|
+ <artifactId>mahout-core</artifactId>
|
|
|
+ <version>${mahout.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.mahout</groupId>
|
|
|
+ <artifactId>mahout-integration</artifactId>
|
|
|
+ <version>${mahout.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.huaweicloud.sdk</groupId>
|
|
|
+ <artifactId>huaweicloud-sdk-ocr</artifactId>
|
|
|
+ <version>3.0.77</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
+ <artifactId>jackson-core</artifactId>
|
|
|
+ <version>2.13.1</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
+ <artifactId>jackson-databind</artifactId>
|
|
|
+ <version>2.13.1</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
+ <artifactId>jackson-annotations</artifactId>
|
|
|
+ <version>2.13.1</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.fasterxml.jackson.datatype</groupId>
|
|
|
+ <artifactId>jackson-datatype-jsr310</artifactId>
|
|
|
+ <version>2.13.1</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.fasterxml.jackson.datatype</groupId>
|
|
|
+ <artifactId>jackson-datatype-jdk8</artifactId>
|
|
|
+ <version>2.13.1</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.hutool</groupId>
|
|
|
+ <artifactId>hutool-all</artifactId>
|
|
|
+ <version>5.4.6</version>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+
|
|
|
+ <build>
|
|
|
+ <filters>
|
|
|
+ <filter>src/main/config/${env.name}/jdbc.properties</filter>
|
|
|
+ <filter>src/main/config/${env.name}/config.properties</filter>
|
|
|
+ <filter>src/main/config/${env.name}/cache.properties</filter>
|
|
|
+ </filters>
|
|
|
+ <finalName>${project.artifactId}</finalName>
|
|
|
+ <resources>
|
|
|
+ <resource>
|
|
|
+ <directory>src/main/resources</directory>
|
|
|
+ <filtering>true</filtering>
|
|
|
+ </resource>
|
|
|
+ </resources>
|
|
|
+
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
+ <configuration>
|
|
|
+ <includeSystemScope>true</includeSystemScope>
|
|
|
+ <excludeDevtools>true</excludeDevtools>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-resources-plugin</artifactId>
|
|
|
+ <configuration>
|
|
|
+ <nonFilteredFileExtensions>
|
|
|
+ <nonFilteredFileExtension>xls</nonFilteredFileExtension>
|
|
|
+ <nonFilteredFileExtension>xlsx</nonFilteredFileExtension>
|
|
|
+ </nonFilteredFileExtensions>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+
|
|
|
+ <!-- <plugin>
|
|
|
+ <groupId>com.spotify</groupId>
|
|
|
+ <artifactId>dockerfile-maven-plugin</artifactId>
|
|
|
+ <version>1.4.1</version>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <id>default</id>
|
|
|
+ <goals>
|
|
|
+ <goal>build</goal>
|
|
|
+ <goal>push</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ <configuration>
|
|
|
+ <useMavenSettingsForAuth>true</useMavenSettingsForAuth>
|
|
|
+ <repository>10.0.0.27/ayn/${project.name}</repository>
|
|
|
+ <tag>${project.version}</tag>
|
|
|
+ <buildArgs>
|
|
|
+ <JAR_FILE>target/${project.name}.jar</JAR_FILE>
|
|
|
+ </buildArgs>
|
|
|
+ </configuration>
|
|
|
+ </plugin>-->
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
+
|
|
|
+ <profiles>
|
|
|
+ <profile>
|
|
|
+ <id>dev</id>
|
|
|
+ <activation>
|
|
|
+ <activeByDefault>true</activeByDefault>
|
|
|
+ </activation>
|
|
|
+ <properties>
|
|
|
+ <env.name>dev</env.name>
|
|
|
+ </properties>
|
|
|
+ </profile>
|
|
|
+ <profile>
|
|
|
+ <id>product</id>
|
|
|
+ <properties>
|
|
|
+ <env.name>product</env.name>
|
|
|
+ </properties>
|
|
|
+ </profile>
|
|
|
+ </profiles>
|
|
|
+
|
|
|
+</project>
|