]> git.somenet.org - pub/jan/sbc.git/blob - pom.xml
[XVSM] Some GroupAgent Container Refactoring. Full Driver<->DeliveryCustomer communic...
[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                         <exclusions>
28                                 <exclusion>
29                                         <groupId>ch.qos.logback</groupId>
30                                         <artifactId>logback-classic</artifactId>
31                                 </exclusion>
32                         </exclusions>
33                 </dependency>
34                 <dependency>
35                         <groupId>org.mozartspaces</groupId>
36                         <artifactId>mozartspaces-runtime</artifactId>
37                         <version>2.2-SNAPSHOT</version>
38                         <exclusions>
39                                 <exclusion>
40                                         <groupId>ch.qos.logback</groupId>
41                                         <artifactId>logback-classic</artifactId>
42                                 </exclusion>
43                         </exclusions>
44                 </dependency>
45                 <dependency>
46                         <groupId>org.mozartspaces</groupId>
47                         <artifactId>mozartspaces-notifications</artifactId>
48                         <version>2.2-SNAPSHOT</version>
49                 </dependency>
50
51         </dependencies>
52
53         <build>
54                 <plugins>
55                         <!-- <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> 
56                                 <version>1.2.1</version> </plugin> -->
57                 </plugins>
58                 <pluginManagement>
59                         <plugins>
60                                 <plugin>
61                                         <artifactId>maven-compiler-plugin</artifactId>
62                                         <version>2.3.2</version>
63                                         <configuration>
64                                                 <source>1.7</source>
65                                                 <target>1.7</target>
66                                         </configuration>
67                                 </plugin>
68                                 <plugin>
69                                         <groupId>org.apache.activemq.tooling</groupId>
70                                         <artifactId>activemq-maven-plugin</artifactId>
71                                         <version>5.8.0</version>
72                                         <configuration>
73                                                 <configUri>broker:(tcp://localhost:61616)?useJmx=true&amp;persistent=false</configUri>
74                                         </configuration>
75                                 </plugin>
76                         </plugins>
77                 </pluginManagement>
78
79
80         </build>
81
82         <repositories>
83                 <repository>
84                         <id>mozartspaces</id>
85                         <url>http://www.mozartspaces.org/maven-snapshots</url>
86                 </repository>
87         </repositories>
88
89 </project>