First version with monitoring.
[upnpmonitor] / pom.xml
1 <?xml version="1.0"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3         <modelVersion>4.0.0</modelVersion>
4         <groupId>org.wamblee.upnpmonitor</groupId>
5         <artifactId>root</artifactId>
6         <packaging>pom</packaging>
7         <version>0.1-SNAPSHOT</version>
8         <name>/</name>
9         <description>wamblee.org upnp monitor</description>
10         <url>http://wamblee.org</url>
11         <licenses>
12                 <license>
13                         <name>The Apache Software License, Version 2.0</name>
14                         <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
15                         <distribution>repo</distribution>
16                 </license>
17         </licenses>
18         <scm>
19                 <url>http://wamblee.org/gitweb/upnpmonitor</url>
20                 <connection>scm:git:https://wamblee.org/git/public/upnpmonitor</connection>
21                 <developerConnection>scm:git:https://wamblee.org/git/public/upnpmonitor</developerConnection>
22         </scm>
23         <developers>
24                 <developer>
25                         <email>erik@wamblee.org</email>
26                         <name>Erik Brakkee</name>
27                         <url>http://brakkee.org</url>
28                 </developer>
29         </developers>
30
31         <modules>
32                 <module>monitor</module>
33                 <module>wamblee-upnpmonitor</module>
34                 <module>site</module>
35         </modules>
36         
37         <dependencies>
38                 <dependency>
39                         <groupId>junit</groupId>
40                         <artifactId>junit</artifactId>
41                         <scope>test</scope>
42                 </dependency>
43
44                 <dependency>
45                         <groupId>org.mockito</groupId>
46                         <artifactId>mockito-all</artifactId>
47                         <version>1.8.5</version>
48                         <scope>test</scope>
49                 </dependency>
50
51         </dependencies>
52
53         <dependencyManagement>
54                 <dependencies>
55                     <dependency>
56                 <groupId>org.wamblee</groupId>
57                 <artifactId>wamblee-support-general</artifactId>
58                 <version>0.7</version>
59             </dependency>
60                     <dependency>
61                 <groupId>org.teleal.cling</groupId>
62                 <artifactId>cling-core</artifactId>
63                 <version>1.0.5</version>
64             </dependency>
65                         <dependency>
66                                 <groupId>javax.faces</groupId>
67                                 <artifactId>jsf-api</artifactId>
68                                 <version>1.2_02</version>
69                                 <scope>provided</scope>
70                         </dependency>
71                         <dependency>
72                                 <groupId>org.apache.wicket</groupId>
73                                 <artifactId>wicket</artifactId>
74                                 <version>1.4.9</version>
75                         </dependency>
76
77                         <dependency>
78                                 <groupId>org.jboss.weld</groupId>
79                                 <artifactId>weld-se</artifactId>
80                                 <version>1.0.1-Final</version>
81                         </dependency>
82
83                         <dependency>
84                                 <groupId>oro</groupId>
85                                 <artifactId>oro</artifactId>
86                                 <version>2.0.6</version>
87                         </dependency>
88
89
90                         <dependency>
91                                 <groupId>javax.transaction</groupId>
92                                 <artifactId>transaction-api</artifactId>
93                                 <version>1.1</version>
94                                 <scope>provided</scope>
95                         </dependency>
96
97                         <dependency>
98                                 <groupId>junit</groupId>
99                                 <artifactId>junit</artifactId>
100                                 <version>4.4</version>
101                         </dependency>
102                         <dependency>
103                                 <groupId>org.dbunit</groupId>
104                                 <artifactId>dbunit</artifactId>
105                                 <version>2.4.7</version>
106                         </dependency>
107                         <dependency>
108                                 <groupId>org.slf4j</groupId>
109                                 <artifactId>slf4j-api</artifactId>
110                                 <version>1.5.11</version>
111                         </dependency>
112                         <dependency>
113                                 <groupId>org.slf4j</groupId>
114                                 <artifactId>slf4j-jdk14</artifactId>
115                                 <version>1.5.11</version>
116                         </dependency>
117
118                         <dependency>
119                                 <groupId>javax.persistence</groupId>
120                                 <artifactId>persistence-api</artifactId>
121                                 <version>1.0</version>
122                                 <scope>provided</scope>
123                         </dependency>
124                         <dependency>
125                                 <groupId>javax.activation</groupId>
126                                 <artifactId>activation</artifactId>
127                                 <version>1.1</version>
128                         </dependency>
129                         <dependency>
130                                 <groupId>javax.mail</groupId>
131                                 <artifactId>mail</artifactId>
132                                 <version>1.4.1</version>
133                         </dependency>
134                         <dependency>
135                                 <groupId>javax.servlet</groupId>
136                                 <artifactId>servlet-api</artifactId>
137                                 <version>2.3</version>
138                                 <type>jar</type>
139                                 <scope>provided</scope>
140                         </dependency>
141                         <dependency>
142                                 <groupId>mysql</groupId>
143                                 <artifactId>mysql-connector-java</artifactId>
144                                 <version>5.1.12</version>
145                         </dependency>
146                         <dependency>
147                                 <groupId>org.apache.derby</groupId>
148                                 <artifactId>derby</artifactId>
149                                 <version>10.5.3.0_1</version>
150                         </dependency>
151                         <dependency>
152                                 <groupId>org.apache.derby</groupId>
153                                 <artifactId>derbyclient</artifactId>
154                                 <version>10.5.3.0_1</version>
155                         </dependency>
156                         <dependency>
157                                 <groupId>org.apache.derby</groupId>
158                                 <artifactId>derbynet</artifactId>
159                                 <version>10.5.3.0_1</version>
160                         </dependency>
161                         <dependency>
162                                 <groupId>quartz</groupId>
163                                 <artifactId>quartz</artifactId>
164                                 <version>1.5.1</version>
165                         </dependency>
166                         <dependency>
167                                 <groupId>jtidy</groupId>
168                                 <artifactId>jtidy</artifactId>
169                                 <version>4aug2000r7-dev</version>
170                         </dependency>
171
172
173                         <dependency>
174                                 <groupId>commons-logging</groupId>
175                                 <artifactId>commons-logging</artifactId>
176                                 <version>1.0.2</version>
177                         </dependency>
178                         <dependency>
179                                 <groupId>commons-httpclient</groupId>
180                                 <artifactId>commons-httpclient</artifactId>
181                                 <version>3.0</version>
182                         </dependency>
183                         <dependency>
184                                 <groupId>commons-beanutils</groupId>
185                                 <artifactId>commons-beanutils</artifactId>
186                                 <version>1.7.0</version>
187                         </dependency>
188                         <dependency>
189                                 <groupId>org.springframework</groupId>
190                                 <artifactId>spring-beans</artifactId>
191                                 <version>${spring.version}</version>
192                         </dependency>
193                         <dependency>
194                                 <groupId>org.springframework</groupId>
195                                 <artifactId>spring-web</artifactId>
196                                 <version>${spring.version}</version>
197                         </dependency>
198                         <dependency>
199                                 <groupId>org.springframework</groupId>
200                                 <artifactId>spring-jms</artifactId>
201                                 <version>${spring.version}</version>
202                         </dependency>
203                         <dependency>
204                                 <groupId>org.springframework</groupId>
205                                 <artifactId>spring-context</artifactId>
206                                 <version>${spring.version}</version>
207                         </dependency>
208                         <dependency>
209                                 <groupId>org.springframework</groupId>
210                                 <artifactId>spring-hibernate3</artifactId>
211                                 <version>${spring.version}</version>
212                         </dependency>
213                         <dependency>
214                                 <groupId>org.springframework</groupId>
215                                 <artifactId>spring-jpa</artifactId>
216                                 <version>${spring.version}</version>
217                         </dependency>
218                         <dependency>
219                                 <groupId>org.springframework</groupId>
220                                 <artifactId>spring-aop</artifactId>
221                                 <version>${spring.version}</version>
222                         </dependency>
223
224                         <dependency>
225                                 <groupId>net.sf.ehcache</groupId>
226                                 <artifactId>ehcache-core</artifactId>
227                                 <version>2.2.0</version>
228                         </dependency>
229
230                         <dependency>
231                                 <groupId>commons-email</groupId>
232                                 <artifactId>commons-email</artifactId>
233                                 <version>1.0</version>
234                         </dependency>
235                         <dependency>
236                                 <groupId>jstl</groupId>
237                                 <artifactId>jstl</artifactId>
238                                 <version>1.1.2</version>
239                         </dependency>
240                         <dependency>
241                                 <groupId>taglibs</groupId>
242                                 <artifactId>standard</artifactId>
243                                 <version>1.1.2</version>
244                         </dependency>
245                         <dependency>
246                                 <groupId>jfree</groupId>
247                                 <artifactId>jfreechart</artifactId>
248                                 <version>1.0.1</version>
249                         </dependency>
250                         <dependency>
251                                 <groupId>jfree</groupId>
252                                 <artifactId>jcommon</artifactId>
253                                 <version>1.0.2</version>
254                         </dependency>
255
256                         <dependency>
257                                 <groupId>javax</groupId>
258                                 <artifactId>javaee-api</artifactId>
259                                 <version>6.0</version>
260                                 <scope>provided</scope>
261                         </dependency>
262
263                         <dependency>
264                                 <groupId>commons-codec</groupId>
265                                 <artifactId>commons-codec</artifactId>
266                                 <version>1.3</version>
267                         </dependency>
268
269                         <dependency>
270                                 <groupId>commons-dbcp</groupId>
271                                 <artifactId>commons-dbcp</artifactId>
272                                 <version>1.4</version>
273                         </dependency>
274                         <!-- dependency>
275                                 <groupId>toplink.essentials</groupId>
276                                 <artifactId>toplink-essentials</artifactId>
277                                 <version>2.1-60f</version>
278                         </dependency -->
279                         
280
281                 </dependencies>
282         </dependencyManagement>
283
284         <build>
285                 <plugins>
286                         <plugin>
287                                 <groupId>org.apache.maven.plugins</groupId>
288                                 <artifactId>maven-release-plugin</artifactId>
289                                 <version>2.2.1</version>
290                                 <configuration>
291                                         <autoVersionSubmodules>true</autoVersionSubmodules>
292                                         <localCheckout>true</localCheckout>
293                                         <pushChanges>false</pushChanges>
294                                         <goals>javadoc:jar deploy</goals>
295                                 </configuration>
296                         </plugin>
297                         <plugin>
298                                 <groupId>org.apache.maven.plugins</groupId>
299                                 <artifactId>maven-checkstyle-plugin</artifactId>
300                                 <version>2.5</version>
301                                 <dependencies>
302                                         <dependency>
303                                                 <groupId>org.wamblee</groupId>
304                                                 <artifactId>wamblee-code-style</artifactId>
305                                                 <version>1.1</version>
306                                         </dependency>
307                                 </dependencies>
308                         </plugin>
309
310                         <plugin>
311                                 <groupId>org.codehaus.mojo</groupId>
312                                 <artifactId>jalopy-maven-plugin</artifactId>
313                                 <version>1.0-alpha-1</version>
314                                 <configuration>
315                                         <fileFormat>UNIX</fileFormat>
316                                         <convention>org.wamblee.jalopy.xml</convention>
317                                 </configuration>
318                                 <dependencies>
319                                         <dependency>
320                                                 <groupId>org.wamblee</groupId>
321                                                 <artifactId>wamblee-code-style</artifactId>
322                                                 <version>1.1</version>
323                                         </dependency>
324                                 </dependencies>
325                         </plugin>
326                         <plugin>
327                                 <groupId>org.apache.maven.plugins</groupId>
328                                 <artifactId>maven-compiler-plugin</artifactId>
329                                 <version>2.3.2</version>
330                                 <configuration>
331                                         <source>1.6</source>
332                                         <target>1.6</target>
333                                 </configuration>
334                         </plugin>
335
336                         <plugin>
337                                 <groupId>org.apache.maven.plugins</groupId>
338                                 <artifactId>maven-surefire-plugin</artifactId>
339                                 <version>2.5</version>
340                                 <configuration>
341                                         <!--
342                                                 enable forkMode to check if some tests do not setup their test
343                                                 fixture correctly
344                                         -->
345                                         <!-- forkMode>always</forkMode -->
346                                         <includes>
347                                                 <include>**/*Test.java</include>
348                                         </includes>
349                                         <redirectTestOutputToFile>true</redirectTestOutputToFile>
350                                 </configuration>
351                         </plugin>
352
353                         <!--
354                                 Make sure other projects can use (or the test support and test
355                                 classes from the projects it uses. To use a dependence on a test
356                                 library of a project, an additinoal dependence must be added with
357                                 <type>test-jar</type>
358                         -->
359
360                         <plugin>
361                                 <groupId>org.apache.maven.plugins</groupId>
362                                 <artifactId>maven-jar-plugin</artifactId>
363                                 <version>2.3.1</version>
364                                 <executions>
365                                         <execution>
366                                                 <goals>
367                                                         <goal>test-jar</goal>
368                                                 </goals>
369                                         </execution>
370                                 </executions>
371                         </plugin>
372
373                         <plugin>
374                                 <groupId>org.codehaus.mojo</groupId>
375                                 <artifactId>cobertura-maven-plugin</artifactId>
376                                 <version>2.3</version>
377                                 <executions>
378                                         <execution>
379                                                 <goals>
380                                                         <goal>clean</goal>
381                                                 </goals>
382                                         </execution>
383                                 </executions>
384                                 <configuration>
385                                         <instrumentation>
386                                                 <excludes>
387                                                 </excludes>
388                                         </instrumentation>
389                                 </configuration>
390                         </plugin>
391                         <plugin>
392                                 <artifactId>maven-site-plugin</artifactId>
393                                 <configuration>
394                                         <locales>en</locales>
395                                 </configuration>
396                         </plugin>
397
398
399                 </plugins>
400
401                 <pluginManagement>
402                         <plugins>
403                                 <plugin>
404                                         <artifactId>maven-site-plugin</artifactId>
405                                         <version>3.0-beta-3</version>
406                                         <configuration>
407                                                 <reportPlugins>
408                                                         <plugin>
409                                                                 <groupId>org.apache.maven.plugins</groupId>
410                                                                 <artifactId>maven-project-info-reports-plugin</artifactId>
411                                                                 <version>2.3.1</version>
412                                                                 <configuration>
413                                                                         <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
414                                                                         <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
415                                                                 </configuration>
416                                                         </plugin>
417                                                         <plugin>
418                                                                 <groupId>org.apache.maven.plugins</groupId>
419                                                                 <artifactId>maven-javadoc-plugin</artifactId>
420                                                                 <version>2.7</version>
421                                                         </plugin>
422                                                         <plugin>
423                                                                 <groupId>org.codehaus.mojo</groupId>
424                                                                 <artifactId>cobertura-maven-plugin</artifactId>
425                                                                 <version>2.3</version>
426                                                                 <configuration>
427                                                                         <formats>
428                                                                                 <format>xml</format>
429                                                                                 <format>html</format>
430                                                                         </formats>
431                                                                 </configuration>
432                                                         </plugin>               
433                                                 </reportPlugins>
434                                         </configuration>
435                                 </plugin>
436                         </plugins>
437                 </pluginManagement>
438
439         </build>
440
441
442         <reporting>
443                 <plugins>
444                         <plugin>
445                                 <groupId>org.codehaus.mojo</groupId>
446                                 <artifactId>findbugs-maven-plugin</artifactId>
447                                 <version>2.3.1</version>
448                                 <configuration>
449                                         <xmlOutput>true</xmlOutput>
450                                         <!-- Optional derectory to put findbugs xdoc xml report -->
451                                         <xmlOutputDirectory>target/site</xmlOutputDirectory>
452                                         <findbugsXmlOutput>true</findbugsXmlOutput>
453                                         <!-- Optional directory to put findbugs xml report -->
454                                         <findbugsXmlOutputDirectory>target/site</findbugsXmlOutputDirectory>
455                                 </configuration>
456
457                         </plugin>
458
459                         <plugin>
460                                 <groupId>org.codehaus.mojo</groupId>
461                                 <artifactId>changes-maven-plugin</artifactId>
462                                 <version>2.0-beta-1</version>
463                                 <reportSets>
464                                         <reportSet>
465                                                 <reports>
466                                                         <report>changes-report</report>
467                                                 </reports>
468                                         </reportSet>
469                                 </reportSets>
470                         </plugin>
471                         <plugin>
472                                 <groupId>org.apache.maven.plugins</groupId>
473                                 <artifactId>maven-javadoc-plugin</artifactId>
474                                 <version>2.6.1</version>
475                         </plugin>
476                         <plugin>
477                                 <groupId>org.codehaus.mojo</groupId>
478                                 <artifactId>surefire-report-maven-plugin</artifactId>
479                                 <version>2.0-beta-1</version>
480                         </plugin>
481                         <!-- checkstyle -->
482                         <plugin>
483                                 <groupId>org.apache.maven.plugins</groupId>
484                                 <artifactId>maven-checkstyle-plugin</artifactId>
485                                 <version>2.5</version>
486                                 <configuration>
487                                         <configLocation>org.wamblee.checkstyle.xml</configLocation>
488                                 </configuration>
489                         </plugin>
490
491                 </plugins>
492         </reporting>
493
494         <profiles>
495                 <profile>
496                         <id>release</id>
497                         <activation>
498                                 <property>
499                                         <name>performRelease</name>
500                                         <value>true</value>
501                                 </property>
502                         </activation>
503                         <build>
504                                 <plugins>
505                                         <plugin>
506                                                 <groupId>org.apache.maven.plugins</groupId>
507                                                 <artifactId>maven-gpg-plugin</artifactId>
508                                                 <executions>
509                                                         <execution>
510                                                                 <id>sign-artifacts</id>
511                                                                 <phase>verify</phase>
512                                                                 <goals>
513                                                                         <goal>sign</goal>
514                                                                 </goals>
515                                                         </execution>
516                                                 </executions>
517                                         </plugin>
518                                 </plugins>
519                         </build>
520                         <distributionManagement>
521                                 <repository>
522                                         <id>sonatype-nexus-staging</id>
523                                         <name>Nexus Release Repository</name>
524                                         <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
525                                 </repository>
526                         </distributionManagement>
527
528                 </profile>
529                 <profile>
530                         <id>all</id>
531                         <activation>
532                                 <property>
533                                         <name>!performRelease</name>
534                                 </property>
535                         </activation>
536                         <distributionManagement>
537                                 <repository>
538                                         <id>localdir</id>
539                                         <name>Local directory</name>
540                                         <url>file:${user.home}/java/workspace/deploy</url>
541                                 </repository>
542                         </distributionManagement>
543                 </profile>
544         </profiles>
545
546         <distributionManagement>
547             <repository>
548             <id>sparrow</id>
549             <name>wamblee.org maven repository</name>
550             <url>http://wamblee.org/nexus/content/repositories/rpms/</url>
551         </repository>
552
553                 <site>
554                         <id>test-enterprise-site</id>
555                         <url>file:${distrib}/main</url>
556                 </site>
557         </distributionManagement>
558         
559         <repositories>
560         <repository>
561             <id>teleal-repo</id>
562             <url>http://teleal.org/m2</url>
563             <snapshots>
564                 <enabled>false</enabled>
565             </snapshots>
566         </repository>
567     </repositories>
568
569
570         <properties>
571                 <spring.version>2.0.8</spring.version>
572                 <jmock.version>2.4.0</jmock.version>
573         </properties>
574
575 </project>