source: trunk/pom.xml @ 44

Last change on this file since 44 was 44, checked in by stoda, 11 years ago

Objectmq converted to maven project

File size: 2.7 KB
Line 
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</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.21</version>
52                </dependency>
53        </dependencies>
54        <build>
55                <sourceDirectory>src</sourceDirectory>
56                <testSourceDirectory>test</testSourceDirectory>
57                <plugins>
58                        <plugin>
59                                <artifactId>maven-compiler-plugin</artifactId>
60                                <version>3.0</version>
61                                <configuration>
62                                        <source>1.6</source>
63                                        <target>1.6</target>
64                                </configuration>
65                        </plugin>
66                        <plugin>
67                                <groupId>org.apache.maven.plugins</groupId>
68                                <artifactId>maven-assembly-plugin</artifactId>
69                                <executions>
70                                        <execution>
71                                                <phase>package</phase>
72                                                <goals>
73                                                        <goal>attached</goal>
74                                                </goals>
75                                        </execution>
76                                </executions>
77                                <configuration>
78                                        <descriptorRefs>
79                                                <descriptorRef>jar-with-dependencies</descriptorRef>
80                                        </descriptorRefs>
81                                        <archive>
82                                                <manifest>
83                                                        <addClasspath>true</addClasspath>
84                                                        <classpathPrefix>lib/</classpathPrefix>
85                                                </manifest>
86                                        </archive>
87                                </configuration>
88                        </plugin>
89                        <plugin>
90                                <groupId>org.apache.maven.plugins</groupId>
91                                <artifactId>maven-surefire-plugin</artifactId>
92                                <version>2.14.1</version>
93                                <configuration>
94                                        <skipTests>true</skipTests>
95                                </configuration>
96                        </plugin>
97                </plugins>
98        </build>
99</project>
Note: See TracBrowser for help on using the repository browser.