]> git.somenet.org - pub/jan/sbc.git/blob - pom.xml
[XVSM] Add presentation
[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-xvsmp-jaxb</artifactId>
48             <version>2.2-SNAPSHOT</version>
49         </dependency>
50         <dependency>
51             <groupId>org.mozartspaces</groupId>
52             <artifactId>mozartspaces-capi3-berkeleydb</artifactId>
53             <version>2.2-SNAPSHOT</version>
54         </dependency>
55         <dependency>
56             <groupId>org.mozartspaces</groupId>
57             <artifactId>mozartspaces-notifications</artifactId>
58             <version>2.2-SNAPSHOT</version>
59         </dependency>
60
61     </dependencies>
62
63     <build>
64         <plugins>
65             <!-- <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId>
66                 <version>1.2.1</version> </plugin> -->
67         </plugins>
68         <pluginManagement>
69             <plugins>
70                 <plugin>
71                     <artifactId>maven-compiler-plugin</artifactId>
72                     <version>2.3.2</version>
73                     <configuration>
74                         <source>1.7</source>
75                         <target>1.7</target>
76                     </configuration>
77                 </plugin>
78                 <plugin>
79                     <groupId>org.apache.activemq.tooling</groupId>
80                     <artifactId>activemq-maven-plugin</artifactId>
81                     <version>5.8.0</version>
82                     <configuration>
83                         <configUri>broker:(tcp://localhost:61616)?useJmx=true&amp;persistent=false</configUri>
84                     </configuration>
85                 </plugin>
86             </plugins>
87         </pluginManagement>
88
89
90     </build>
91
92     <repositories>
93         <repository>
94             <id>mozartspaces</id>
95             <url>http://www.mozartspaces.org/maven-snapshots</url>
96         </repository>
97     </repositories>
98
99 </project>