|
| 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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + <parent> |
| 6 | + <groupId>org.springframework.boot</groupId> |
| 7 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 8 | + <version>2.1.0.RELEASE</version> |
| 9 | + <relativePath/> <!-- lookup parent from repository --> |
| 10 | + </parent> |
| 11 | + <groupId>com.springframework</groupId> |
| 12 | + <artifactId>caching-restful-source-code</artifactId> |
| 13 | + <version>0.0.1-SNAPSHOT</version> |
| 14 | + <name>caching-restful-source-code</name> |
| 15 | + <description>Demonstrate cache evict in REST APIs</description> |
| 16 | + |
| 17 | + <properties> |
| 18 | + <java.version>11</java.version> |
| 19 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 20 | + <maven.compiler.source>11</maven.compiler.source> |
| 21 | + <maven.compiler.target>11</maven.compiler.target> |
| 22 | + </properties> |
| 23 | + |
| 24 | + <dependencies> |
| 25 | + <dependency> |
| 26 | + <groupId>org.springframework.boot</groupId> |
| 27 | + <artifactId>spring-boot-starter-cache</artifactId> |
| 28 | + </dependency> |
| 29 | + <dependency> |
| 30 | + <groupId>org.springframework.boot</groupId> |
| 31 | + <artifactId>spring-boot-starter-web</artifactId> |
| 32 | + </dependency> |
| 33 | + <dependency> |
| 34 | + <groupId>org.springframework.boot</groupId> |
| 35 | + <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 36 | + </dependency> |
| 37 | + <dependency> |
| 38 | + <groupId>org.springframework.boot</groupId> |
| 39 | + <artifactId>spring-boot-starter-test</artifactId> |
| 40 | + <scope>test</scope> |
| 41 | + </dependency> |
| 42 | + <dependency> |
| 43 | + <groupId>org.junit.jupiter</groupId> |
| 44 | + <artifactId>junit-jupiter-engine</artifactId> |
| 45 | + <scope>test</scope> |
| 46 | + </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>org.mockito</groupId> |
| 49 | + <artifactId>mockito-junit-jupiter</artifactId> |
| 50 | + <version>2.22.0</version> |
| 51 | + <scope>test</scope> |
| 52 | + </dependency> |
| 53 | + |
| 54 | + <dependency> |
| 55 | + <groupId>javax.xml.bind</groupId> |
| 56 | + <artifactId>jaxb-api</artifactId> |
| 57 | + <version>2.3.1</version> |
| 58 | + </dependency> |
| 59 | + <dependency> |
| 60 | + <groupId>com.sun.xml.bind</groupId> |
| 61 | + <artifactId>jaxb-core</artifactId> |
| 62 | + <version>2.3.0</version> |
| 63 | + </dependency> |
| 64 | + |
| 65 | + <dependency> |
| 66 | + <groupId>com.sun.xml.bind</groupId> |
| 67 | + <artifactId>jaxb-impl</artifactId> |
| 68 | + <version>2.3.2</version> |
| 69 | + </dependency> |
| 70 | + |
| 71 | + <dependency> |
| 72 | + <groupId>javax.activation</groupId> |
| 73 | + <artifactId>activation</artifactId> |
| 74 | + <version>1.1.1</version> |
| 75 | + </dependency> |
| 76 | + |
| 77 | + <dependency> |
| 78 | + <groupId>org.mockito</groupId> |
| 79 | + <artifactId>mockito-core</artifactId> |
| 80 | + <version>2.23.4</version> |
| 81 | + <scope>test</scope> |
| 82 | + </dependency> |
| 83 | + <dependency> |
| 84 | + <groupId>com.h2database</groupId> |
| 85 | + <artifactId>h2</artifactId> |
| 86 | + <version>1.4.200</version> |
| 87 | + <!-- <scope>test</scope>--> |
| 88 | + </dependency> |
| 89 | + </dependencies> |
| 90 | + |
| 91 | + <build> |
| 92 | + <plugins> |
| 93 | + <plugin> |
| 94 | + <groupId>org.apache.maven.plugins</groupId> |
| 95 | + <artifactId>maven-compiler-plugin</artifactId> |
| 96 | + <version>3.8.1</version> |
| 97 | + </plugin> |
| 98 | + <plugin> |
| 99 | + <artifactId>maven-clean-plugin</artifactId> |
| 100 | + <version>3.1.0</version> |
| 101 | + </plugin> |
| 102 | + <plugin> |
| 103 | + <artifactId>maven-resources-plugin</artifactId> |
| 104 | + <!-- <version>3.0.2</version>--> |
| 105 | + </plugin> |
| 106 | + <plugin> |
| 107 | + <artifactId>maven-surefire-plugin</artifactId> |
| 108 | + <version>2.22.2</version> |
| 109 | + </plugin> |
| 110 | + <plugin> |
| 111 | + <artifactId>maven-failsafe-plugin</artifactId> |
| 112 | + <!-- <version>2.22.2</version>--> |
| 113 | + </plugin> |
| 114 | + <plugin> |
| 115 | + <artifactId>maven-install-plugin</artifactId> |
| 116 | + <version>2.5.2</version> |
| 117 | + </plugin> |
| 118 | + <plugin> |
| 119 | + <artifactId>maven-deploy-plugin</artifactId> |
| 120 | + <version>2.8.2</version> |
| 121 | + </plugin> |
| 122 | + </plugins> |
| 123 | + </build> |
| 124 | + |
| 125 | +</project> |
0 commit comments