]> git.somenet.org - pub/jan/sbc.git/blob - pom.xml
early activemq producer/consumer implementation.
[pub/jan/sbc.git] / pom.xml
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>at.ac.tuwien.sbc</groupId>
5         <artifactId>vales-riegler</artifactId>
6         <version>0.0.1-SNAPSHOT</version>
7
8         <properties>
9                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
10         </properties>
11
12         <dependencies>
13                 <dependency>
14                         <groupId>org.slf4j</groupId>
15                         <artifactId>slf4j-api</artifactId>
16                         <version>1.6.6</version>
17                 </dependency>
18                 <dependency>
19                         <groupId>ch.qos.logback</groupId>
20                         <artifactId>logback-classic</artifactId>
21                         <version>1.0.7</version>
22                 </dependency>
23                 <dependency>
24                         <groupId>org.apache.activemq</groupId>
25                         <artifactId>activemq-all</artifactId>
26                         <version>5.8.0</version>
27                 </dependency>
28         </dependencies>
29
30         <build>
31                 <plugins>
32                         <plugin>
33                                 <groupId>org.codehaus.mojo</groupId>
34                                 <artifactId>exec-maven-plugin</artifactId>
35                                 <version>1.2.1</version>
36                         </plugin>
37                 </plugins>
38                 <pluginManagement>
39                         <plugins>
40                                 <plugin>
41                                         <artifactId>maven-compiler-plugin</artifactId>
42                                         <version>2.3.2</version>
43                                         <configuration>
44                                                 <source>1.7</source>
45                                                 <target>1.7</target>
46                                         </configuration>
47                                 </plugin>
48                                 <plugin>
49                                         <groupId>org.apache.activemq.tooling</groupId>
50                                         <artifactId>activemq-maven-plugin</artifactId>
51                                         <version>5.8.0</version>
52                                         <configuration>
53                                                 <configUri>broker:(tcp://localhost:61616)?useJmx=true&amp;persistent=false</configUri>
54                                         </configuration>
55                                 </plugin>
56                         </plugins>
57                 </pluginManagement>
58         </build>
59
60 </project>