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

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