-
Notifications
You must be signed in to change notification settings - Fork 5
/
pom.xml
85 lines (77 loc) · 2.99 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.hystrix</groupId>
<artifactId>hystrix-configurator</artifactId>
<version>0.0.13</version>
<packaging>jar</packaging>
<name>hystrix-configurator</name>
<url>http://maven.apache.org</url>
<distributionManagement>
<repository>
<id>clojars</id>
<name>Clojars repository</name>
<url>https://clojars.org/repo</url>
</repository>
</distributionManagement>
<scm>
<connection>scm:git:https://github.com/phaneesh/hystrtix-configurator.git</connection>
<developerConnection>scm:git:https://github.com/phaneesh/hystrtix-configurator.git</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/phaneesh/hystrtix-configurator</url>
</scm>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<developers>
<developer>
<id>phaneesh</id>
<name>Phaneesh Nagaraja</name>
<email>[email protected]</email>
</developer>
<developer>
<id>AnkushNakaskar</id>
<name>Ankush Nakaskar</name>
<email>[email protected]</email>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<hystrix.version>1.5.18</hystrix.version>
<javax.validation.version>2.0.1.Final</javax.validation.version>
<junit.version>4.13.2</junit.version>
<lombok.version>1.18.24</lombok.version>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.netflix.hystrix</groupId>
<artifactId>hystrix-core</artifactId>
<version>${hystrix.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>${javax.validation.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>