|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <groupId>api.server</groupId> |
| 5 | + <artifactId>seed</artifactId> |
| 6 | + <version>0.1</version> |
| 7 | + <packaging>jar</packaging> |
| 8 | + <name>seed</name> |
| 9 | + |
| 10 | + <parent> |
| 11 | + <groupId>org.springframework.boot</groupId> |
| 12 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 13 | + <version>1.3.0.RELEASE</version> |
| 14 | + </parent> |
| 15 | + |
| 16 | + <properties> |
| 17 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 18 | + <start-class>seed.Application</start-class> |
| 19 | + <java.version>1.7</java.version> |
| 20 | + </properties> |
| 21 | + |
| 22 | + <dependencies> |
| 23 | + <dependency> |
| 24 | + <groupId>org.springframework.boot</groupId> |
| 25 | + <artifactId>spring-boot-starter-web</artifactId> |
| 26 | + <exclusions> |
| 27 | + <exclusion> |
| 28 | + <groupId>org.springframework.boot</groupId> |
| 29 | + <artifactId>spring-boot-starter-tomcat</artifactId> |
| 30 | + </exclusion> |
| 31 | + </exclusions> |
| 32 | + </dependency> |
| 33 | + <dependency> |
| 34 | + <groupId>org.springframework.boot</groupId> |
| 35 | + <artifactId>spring-boot-starter-undertow</artifactId> |
| 36 | + </dependency> |
| 37 | + <dependency> |
| 38 | + <groupId>org.springframework.boot</groupId> |
| 39 | + <artifactId>spring-boot-starter-redis</artifactId> |
| 40 | + </dependency> |
| 41 | + <dependency> |
| 42 | + <groupId>org.springframework.session</groupId> |
| 43 | + <artifactId>spring-session</artifactId> |
| 44 | + </dependency> |
| 45 | + <dependency> |
| 46 | + <groupId>org.mybatis.spring.boot</groupId> |
| 47 | + <artifactId>mybatis-spring-boot-starter</artifactId> |
| 48 | + <version>1.0.0</version> |
| 49 | + </dependency> |
| 50 | + <dependency> |
| 51 | + <groupId>tk.mybatis</groupId> |
| 52 | + <artifactId>mapper</artifactId> |
| 53 | + <version>3.1.3</version> |
| 54 | + </dependency> |
| 55 | + <dependency> |
| 56 | + <groupId>mysql</groupId> |
| 57 | + <artifactId>mysql-connector-java</artifactId> |
| 58 | + </dependency> |
| 59 | + |
| 60 | + <dependency> |
| 61 | + <groupId>org.springframework.boot</groupId> |
| 62 | + <artifactId>spring-boot-starter-actuator</artifactId> |
| 63 | + </dependency> |
| 64 | + <dependency> |
| 65 | + <groupId>org.apache.commons</groupId> |
| 66 | + <artifactId>commons-lang3</artifactId> |
| 67 | + <version>3.4</version> |
| 68 | + </dependency> |
| 69 | + <dependency> |
| 70 | + <groupId>org.springframework.boot</groupId> |
| 71 | + <artifactId>spring-boot-starter-test</artifactId> |
| 72 | + <scope>test</scope> |
| 73 | + </dependency> |
| 74 | + <dependency> |
| 75 | + <groupId>org.springframework.boot</groupId> |
| 76 | + <artifactId>spring-boot-starter-logging</artifactId> |
| 77 | + </dependency> |
| 78 | + |
| 79 | + <dependency> |
| 80 | + <groupId>commons-beanutils</groupId> |
| 81 | + <artifactId>commons-beanutils</artifactId> |
| 82 | + <version>1.9.2</version> |
| 83 | + </dependency> |
| 84 | + |
| 85 | + |
| 86 | + <dependency> |
| 87 | + <groupId>io.reactivex</groupId> |
| 88 | + <artifactId>rxjava</artifactId> |
| 89 | + <version>1.1.0</version> |
| 90 | + </dependency> |
| 91 | + <dependency> |
| 92 | + <groupId>com.google.guava</groupId> |
| 93 | + <artifactId>guava</artifactId> |
| 94 | + <version>19.0</version> |
| 95 | + </dependency> |
| 96 | + <dependency> |
| 97 | + <groupId>com.nimbusds</groupId> |
| 98 | + <artifactId>nimbus-jose-jwt</artifactId> |
| 99 | + <version>4.11.2</version> |
| 100 | + </dependency> |
| 101 | + <dependency> |
| 102 | + <groupId>com.squareup.okhttp</groupId> |
| 103 | + <artifactId>okhttp</artifactId> |
| 104 | + <version>2.7.0</version> |
| 105 | + </dependency> |
| 106 | + <dependency> |
| 107 | + <groupId>com.alibaba</groupId> |
| 108 | + <artifactId>fastjson</artifactId> |
| 109 | + <version>1.2.7</version> |
| 110 | + </dependency> |
| 111 | + </dependencies> |
| 112 | + <build> |
| 113 | + <resources> |
| 114 | + <resource> |
| 115 | + <directory>src/main/resources</directory> |
| 116 | + <!-- <filtering>false</filtering> <includes> <include>static/lib/font-awesome/fonts/**</include> |
| 117 | + <include>static/lib/bootstrap/fonts/**</include> </includes> --> |
| 118 | + </resource> |
| 119 | + </resources> |
| 120 | + <plugins> |
| 121 | + <plugin> |
| 122 | + <groupId>org.springframework.boot</groupId> |
| 123 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 124 | + <dependencies> |
| 125 | + <dependency> |
| 126 | + <groupId>org.springframework</groupId> |
| 127 | + <artifactId>springloaded</artifactId> |
| 128 | + <version>1.2.0.RELEASE</version> |
| 129 | + </dependency> |
| 130 | + </dependencies> |
| 131 | + </plugin> |
| 132 | + <plugin> |
| 133 | + <groupId>org.apache.maven.plugins</groupId> |
| 134 | + <artifactId>maven-compiler-plugin</artifactId> |
| 135 | + <configuration> |
| 136 | + <source>1.8</source> |
| 137 | + <target>1.8</target> |
| 138 | + <optimize>true</optimize> |
| 139 | + <debug>true</debug> |
| 140 | + </configuration> |
| 141 | + </plugin> |
| 142 | + <plugin> |
| 143 | + <groupId>org.apache.maven.plugins</groupId> |
| 144 | + <artifactId>maven-resources-plugin</artifactId> |
| 145 | + <configuration> |
| 146 | + <delimiters> |
| 147 | + <delimiter>@</delimiter> |
| 148 | + </delimiters> |
| 149 | + <useDefaultDelimiters>false</useDefaultDelimiters> |
| 150 | + </configuration> |
| 151 | + </plugin> |
| 152 | + </plugins> |
| 153 | + </build> |
| 154 | +</project> |
0 commit comments