|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + |
| 6 | + <groupId>com.roncoo.education</groupId> |
| 7 | + <artifactId>spring-boot-demo-24-1</artifactId> |
| 8 | + <version>0.0.1-SNAPSHOT</version> |
| 9 | + <packaging>jar</packaging> |
| 10 | + |
| 11 | + <name>spring-boot-demo-24-1</name> |
| 12 | + <description>Demo project for Spring Boot</description> |
| 13 | + |
| 14 | + <parent> |
| 15 | + <groupId>org.springframework.boot</groupId> |
| 16 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 17 | + <version>1.4.0.RELEASE</version> |
| 18 | + <relativePath /> <!-- lookup parent from repository --> |
| 19 | + </parent> |
| 20 | + |
| 21 | + <properties> |
| 22 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 23 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 24 | + <java.version>1.8</java.version> |
| 25 | + </properties> |
| 26 | + |
| 27 | + <dependencies> |
| 28 | + <dependency> |
| 29 | + <groupId>org.springframework.boot</groupId> |
| 30 | + <artifactId>spring-boot-devtools</artifactId> |
| 31 | + </dependency> |
| 32 | + <dependency> |
| 33 | + <groupId>org.springframework.boot</groupId> |
| 34 | + <artifactId>spring-boot-starter-freemarker</artifactId> |
| 35 | + </dependency> |
| 36 | + <dependency> |
| 37 | + <groupId>org.webjars</groupId> |
| 38 | + <artifactId>jquery</artifactId> |
| 39 | + <version>2.1.4</version> |
| 40 | + </dependency> |
| 41 | + |
| 42 | + <!-- 数据库 --> |
| 43 | + <dependency> |
| 44 | + <groupId>org.springframework.boot</groupId> |
| 45 | + <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 46 | + </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>com.h2database</groupId> |
| 49 | + <artifactId>h2</artifactId> |
| 50 | + <scope>runtime</scope> |
| 51 | + </dependency> |
| 52 | + |
| 53 | + <dependency> |
| 54 | + <groupId>org.springframework.boot</groupId> |
| 55 | + <artifactId>spring-boot-starter-data-redis</artifactId> |
| 56 | + </dependency> |
| 57 | + |
| 58 | + <!-- mongodb --> |
| 59 | + <dependency> |
| 60 | + <groupId>org.springframework.boot</groupId> |
| 61 | + <artifactId>spring-boot-starter-data-mongodb</artifactId> |
| 62 | + </dependency> |
| 63 | + <dependency> |
| 64 | + <groupId>de.flapdoodle.embed</groupId> |
| 65 | + <artifactId>de.flapdoodle.embed.mongo</artifactId> |
| 66 | + </dependency> |
| 67 | + |
| 68 | + <!-- caching --> |
| 69 | + <dependency> |
| 70 | + <groupId>org.springframework.boot</groupId> |
| 71 | + <artifactId>spring-boot-starter-cache</artifactId> |
| 72 | + </dependency> |
| 73 | + <dependency> |
| 74 | + <groupId>net.sf.ehcache</groupId> |
| 75 | + <artifactId>ehcache</artifactId> |
| 76 | + </dependency> |
| 77 | + |
| 78 | + <dependency> |
| 79 | + <groupId>org.apache.httpcomponents</groupId> |
| 80 | + <artifactId>httpclient</artifactId> |
| 81 | + </dependency> |
| 82 | + |
| 83 | + <!-- mail --> |
| 84 | + <dependency> |
| 85 | + <groupId>org.springframework.boot</groupId> |
| 86 | + <artifactId>spring-boot-starter-mail</artifactId> |
| 87 | + </dependency> |
| 88 | + |
| 89 | + <dependency> |
| 90 | + <groupId>org.springframework.boot</groupId> |
| 91 | + <artifactId>spring-boot-starter-test</artifactId> |
| 92 | + <scope>test</scope> |
| 93 | + </dependency> |
| 94 | + </dependencies> |
| 95 | + |
| 96 | + <build> |
| 97 | + <plugins> |
| 98 | + <plugin> |
| 99 | + <groupId>org.springframework.boot</groupId> |
| 100 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 101 | + </plugin> |
| 102 | + </plugins> |
| 103 | + </build> |
| 104 | + |
| 105 | + |
| 106 | +</project> |
0 commit comments