1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
---|
2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
---|
3 | <modelVersion>4.0.0</modelVersion> |
---|
4 | <groupId>objectmq</groupId> |
---|
5 | <artifactId>objectmq</artifactId> |
---|
6 | <version>0.5.6</version> |
---|
7 | <name>objectmq</name> |
---|
8 | <description>Middleware based on AMQP</description> |
---|
9 | <repositories> |
---|
10 | <repository> |
---|
11 | <id>Sonatype repository</id> |
---|
12 | <name>Sonatype's Maven repository</name> |
---|
13 | <url>http://oss.sonatype.org/content/groups/public</url> |
---|
14 | </repository> |
---|
15 | <repository> |
---|
16 | <id>Sonatype RSO</id> |
---|
17 | <name>Sonatype's Forge repository</name> |
---|
18 | <url>https://repository.sonatype.org/content/groups/forge</url> |
---|
19 | </repository> |
---|
20 | </repositories> |
---|
21 | <dependencies> |
---|
22 | <dependency> |
---|
23 | <groupId>com.rabbitmq</groupId> |
---|
24 | <artifactId>amqp-client</artifactId> |
---|
25 | <version>3.1.1</version> |
---|
26 | </dependency> |
---|
27 | <dependency> |
---|
28 | <groupId>com.rabbitmq</groupId> |
---|
29 | <artifactId>amqp-client</artifactId> |
---|
30 | <version>3.1.1</version> |
---|
31 | <classifier>javadoc</classifier> |
---|
32 | </dependency> |
---|
33 | <dependency> |
---|
34 | <groupId>commons-cli</groupId> |
---|
35 | <artifactId>commons-cli</artifactId> |
---|
36 | <version>1.2</version> |
---|
37 | </dependency> |
---|
38 | <dependency> |
---|
39 | <groupId>commons-io</groupId> |
---|
40 | <artifactId>commons-io</artifactId> |
---|
41 | <version>2.1</version> |
---|
42 | </dependency> |
---|
43 | <dependency> |
---|
44 | <groupId>com.google.code.gson</groupId> |
---|
45 | <artifactId>gson</artifactId> |
---|
46 | <version>2.2.4</version> |
---|
47 | </dependency> |
---|
48 | <dependency> |
---|
49 | <groupId>com.esotericsoftware.kryo</groupId> |
---|
50 | <artifactId>kryo</artifactId> |
---|
51 | <version>2.20</version> |
---|
52 | </dependency> |
---|
53 | <dependency> |
---|
54 | <groupId>junit</groupId> |
---|
55 | <artifactId>junit</artifactId> |
---|
56 | <version>4.11</version> |
---|
57 | </dependency> |
---|
58 | <dependency> |
---|
59 | <groupId>log4j</groupId> |
---|
60 | <artifactId>log4j</artifactId> |
---|
61 | <version>1.2.16</version> |
---|
62 | </dependency> |
---|
63 | <dependency> |
---|
64 | <groupId>log4j</groupId> |
---|
65 | <artifactId>apache-log4j-extras</artifactId> |
---|
66 | <version>1.1</version> |
---|
67 | </dependency> |
---|
68 | </dependencies> |
---|
69 | <build> |
---|
70 | <sourceDirectory>src</sourceDirectory> |
---|
71 | <testSourceDirectory>test</testSourceDirectory> |
---|
72 | <resources> |
---|
73 | <resource> |
---|
74 | <directory>src/main/resources</directory> |
---|
75 | <filtering>true</filtering> |
---|
76 | <includes> |
---|
77 | <include>log4j.xml</include> |
---|
78 | <include>example.properties</include> |
---|
79 | <include>version.properties</include> |
---|
80 | </includes> |
---|
81 | </resource> |
---|
82 | </resources> |
---|
83 | <plugins> |
---|
84 | <plugin> |
---|
85 | <artifactId>maven-compiler-plugin</artifactId> |
---|
86 | <version>3.0</version> |
---|
87 | <configuration> |
---|
88 | <source>1.6</source> |
---|
89 | <target>1.6</target> |
---|
90 | </configuration> |
---|
91 | </plugin> |
---|
92 | <plugin> |
---|
93 | <groupId>org.apache.maven.plugins</groupId> |
---|
94 | <artifactId>maven-assembly-plugin</artifactId> |
---|
95 | <executions> |
---|
96 | <execution> |
---|
97 | <phase>package</phase> |
---|
98 | <goals> |
---|
99 | <goal>attached</goal> |
---|
100 | </goals> |
---|
101 | </execution> |
---|
102 | </executions> |
---|
103 | <configuration> |
---|
104 | <descriptorRefs> |
---|
105 | <descriptorRef>jar-with-dependencies</descriptorRef> |
---|
106 | </descriptorRefs> |
---|
107 | <archive> |
---|
108 | <manifest> |
---|
109 | <addClasspath>true</addClasspath> |
---|
110 | </manifest> |
---|
111 | </archive> |
---|
112 | </configuration> |
---|
113 | </plugin> |
---|
114 | <plugin> |
---|
115 | <groupId>org.apache.maven.plugins</groupId> |
---|
116 | <artifactId>maven-surefire-plugin</artifactId> |
---|
117 | <version>2.14.1</version> |
---|
118 | <configuration> |
---|
119 | <skipTests>true</skipTests> |
---|
120 | </configuration> |
---|
121 | </plugin> |
---|
122 | </plugins> |
---|
123 | </build> |
---|
124 | </project> |
---|