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