]> git.somenet.org - pub/jan/sbc.git/blob - pom.xml
GITOLITE.txt
[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         <repositories>
13                 <repository>
14                         <id>mozartspaces</id>
15                         <url>http://www.mozartspaces.org/maven-snapshots</url>
16                 </repository>
17         </repositories>
18
19         <dependencies>
20                 <dependency>
21                         <groupId>org.slf4j</groupId>
22                         <artifactId>slf4j-api</artifactId>
23                         <version>1.6.6</version>
24                 </dependency>
25                 <dependency>
26                         <groupId>ch.qos.logback</groupId>
27                         <artifactId>logback-classic</artifactId>
28                         <version>1.0.7</version>
29                 </dependency>
30                 <dependency>
31                         <groupId>org.apache.activemq</groupId>
32                         <artifactId>activemq-all</artifactId>
33                         <version>5.8.0</version>
34                         <exclusions>
35                                 <exclusion>
36                                         <groupId>ch.qos.logback</groupId>
37                                         <artifactId>logback-classic</artifactId>
38                                 </exclusion>
39                         </exclusions>
40                 </dependency>
41                 <dependency>
42                         <groupId>org.mozartspaces</groupId>
43                         <artifactId>mozartspaces-runtime</artifactId>
44                         <version>2.2-SNAPSHOT</version>
45                         <exclusions>
46                                 <exclusion>
47                                         <groupId>ch.qos.logback</groupId>
48                                         <artifactId>logback-classic</artifactId>
49                                 </exclusion>
50                         </exclusions>
51                 </dependency>
52                 <dependency>
53                         <groupId>org.mozartspaces</groupId>
54                         <artifactId>mozartspaces-xvsmp-jaxb</artifactId>
55                         <version>2.2-SNAPSHOT</version>
56                 </dependency>
57                 <dependency>
58                         <groupId>org.mozartspaces</groupId>
59                         <artifactId>mozartspaces-capi3-berkeleydb</artifactId>
60                         <version>2.2-SNAPSHOT</version>
61                 </dependency>
62                 <dependency>
63                         <groupId>org.mozartspaces</groupId>
64                         <artifactId>mozartspaces-notifications</artifactId>
65                         <version>2.2-SNAPSHOT</version>
66                 </dependency>
67
68         </dependencies>
69
70         <build>
71                 <pluginManagement>
72                         <plugins>
73                                 <plugin>
74                                         <artifactId>maven-compiler-plugin</artifactId>
75                                         <version>2.3.2</version>
76                                         <configuration>
77                                                 <source>1.7</source>
78                                                 <target>1.7</target>
79                                         </configuration>
80                                 </plugin>
81                                 <plugin>
82                                         <groupId>org.apache.activemq.tooling</groupId>
83                                         <artifactId>activemq-maven-plugin</artifactId>
84                                         <version>5.8.0</version>
85                                         <configuration>
86                                                 <configUri>broker:(tcp://localhost:61616)?useJmx=true&amp;persistent=false</configUri>
87                                         </configuration>
88                                 </plugin>
89                         </plugins>
90                 </pluginManagement>
91                 <!-- </plugins> -->
92                 <!-- </build> -->
93
94                 <!-- Report generation -->
95                 <!-- <reporting> -->
96                 <plugins>
97                         <plugin>
98                                 <groupId>org.apache.maven.plugins</groupId>
99                                 <artifactId>maven-javadoc-plugin</artifactId>
100                                 <version>2.9</version>
101                                 <configuration>
102                                         <show>private</show>
103                                 </configuration>
104                                 <executions>
105                                         <execution>
106                                                 <phase>verify</phase>
107                                                 <goals>
108                                                         <goal>javadoc</goal>
109                                                 </goals>
110                                         </execution>
111                                 </executions>
112                         </plugin>
113                         <plugin>
114                                 <groupId>org.apache.maven.plugins</groupId>
115                                 <artifactId>maven-jxr-plugin</artifactId>
116                                 <version>2.3</version>
117                                 <executions>
118                                         <execution>
119                                                 <phase>verify</phase>
120                                                 <goals>
121                                                         <goal>jxr</goal>
122                                                 </goals>
123                                         </execution>
124                                 </executions>
125                         </plugin>
126                         <plugin>
127                                 <groupId>org.codehaus.mojo</groupId>
128                                 <artifactId>cobertura-maven-plugin</artifactId>
129                                 <version>2.5.2</version>
130                                 <configuration>
131                                         <format>xml</format>
132                                 </configuration>
133                                 <executions>
134                                         <execution>
135                                                 <phase>verify</phase>
136                                                 <goals>
137                                                         <goal>cobertura</goal>
138                                                 </goals>
139                                         </execution>
140                                 </executions>
141                         </plugin>
142                         <plugin>
143                                 <groupId>org.apache.maven.plugins</groupId>
144                                 <artifactId>maven-checkstyle-plugin</artifactId>
145                                 <version>2.9.1</version>
146                                 <executions>
147                                         <execution>
148                                                 <phase>verify</phase>
149                                                 <goals>
150                                                         <goal>checkstyle</goal>
151                                                 </goals>
152                                                 <configuration>
153                                                         <configLocation>checkstyle.xml</configLocation>
154                                                 </configuration>
155                                         </execution>
156                                 </executions>
157                         </plugin>
158                         <plugin>
159                                 <groupId>org.codehaus.mojo</groupId>
160                                 <artifactId>javancss-maven-plugin</artifactId>
161                                 <version>2.0</version>
162                                 <executions>
163                                         <execution>
164                                                 <phase>verify</phase>
165                                                 <goals>
166                                                         <goal>report</goal>
167                                                 </goals>
168                                         </execution>
169                                 </executions>
170                         </plugin>
171                         <plugin>
172                                 <groupId>org.apache.maven.plugins</groupId>
173                                 <artifactId>maven-pmd-plugin</artifactId>
174                                 <version>2.7.1</version>
175                                 <configuration>
176                                         <targetJdk>1.6</targetJdk>
177                                 </configuration>
178                                 <executions>
179                                         <execution>
180                                                 <phase>verify</phase>
181                                                 <goals>
182                                                         <goal>pmd</goal>
183                                                         <goal>cpd</goal>
184                                                 </goals>
185                                         </execution>
186                                 </executions>
187                         </plugin>
188                         <plugin>
189                                 <groupId>org.codehaus.mojo</groupId>
190                                 <artifactId>findbugs-maven-plugin</artifactId>
191                                 <version>2.5.2</version>
192                                 <executions>
193                                         <execution>
194                                                 <phase>verify</phase>
195                                                 <goals>
196                                                         <goal>findbugs</goal>
197                                                 </goals>
198                                                 <configuration>
199                                                         <findbugsXmlOutput>true</findbugsXmlOutput>
200                                                         <findbugsXmlWithMessages>true</findbugsXmlWithMessages>
201                                                         <xmlOutput>true</xmlOutput>
202                                                 </configuration>
203                                         </execution>
204                                 </executions>
205                         </plugin>
206                         <plugin>
207                                 <groupId>org.apache.maven.plugins</groupId>
208                                 <artifactId>maven-project-info-reports-plugin</artifactId>
209                                 <version>2.7</version>
210                                 <executions>
211                                         <execution>
212                                                 <phase>site</phase>
213                                         </execution>
214                                 </executions>
215                         </plugin>
216                 </plugins>
217                 <!-- </reporting> -->
218         </build>
219 </project>