forked from Azure/azure-event-hubs-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
79 lines (71 loc) · 2.47 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
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<description>Java libraries for talking to Windows Azure Event Hubs</description>
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-eventhubs-clients</artifactId>
<version>2.3.2</version>
<packaging>pom</packaging>
<url>https://github.com/Azure/azure-event-hubs</url>
<properties>
<proton-j-version>0.31.0</proton-j-version>
<qpid-proton-j-extensions-version>1.2.0</qpid-proton-j-extensions-version>
<junit-version>4.12</junit-version>
<slf4j-version>1.8.0-alpha2</slf4j-version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<optimize>true</optimize>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>HTTP proxy server in java</id>
<url>http://raw.github.com/SreeramGarlapati/jproxy/master/releases</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.apache.qpid</groupId>
<artifactId>proton-j</artifactId>
<version>${proton-j-version}</version>
</dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>qpid-proton-j-extensions</artifactId>
<version>${qpid-proton-j-extensions-version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j-version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jutils.jproxy</groupId>
<artifactId>jproxy</artifactId>
<version>0.0.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<modules>
<module>azure-eventhubs</module>
<module>azure-eventhubs-eph</module>
<module>azure-eventhubs-extensions</module>
</modules>
</project>