123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- <?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.jpsoft.shinestar</groupId>
- <artifactId>parent</artifactId>
- <version>1.0.0</version>
- </parent>
- <groupId>com.jpsoft.shinestar</groupId>
- <artifactId>web</artifactId>
- <version>1.0.0</version>
- <name>web</name>
- <packaging>war</packaging>
- <description>智慧小区网站</description>
- <properties>
- <swagger2.version>2.7.0</swagger2.version>
- <jwts.version>0.10.5</jwts.version>
- <netty-all.version>4.1.6.Final</netty-all.version>
- <fastjson.version>1.2.29</fastjson.version>
- <alipay.version>4.8.10.ALL</alipay.version>
- <ijpay.version>2.3.2</ijpay.version>
- <poi.version>4.1.0</poi.version>
- <lombok.version>1.18.12</lombok.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- <exclusions>
- <exclusion>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-tomcat</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-thymeleaf</artifactId>
- </dependency>
- <dependency>
- <groupId>net.sourceforge.nekohtml</groupId>
- <artifactId>nekohtml</artifactId>
- <version>1.9.22</version>
- </dependency>
- <dependency>
- <groupId>com.jpsoft.shinestar</groupId>
- <artifactId>lapi</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-aop</artifactId>
- </dependency>
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-swagger2</artifactId>
- <version>${swagger2.version}</version>
- </dependency>
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-swagger-ui</artifactId>
- <version>${swagger2.version}</version>
- </dependency>
- <!--整合Knife4j-->
- <dependency>
- <groupId>com.github.xiaoymin</groupId>
- <artifactId>knife4j-spring-boot-starter</artifactId>
- <version>2.0.4</version>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- </dependency>
- <!--jwt start-->
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt-api</artifactId>
- <version>0.10.5</version>
- </dependency>
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt-impl</artifactId>
- <version>${jwts.version}</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt-jackson</artifactId>
- <version>${jwts.version}</version>
- <scope>runtime</scope>
- </dependency>
- <!--jwt end-->
- <!--支付相关 start-->
- <dependency>
- <groupId>com.github.javen205</groupId>
- <artifactId>IJPay-All</artifactId>
- <version>${ijpay.version}</version>
- </dependency>
- <dependency>
- <groupId>com.jfinal</groupId>
- <artifactId>jfinal</artifactId>
- <version>3.5</version>
- </dependency>
- <dependency>
- <groupId>com.alipay.sdk</groupId>
- <artifactId>alipay-sdk-java</artifactId>
- <version>${alipay.version}</version>
- <exclusions>
- <exclusion>
- <artifactId>bcprov-jdk15on</artifactId>
- <groupId>org.bouncycastle</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <!--支付相关 end-->
- <dependency>
- <groupId>joda-time</groupId>
- <artifactId>joda-time</artifactId>
- </dependency>
- <!--海康威视设备-->
- <dependency>
- <groupId>com.jpsoft.ehome</groupId>
- <artifactId>ehome</artifactId>
- <version>1.0.0</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <fork>true</fork>
- <addResources>true</addResources>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <profiles>
- <profile>
- <id>dev</id>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-tomcat</artifactId>
- </dependency>
- <dependency>
- <artifactId>ehome-win-sdk</artifactId>
- <groupId>com.jpsoft.ehome</groupId>
- <version>1.0.0</version>
- </dependency>
- </dependencies>
- <properties>
- <active.profile>dev</active.profile>
- </properties>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- </profile>
- <profile>
- <id>test</id>
- <dependencies>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- <version>3.1.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <artifactId>ehome-linux-sdk</artifactId>
- <groupId>com.jpsoft.ehome</groupId>
- <version>1.0.0</version>
- </dependency>
- </dependencies>
- <properties>
- <active.profile>test</active.profile>
- </properties>
- </profile>
- <profile>
- <id>production</id>
- <properties>
- <active.profile>production</active.profile>
- </properties>
- <dependencies>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- <version>3.1.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <artifactId>ehome-win-sdk</artifactId>
- <groupId>com.jpsoft.ehome</groupId>
- <version>1.0.0</version>
- </dependency>
- </dependencies>
- </profile>
- </profiles>
- </project>
|