source: trunk/pom.xml @ 50

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

log4j added

File size: 3.1 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                <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                <plugins>
73                        <plugin>
74                                <artifactId>maven-compiler-plugin</artifactId>
75                                <version>3.0</version>
76                                <configuration>
77                                        <source>1.6</source>
78                                        <target>1.6</target>
79                                </configuration>
80                        </plugin>
81                        <plugin>
82                                <groupId>org.apache.maven.plugins</groupId>
83                                <artifactId>maven-assembly-plugin</artifactId>
84                                <executions>
85                                        <execution>
86                                                <phase>package</phase>
87                                                <goals>
88                                                        <goal>attached</goal>
89                                                </goals>
90                                        </execution>
91                                </executions>
92                                <configuration>
93                                        <descriptorRefs>
94                                                <descriptorRef>jar-with-dependencies</descriptorRef>
95                                        </descriptorRefs>
96                                        <archive>
97                                                <manifest>
98                                                        <addClasspath>true</addClasspath>
99                                                        <classpathPrefix>lib/</classpathPrefix>
100                                                </manifest>
101                                        </archive>
102                                </configuration>
103                        </plugin>
104                        <plugin>
105                                <groupId>org.apache.maven.plugins</groupId>
106                                <artifactId>maven-surefire-plugin</artifactId>
107                                <version>2.14.1</version>
108                                <configuration>
109                                        <skipTests>true</skipTests>
110                                </configuration>
111                        </plugin>
112                </plugins>
113        </build>
114</project>
Note: See TracBrowser for help on using the repository browser.