forked from kaazing/amqp.client.java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
152 lines (143 loc) · 6.24 KB
/
pom.xml
File metadata and controls
152 lines (143 loc) · 6.24 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.kaazing</groupId>
<artifactId>gateway.client.java.common</artifactId>
<version>5.1.0.8</version>
</parent>
<artifactId>amqp.client.java</artifactId>
<name>Kaazing WebSocket Gateway - AMQP Java Client</name>
<version>5.0.0.5-SNAPSHOT</version>
<packaging>jar</packaging>
<url>https://github.com/kaazing/amqp.client.java.git</url>
<description>AMQP 0-9-1 protocol over WebSocket(RFC-6455) transport.</description>
<scm>
<connection>scm:git:${project.scm.url}</connection>
<developerConnection>scm:git:${project.scm.url}</developerConnection>
<url>git@github.com:kaazing/amqp.client.java.git</url>
</scm>
<dependencies>
<dependency>
<groupId>org.kaazing</groupId>
<artifactId>gateway.client.java</artifactId>
<optional>false</optional>
<version>[5.1.0.0,5.2.0.0)</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<type>jar</type>
<optional>false</optional>
<version>4.9</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jmock</groupId>
<artifactId>jmock</artifactId>
<type>jar</type>
<optional>false</optional>
</dependency>
<dependency>
<groupId>org.jmock</groupId>
<artifactId>jmock-legacy</artifactId>
<type>jar</type>
<optional>false</optional>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.kaazing</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<projectHints>
<projectDescription>
<projectName>cglib</projectName>
<licenseName>APACHE 2</licenseName>
<licenseUrl>https://github.com/cglib/cglib/blob/master/LICENSE</licenseUrl>
<homePage>http://cglib.sourceforge.net/</homePage>
<version>2.1_3</version>
</projectDescription>
</projectHints>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>default-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<excludes>
<exclude>*.st</exclude>
</excludes>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8.1</version>
<executions>
<execution>
<!-- The id "attach-javadocs" is critical. Otherwise, these settings are not applied at release:perform. -->
<id>attach-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<attach>true</attach>
<includeDependencySources>true</includeDependencySources>
<dependencySourceIncludes>
<dependencySourceInclude>org.kaazing:net.api</dependencySourceInclude>
<dependencySourceInclude>org.kaazing:gateway.client.java</dependencySourceInclude>
<dependencySourceInclude>org.kaazing:amqp.client.java</dependencySourceInclude>
</dependencySourceIncludes>
<excludePackageNames>
*.bridge:*.util.*:*.sse.*:*.impl.*:*.internal.*
</excludePackageNames>
<overview>${basedir}/src/main/javadoc/overview.html</overview>
<windowtitle>Kaazing AMQP 0-9-1 Java Client Documentation</windowtitle>
<doctitle>"All Classes - API Documentation"</doctitle>
<bottom>Copyright (C) 2014 KAAZING Licensed under Apache 2.0.</bottom>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.9</version>
<configuration>
<forkMode>always</forkMode>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.resourceEncoding>UTF-8</project.build.resourceEncoding>
</properties>
</project>