source: trunk/pom.xml @ 47

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

Junit 4.11 maven dependency added

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