source: raptor-web/trunk/pom.xml @ 1401

Revision 1401, 27.5 KB checked in by philsmart, 10 months ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1<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">
2    <modelVersion>4.0.0</modelVersion>
3    <groupId>uk.ac.cardiff.raptor</groupId>
4    <artifactId>raptor-web</artifactId>
5    <name>RaptorWeb (Raptor Web Interface)</name>
6    <version>1.0.2-SNAPSHOT</version>
7    <packaging>war</packaging>
8    <url>http://iam.cf.ac.uk</url>
9
10    <licenses>
11        <license>
12            <name>Apache 2</name>
13            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
14            <distribution>repo</distribution>
15        </license>
16    </licenses>
17
18
19    <scm>
20        <developerConnection>scm:svn:http://iam.cf.ac.uk/repos/RAPTOR/raptor-web/trunk</developerConnection>
21        <url>http://iam.cf.ac.uk/repos/RAPTOR/raptor-web</url>
22    </scm>
23   
24    <distributionManagement>
25        <repository>
26            <uniqueVersion>false</uniqueVersion>
27            <id>raptor-release</id>
28            <url>http://iam.cf.ac.uk/nexus-webapp-1.6.0/content/repositories/raptor-release</url>
29        </repository>
30        <snapshotRepository>
31            <uniqueVersion>false</uniqueVersion>
32            <id>raptor-snapshot</id>
33            <url>http://iam.cf.ac.uk/nexus-webapp-1.6.0/content/repositories/raptor-snapshot</url>
34        </snapshotRepository>
35    </distributionManagement>
36   
37
38    <!-- Adding extra repositories for Richfaces and EL -->
39    <repositories>
40        <repository>
41            <releases>
42                <enabled>true</enabled>
43            </releases>
44            <snapshots>
45                <enabled>true</enabled>
46                <updatePolicy>always</updatePolicy>
47            </snapshots>
48            <id>snapshots.jboss.org</id>
49            <name>Snapshot Jboss Repository for Maven</name>
50            <url>http://snapshots.jboss.org/maven2/</url>
51            <layout>default</layout>
52        </repository>
53        <repository>
54            <releases>
55                <enabled>true</enabled>
56            </releases>
57            <snapshots>
58                <enabled>true</enabled>
59                <updatePolicy>always</updatePolicy>
60            </snapshots>
61            <id>repository.jboss.com</id>
62            <name>Jboss Repository for Maven</name>
63            <url>http://repository.jboss.com/maven2/</url>
64            <layout>default</layout>
65        </repository>
66
67        <repository>
68            <id>jboss-public-repository-group</id>
69            <name>JBoss Public Maven Repository Group</name>
70            <url>https://repository.jboss.org/nexus/content/groups/public-jboss/</url>
71            <layout>default</layout>
72            <releases>
73                <enabled>true</enabled>
74                <updatePolicy>never</updatePolicy>
75            </releases>
76            <snapshots>
77                <enabled>true</enabled>
78                <updatePolicy>never</updatePolicy>
79            </snapshots>
80        </repository>
81
82        <!-- Adding extra repositories for any other libs, which is hosted on Iam -->
83
84        <repository>
85            <releases>
86                <enabled>true</enabled>
87            </releases>
88            <snapshots>
89                <enabled>true</enabled>
90                <updatePolicy>always</updatePolicy>
91            </snapshots>
92            <id>raptor-extras-repo</id>
93            <name>Iam Local Maven Repo</name>
94            <url>http://iam.cf.ac.uk/nexus-webapp-1.6.0/content/repositories/raptor-extra</url>
95            <layout>default</layout>
96        </repository>
97        <repository>
98            <releases>
99                <enabled>true</enabled>
100            </releases>
101            <snapshots>
102                <enabled>true</enabled>
103                <updatePolicy>always</updatePolicy>
104            </snapshots>
105            <id>raptor-snapshot-repo</id>
106            <name>Iam Local Maven Repo Snapshots</name>
107            <url>http://iam.cf.ac.uk/nexus-webapp-1.6.0/content/repositories/raptor-snapshot</url>
108            <layout>default</layout>
109        </repository>
110        <repository>
111            <releases>
112                <enabled>true</enabled>
113            </releases>
114            <snapshots>
115                <enabled>true</enabled>
116                <updatePolicy>always</updatePolicy>
117            </snapshots>
118            <id>raptor-release-repo</id>
119            <name>Iam Local Maven Repo Releases</name>
120            <url>http://iam.cf.ac.uk/nexus-webapp-1.6.0/content/repositories/raptor-release</url>
121            <layout>default</layout>
122        </repository>
123    </repositories>
124    <!-- done -->
125
126    <properties>
127        <myfaces.version>1.2.5</myfaces.version>
128        <spring.version>3.0.2.RELEASE</spring.version>
129        <apache.cxf.version>2.2.8</apache.cxf.version>
130        <webflow.version>2.0.5.RELEASE</webflow.version>
131        <spring.security.version>3.0.5.RELEASE</spring.security.version>
132        <richfaces.version>3.3.3.Final</richfaces.version>
133        <jetty.version>6.1.25</jetty.version>
134    </properties>
135
136    <dependencies>
137        <!-- Raptor Specific -->
138        <dependency>
139            <groupId>uk.ac.cardiff.raptor</groupId>
140            <artifactId>raptor-client</artifactId>
141            <version>1.1.0</version>
142        </dependency>
143
144
145        <!-- RICHFACES -->
146        <dependency>
147            <groupId>org.richfaces.framework</groupId>
148            <artifactId>richfaces-impl</artifactId>
149            <version>3.3.3.Final</version>
150            <exclusions>
151                <exclusion>
152                    <artifactId>commons-logging</artifactId>
153                    <groupId>commons-logging</groupId>
154                </exclusion>
155            </exclusions>
156        </dependency>
157        <dependency>
158            <groupId>org.richfaces.ui</groupId>
159            <artifactId>richfaces-ui</artifactId>
160            <version>3.3.3.Final</version>
161            <exclusions>
162                <exclusion>
163                    <artifactId>commons-logging</artifactId>
164                    <groupId>commons-logging</groupId>
165                </exclusion>
166            </exclusions>
167        </dependency>
168
169        <!-- RICHFACES SKINS -->
170        <dependency>
171            <groupId>org.richfaces.samples</groupId>
172            <artifactId>laguna</artifactId>
173            <version>${richfaces.version}</version>
174            <exclusions>
175                <exclusion>
176                    <artifactId>jstl</artifactId>
177                    <groupId>javax.servlet</groupId>
178                </exclusion>
179            </exclusions>
180        </dependency>
181        <dependency>
182            <groupId>org.richfaces.samples</groupId>
183            <artifactId>glassX</artifactId>
184            <version>${richfaces.version}</version>
185            <exclusions>
186                <exclusion>
187                    <artifactId>jstl</artifactId>
188                    <groupId>javax.servlet</groupId>
189                </exclusion>
190            </exclusions>
191        </dependency>
192        <dependency>
193            <groupId>org.richfaces.samples</groupId>
194            <artifactId>darkX</artifactId>
195            <version>${richfaces.version}</version>
196            <exclusions>
197                <exclusion>
198                    <artifactId>jstl</artifactId>
199                    <groupId>javax.servlet</groupId>
200                </exclusion>
201            </exclusions>
202        </dependency>
203
204        <!-- Jstl -->
205        <dependency>
206            <groupId>jstl</groupId>
207            <artifactId>jstl</artifactId>
208            <version>1.2</version>
209            <scope>runtime</scope>
210        </dependency>
211        <dependency>
212            <groupId>javax.faces</groupId>
213            <artifactId>jsf-api</artifactId>
214            <version>1.2_02</version>
215        </dependency>
216        <dependency>
217            <groupId>javax.faces</groupId>
218            <artifactId>jsf-impl</artifactId>
219            <version>1.2-b19</version>
220        </dependency>
221
222
223        <!-- Facelets -->
224        <dependency>
225            <groupId>com.sun.facelets</groupId>
226            <artifactId>jsf-facelets</artifactId>
227            <version>1.1.14</version>
228        </dependency>
229        <!-- Expression Language -->
230        <dependency>
231            <groupId>commons-el</groupId>
232            <artifactId>commons-el</artifactId>
233            <version>1.0</version>
234            <scope>compile</scope>
235            <exclusions>
236                <exclusion>
237                    <artifactId>commons-logging</artifactId>
238                    <groupId>commons-logging</groupId>
239                </exclusion>
240            </exclusions>
241        </dependency>
242        <dependency>
243            <groupId>org.jboss.seam</groupId>
244            <artifactId>jboss-el</artifactId>
245            <version>2.0.0.GA</version>
246            <scope>compile</scope>
247            <exclusions>
248                <exclusion>
249                    <groupId>javax.el</groupId>
250                    <artifactId>el-api</artifactId>
251                </exclusion>
252            </exclusions>
253        </dependency>
254
255        <dependency>
256            <groupId>org.springframework</groupId>
257            <artifactId>spring-context-support</artifactId>
258            <version>${spring.version}</version>
259            <exclusions>
260                <exclusion>
261                    <artifactId>commons-logging</artifactId>
262                    <groupId>commons-logging</groupId>
263                </exclusion>
264            </exclusions>
265        </dependency>
266
267        <dependency>
268            <groupId>org.springframework</groupId>
269            <artifactId>spring-webmvc</artifactId>
270            <version>${spring.version}</version>
271            <exclusions>
272                <exclusion>
273                    <groupId>org.springframework</groupId>
274                    <artifactId>spring-context-support</artifactId>
275                </exclusion>
276                <exclusion>
277                    <groupId>org.springframework</groupId>
278                    <artifactId>spring-core</artifactId>
279                </exclusion>
280                <exclusion>
281                    <groupId>org.springframework</groupId>
282                    <artifactId>spring-aop</artifactId>
283                </exclusion>
284                <exclusion>
285                    <groupId>org.springframework</groupId>
286                    <artifactId>spring-dao</artifactId>
287                </exclusion>
288                <exclusion>
289                    <groupId>org.springframework</groupId>
290                    <artifactId>spring-jdbc</artifactId>
291                </exclusion>
292                <exclusion>
293                    <groupId>org.springframework</groupId>
294                    <artifactId>spring-web</artifactId>
295                </exclusion>
296                <exclusion>
297                    <groupId>org.springframework</groupId>
298                    <artifactId>spring-context</artifactId>
299                </exclusion>
300                <exclusion>
301                    <groupId>org.springframework</groupId>
302                    <artifactId>spring-support</artifactId>
303                </exclusion>
304                <exclusion>
305                    <groupId>org.springframework</groupId>
306                    <artifactId>spring-beans</artifactId>
307                </exclusion>
308            </exclusions>
309        </dependency>
310
311        <!-- spring webflow -->
312        <dependency>
313            <groupId>org.springframework.webflow</groupId>
314            <artifactId>org.springframework.binding</artifactId>
315            <version>${webflow.version}</version>
316            <exclusions>
317                <exclusion>
318                    <groupId>org.springframework</groupId>
319                    <artifactId>spring-core</artifactId>
320                </exclusion>
321                <exclusion>
322                    <groupId>org.springframework</groupId>
323                    <artifactId>spring-aop</artifactId>
324                </exclusion>
325                <exclusion>
326                    <groupId>org.springframework</groupId>
327                    <artifactId>spring-dao</artifactId>
328                </exclusion>
329                <exclusion>
330                    <groupId>org.springframework</groupId>
331                    <artifactId>spring-jdbc</artifactId>
332                </exclusion>
333                <exclusion>
334                    <groupId>org.springframework</groupId>
335                    <artifactId>spring-web</artifactId>
336                </exclusion>
337                <exclusion>
338                    <groupId>org.springframework</groupId>
339                    <artifactId>spring-context</artifactId>
340                </exclusion>
341                <exclusion>
342                    <groupId>org.springframework</groupId>
343                    <artifactId>spring-support</artifactId>
344                </exclusion>
345                <exclusion>
346                    <groupId>org.springframework</groupId>
347                    <artifactId>spring-beans</artifactId>
348                </exclusion>
349                <exclusion>
350                    <artifactId>commons-logging</artifactId>
351                    <groupId>commons-logging</groupId>
352                </exclusion>
353            </exclusions>
354        </dependency>
355        <dependency>
356            <groupId>org.springframework.webflow</groupId>
357            <artifactId>org.springframework.js</artifactId>
358            <version>${webflow.version}</version>
359            <exclusions>
360                <exclusion>
361                    <groupId>org.springframework</groupId>
362                    <artifactId>spring-core</artifactId>
363                </exclusion>
364                <exclusion>
365                    <groupId>org.springframework</groupId>
366                    <artifactId>spring-aop</artifactId>
367                </exclusion>
368                <exclusion>
369                    <groupId>org.springframework</groupId>
370                    <artifactId>spring-dao</artifactId>
371                </exclusion>
372                <exclusion>
373                    <groupId>org.springframework</groupId>
374                    <artifactId>spring-jdbc</artifactId>
375                </exclusion>
376                <exclusion>
377                    <groupId>org.springframework</groupId>
378                    <artifactId>spring-web</artifactId>
379                </exclusion>
380                <exclusion>
381                    <groupId>org.springframework</groupId>
382                    <artifactId>spring-context</artifactId>
383                </exclusion>
384                <exclusion>
385                    <groupId>org.springframework</groupId>
386                    <artifactId>spring-support</artifactId>
387                </exclusion>
388                <exclusion>
389                    <groupId>org.springframework</groupId>
390                    <artifactId>spring-beans</artifactId>
391                </exclusion>
392                <exclusion>
393                    <artifactId>commons-logging</artifactId>
394                    <groupId>commons-logging</groupId>
395                </exclusion>
396            </exclusions>
397        </dependency>
398        <dependency>
399            <groupId>org.springframework.webflow</groupId>
400            <artifactId>org.springframework.webflow</artifactId>
401            <version>${webflow.version}</version>
402            <exclusions>
403                <exclusion>
404                    <groupId>org.springframework</groupId>
405                    <artifactId>spring-core</artifactId>
406                </exclusion>
407                <exclusion>
408                    <groupId>org.springframework</groupId>
409                    <artifactId>spring-aop</artifactId>
410                </exclusion>
411                <exclusion>
412                    <groupId>org.springframework</groupId>
413                    <artifactId>spring-dao</artifactId>
414                </exclusion>
415                <exclusion>
416                    <groupId>org.springframework</groupId>
417                    <artifactId>spring-jdbc</artifactId>
418                </exclusion>
419                <exclusion>
420                    <groupId>org.springframework</groupId>
421                    <artifactId>spring-web</artifactId>
422                </exclusion>
423                <exclusion>
424                    <groupId>org.springframework</groupId>
425                    <artifactId>spring-context</artifactId>
426                </exclusion>
427                <exclusion>
428                    <groupId>org.springframework</groupId>
429                    <artifactId>spring-support</artifactId>
430                </exclusion>
431                <exclusion>
432                    <groupId>org.springframework</groupId>
433                    <artifactId>spring-beans</artifactId>
434                </exclusion>
435                <exclusion>
436                    <artifactId>commons-logging</artifactId>
437                    <groupId>commons-logging</groupId>
438                </exclusion>
439            </exclusions>
440        </dependency>
441        <dependency>
442            <groupId>org.springframework.webflow</groupId>
443            <artifactId>org.springframework.faces</artifactId>
444            <version>${webflow.version}</version>
445            <exclusions>
446                <exclusion>
447                    <groupId>org.springframework</groupId>
448                    <artifactId>spring-core</artifactId>
449                </exclusion>
450                <exclusion>
451                    <groupId>org.springframework</groupId>
452                    <artifactId>spring-aop</artifactId>
453                </exclusion>
454                <exclusion>
455                    <groupId>org.springframework</groupId>
456                    <artifactId>spring-dao</artifactId>
457                </exclusion>
458                <exclusion>
459                    <groupId>org.springframework</groupId>
460                    <artifactId>spring-jdbc</artifactId>
461                </exclusion>
462                <exclusion>
463                    <groupId>org.springframework</groupId>
464                    <artifactId>spring-web</artifactId>
465                </exclusion>
466                <exclusion>
467                    <groupId>org.springframework</groupId>
468                    <artifactId>spring-context</artifactId>
469                </exclusion>
470                <exclusion>
471                    <groupId>org.springframework</groupId>
472                    <artifactId>spring-support</artifactId>
473                </exclusion>
474                <exclusion>
475                    <groupId>org.springframework</groupId>
476                    <artifactId>spring-beans</artifactId>
477                </exclusion>
478                <exclusion>
479                    <artifactId>commons-logging</artifactId>
480                    <groupId>commons-logging</groupId>
481                </exclusion>
482            </exclusions>
483        </dependency>
484
485        <dependency>
486            <groupId>jexcelapi</groupId>
487            <artifactId>jxl</artifactId>
488            <version>2.6</version>
489        </dependency>
490
491
492
493
494        <dependency>
495            <groupId>org.apache.cxf</groupId>
496            <artifactId>cxf-rt-transports-http</artifactId>
497            <version>${apache.cxf.version}</version>
498            <exclusions>
499                <exclusion>
500                    <artifactId>spring-web</artifactId>
501                    <groupId>org.springframework</groupId>
502                </exclusion>
503            </exclusions>
504        </dependency>
505
506        <dependency>
507            <groupId>org.apache.cxf</groupId>
508            <artifactId>cxf-rt-databinding-aegis</artifactId>
509            <version>${apache.cxf.version}</version>
510        </dependency>
511
512        <dependency>
513            <groupId>org.apache.cxf</groupId>
514            <artifactId>cxf-rt-frontend-jaxws</artifactId>
515            <version>${apache.cxf.version}</version>
516            <exclusions>
517                <exclusion>
518                    <groupId>asm</groupId>
519                    <artifactId>asm</artifactId>
520                </exclusion>
521            </exclusions>
522        </dependency>
523
524        <dependency>
525            <groupId>org.apache.cxf</groupId>
526            <artifactId>cxf-bundle-jaxrs</artifactId>
527            <version>${apache.cxf.version}</version>
528            <exclusions>
529                <exclusion>
530                    <artifactId>spring-beans</artifactId>
531                    <groupId>org.springframework</groupId>
532                </exclusion>
533                <exclusion>
534                    <artifactId>spring-core</artifactId>
535                    <groupId>org.springframework</groupId>
536                </exclusion>
537                <exclusion>
538                    <artifactId>spring-web</artifactId>
539                    <groupId>org.springframework</groupId>
540                </exclusion>
541                <exclusion>
542                    <artifactId>spring-context</artifactId>
543                    <groupId>org.springframework</groupId>
544                </exclusion>
545                <exclusion>
546                    <artifactId>xalan</artifactId>
547                    <groupId>xalan</groupId>
548                </exclusion>
549                <exclusion>
550                    <artifactId>xercesImpl</artifactId>
551                    <groupId>xerces</groupId>
552                </exclusion>
553                <exclusion>
554                    <groupId>org.slf4j</groupId>
555                    <artifactId>slf4j-api</artifactId>
556                </exclusion>
557                <exclusion>
558                    <artifactId>jetty</artifactId>
559                    <groupId>org.mortbay.jetty</groupId>
560                </exclusion>
561                <exclusion>
562                    <artifactId>jetty-util</artifactId>
563                    <groupId>org.mortbay.jetty</groupId>
564                </exclusion>
565                <exclusion>
566                    <artifactId>commons-logging</artifactId>
567                    <groupId>commons-logging</groupId>
568                </exclusion>
569            </exclusions>
570        </dependency>
571
572        <!-- Quartz -->
573
574        <dependency>
575            <groupId>org.quartz-scheduler</groupId>
576            <artifactId>quartz</artifactId>
577            <version>1.8.0</version>
578            <exclusions>
579                <exclusion>
580                    <artifactId>slf4j-api</artifactId>
581                    <groupId>org.slf4j</groupId>
582                </exclusion>
583                <exclusion>
584                    <artifactId>slf4j-log4j12</artifactId>
585                    <groupId>org.slf4j</groupId>
586                </exclusion>
587            </exclusions>
588        </dependency>
589
590        <!-- spring security -->
591        <dependency>
592            <groupId>org.springframework.security</groupId>
593            <artifactId>spring-security-core</artifactId>
594            <version>${spring.security.version}</version>
595        </dependency>
596        <dependency>
597            <groupId>org.springframework.security</groupId>
598            <artifactId>spring-security-config</artifactId>
599            <version>${spring.security.version}</version>
600        </dependency>
601
602        <dependency>
603            <groupId>org.springframework.security</groupId>
604            <artifactId>spring-security-web</artifactId>
605            <version>${spring.security.version}</version>
606        </dependency>
607        <dependency>
608            <groupId>org.mod4j.org.apache.commons</groupId>
609            <artifactId>lang</artifactId>
610            <version>2.1.0</version>
611        </dependency>
612
613        <!-- Graphical libraries -->
614        <dependency>
615            <groupId>jfree</groupId>
616            <artifactId>jfreechart</artifactId>
617            <version>1.0.13</version>
618        </dependency>
619        <dependency>
620            <groupId>batik</groupId>
621            <artifactId>batik</artifactId>
622            <version>1.5</version>
623        </dependency>
624        <dependency>
625            <groupId>batik</groupId>
626            <artifactId>batik-svggen</artifactId>
627            <version>1.6-1</version>
628        </dependency>
629
630        <dependency>
631            <groupId>jasperreports</groupId>
632            <artifactId>jasperreports</artifactId>
633            <version>3.5.3</version>
634            <exclusions>
635                <exclusion>
636                    <artifactId>commons-logging</artifactId>
637                    <groupId>commons-logging</groupId>
638                </exclusion>
639            </exclusions>
640        </dependency>
641        <dependency>
642            <groupId>ar.com.fdvs</groupId>
643            <artifactId>DynamicJasper</artifactId>
644            <version>3.0.13</version>
645        </dependency>
646
647        <!-- LOGGER DEPENDENCIES -->
648        <dependency>
649            <groupId>org.slf4j</groupId>
650            <artifactId>log4j-over-slf4j</artifactId>
651            <version>1.6.1</version>
652        </dependency>
653        <dependency>
654            <groupId>org.slf4j</groupId>
655            <artifactId>jcl-over-slf4j</artifactId>
656            <version>1.6.1</version>
657        </dependency>
658        <dependency>
659            <groupId>org.slf4j</groupId>
660            <artifactId>jul-to-slf4j</artifactId>
661            <version>1.6.1</version>
662        </dependency>
663
664        <!-- END OF JETTY DEPENDENCIES -->
665
666
667        <dependency>
668            <groupId>ch.qos.logback</groupId>
669            <artifactId>logback-classic</artifactId>
670            <version>0.9.27</version>
671            <scope>compile</scope>
672        </dependency>
673    </dependencies>
674
675
676    <build>
677        <pluginManagement>
678            <plugins>
679                <plugin>
680                    <groupId>org.apache.maven.plugins</groupId>
681                    <artifactId>maven-compiler-plugin</artifactId>
682                    <configuration>
683                        <source>1.6</source>
684                        <target>1.6</target>
685                    </configuration>
686                </plugin>
687            </plugins>
688        </pluginManagement>
689        <plugins>
690            <plugin>
691                <groupId>org.mortbay.jetty</groupId>
692                <artifactId>maven-jetty-plugin</artifactId>
693                <configuration>
694                    <connectors>
695                        <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
696                            <port>8082</port>
697                            <maxIdleTime>60000</maxIdleTime>
698                        </connector>
699                    </connectors>
700                </configuration>
701            </plugin>
702            <plugin>
703                <artifactId>maven-release-plugin</artifactId>
704                <version>2.0</version>
705                <configuration>
706                    <tagBase>
707                        http://iam.cf.ac.uk/repos/RAPTOR/raptor-web/tags
708                    </tagBase>
709                    <providerImplementations>
710                        <svn>javasvn</svn>
711                    </providerImplementations>
712                </configuration>
713                <dependencies>
714                    <dependency>
715                        <groupId>com.google.code.maven-scm-provider-svnjava</groupId>
716                        <artifactId>maven-scm-provider-svnjava</artifactId>
717                        <version>1.10</version>
718                    </dependency>
719                </dependencies>
720            </plugin>
721            <plugin>
722                <groupId>com.google.code.maven-license-plugin</groupId>
723                <artifactId>maven-license-plugin</artifactId>
724                <version>1.4.0</version>
725                <configuration>
726                    <includes>
727                        <include>src/**</include>
728                        <include>**/test/**</include>
729                    </includes>
730                    <excludes>
731                        <exclude>target/**</exclude>
732                        <exclude>.clover/**</exclude>
733                    </excludes>
734                    <header>src/main/resources/license-apache</header>
735                    <properties>
736                        <year>2010</year>
737                        <email>smartp@cf.ac.uk</email>
738                        <name>Cardiff University, Wales</name>
739                    </properties>
740                </configuration>
741                <executions>
742                    <execution>
743                        <goals>
744                            <goal>check</goal>
745                        </goals>
746                    </execution>
747                </executions>
748            </plugin>
749        </plugins>
750    </build>
751
752
753
754</project>
Note: See TracBrowser for help on using the repository browser.