|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | + |
| 3 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + |
| 6 | + <modelVersion>4.0.0</modelVersion> |
| 7 | + |
| 8 | + <groupId>com.snowalker</groupId> |
| 9 | + <artifactId>redis-distributed-lock-core</artifactId> |
| 10 | + <version>1.0.0</version> |
| 11 | + |
| 12 | + <name>redis-distributed-lock-core</name> |
| 13 | + <!-- FIXME change it to the project's website --> |
| 14 | + <url>http://www.example.com</url> |
| 15 | + |
| 16 | + <properties> |
| 17 | + <aspectjweaver>1.8.10</aspectjweaver> |
| 18 | + <aspecjrt>1.8.10</aspecjrt> |
| 19 | + <apache-common-lang3>3.4</apache-common-lang3> |
| 20 | + <google-guava>20.0</google-guava> |
| 21 | + <jedis>2.9.0</jedis> |
| 22 | + <slf4j-api>1.7.25</slf4j-api> |
| 23 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 24 | + <maven.compiler.source>1.7</maven.compiler.source> |
| 25 | + <maven.compiler.target>1.7</maven.compiler.target> |
| 26 | + </properties> |
| 27 | + |
| 28 | + <dependencies> |
| 29 | + <dependency> |
| 30 | + <groupId>junit</groupId> |
| 31 | + <artifactId>junit</artifactId> |
| 32 | + <version>4.11</version> |
| 33 | + <scope>test</scope> |
| 34 | + </dependency> |
| 35 | + |
| 36 | + <!-- aspectjrt --> |
| 37 | + <dependency> |
| 38 | + <groupId>org.aspectj</groupId> |
| 39 | + <artifactId>aspectjrt</artifactId> |
| 40 | + <version>${aspecjrt}</version> |
| 41 | + </dependency> |
| 42 | + <!-- aspectjweaver --> |
| 43 | + <dependency> |
| 44 | + <groupId>org.aspectj</groupId> |
| 45 | + <artifactId>aspectjweaver</artifactId> |
| 46 | + <version>${aspectjweaver}</version> |
| 47 | + </dependency> |
| 48 | + <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 --> |
| 49 | + <dependency> |
| 50 | + <groupId>org.apache.commons</groupId> |
| 51 | + <artifactId>commons-lang3</artifactId> |
| 52 | + <version>${apache-common-lang3}</version> |
| 53 | + </dependency> |
| 54 | + <dependency> |
| 55 | + <groupId>com.google.guava</groupId> |
| 56 | + <artifactId>guava</artifactId> |
| 57 | + <version>${google-guava}</version> |
| 58 | + </dependency> |
| 59 | + <!-- https://mvnrepository.com/artifact/redis.clients/jedis --> |
| 60 | + <dependency> |
| 61 | + <groupId>redis.clients</groupId> |
| 62 | + <artifactId>jedis</artifactId> |
| 63 | + <version>${jedis}</version> |
| 64 | + </dependency> |
| 65 | + <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api --> |
| 66 | + <dependency> |
| 67 | + <groupId>org.slf4j</groupId> |
| 68 | + <artifactId>slf4j-api</artifactId> |
| 69 | + <version>${slf4j-api}</version> |
| 70 | + </dependency> |
| 71 | + <!-- https://mvnrepository.com/artifact/org.springframework/spring-context --> |
| 72 | + <dependency> |
| 73 | + <groupId>org.springframework</groupId> |
| 74 | + <artifactId>spring-context</artifactId> |
| 75 | + <version>4.3.18.RELEASE</version> |
| 76 | + <scope>provided</scope> |
| 77 | + </dependency> |
| 78 | + <!-- https://mvnrepository.com/artifact/org.springframework/spring-core --> |
| 79 | + <dependency> |
| 80 | + <groupId>org.springframework</groupId> |
| 81 | + <artifactId>spring-core</artifactId> |
| 82 | + <version>4.3.18.RELEASE</version> |
| 83 | + <scope>provided</scope> |
| 84 | + </dependency> |
| 85 | + <!-- https://mvnrepository.com/artifact/org.redisson/redisson --> |
| 86 | + <dependency> |
| 87 | + <groupId>org.redisson</groupId> |
| 88 | + <artifactId>redisson</artifactId> |
| 89 | + <version>3.5.4</version> |
| 90 | + </dependency> |
| 91 | + |
| 92 | + </dependencies> |
| 93 | + |
| 94 | + <build> |
| 95 | + <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) --> |
| 96 | + <plugins> |
| 97 | + <plugin> |
| 98 | + <artifactId>maven-clean-plugin</artifactId> |
| 99 | + <version>3.0.0</version> |
| 100 | + </plugin> |
| 101 | + <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging --> |
| 102 | + <plugin> |
| 103 | + <artifactId>maven-resources-plugin</artifactId> |
| 104 | + <version>3.0.2</version> |
| 105 | + </plugin> |
| 106 | + <plugin> |
| 107 | + <artifactId>maven-compiler-plugin</artifactId> |
| 108 | + <version>3.7.0</version> |
| 109 | + </plugin> |
| 110 | + <plugin> |
| 111 | + <artifactId>maven-surefire-plugin</artifactId> |
| 112 | + <version>2.20.1</version> |
| 113 | + </plugin> |
| 114 | + <plugin> |
| 115 | + <artifactId>maven-jar-plugin</artifactId> |
| 116 | + <version>3.0.2</version> |
| 117 | + </plugin> |
| 118 | + <plugin> |
| 119 | + <artifactId>maven-install-plugin</artifactId> |
| 120 | + <version>2.5.2</version> |
| 121 | + </plugin> |
| 122 | + <plugin> |
| 123 | + <artifactId>maven-deploy-plugin</artifactId> |
| 124 | + <version>2.8.2</version> |
| 125 | + </plugin> |
| 126 | + </plugins> |
| 127 | + </pluginManagement> |
| 128 | + </build> |
| 129 | +</project> |
0 commit comments