source: VirtualCollectionRegistry/trunk/VirtualCollectionRegistry/pom.xml @ 5558

Last change on this file since 5558 was 5558, checked in by Twan Goosen, 10 years ago

Added build-time compilation of SCSS, copied CLARIN SCSS and switched VCR style from CSS to SCSS
Refs #594

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/xml
File size: 27.7 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5    <modelVersion>4.0.0</modelVersion>
6    <groupId>eu.clarin.cmdi</groupId>
7    <artifactId>VirtualCollectionRegistry</artifactId>
8    <packaging>war</packaging>
9    <name>CLARIN Virtual Collection Registry</name>
10    <version>0.4.0-SNAPSHOT</version>
11
12    <organization>
13        <name>CLARIN</name>
14        <url>http://www.clarin.eu/</url>
15    </organization>
16   
17    <developers>
18        <developer>
19            <name>Oliver Schonefeld</name>
20            <organization>Institut fÃŒr Deutsche Sprache</organization>
21            <url>http://www.ids-mannheim.de/</url>
22        </developer>
23        <developer>
24            <name>Twan Goosen</name>
25            <organization>CLARIN</organization>
26            <url>http://www.clarin.eu/</url>
27        </developer>
28    </developers>
29   
30    <licenses>
31        <license>
32            <name>GNU General Public License Version 3 (GPLv3)</name>
33            <url>http://www.gnu.org/licenses/gpl-3.0.txt</url>
34          </license>
35    </licenses>
36
37    <properties>
38        <!-- project settings -->
39        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
40        <!-- plug-in settings -->
41        <maven.compiler.source>1.7</maven.compiler.source>
42        <maven.compiler.target>1.7</maven.compiler.target>
43        <!-- dependency versions -->
44        <slf4j.version>1.7.7</slf4j.version>
45        <hibernate.version>3.6.10.Final</hibernate.version>
46        <hibernate.jpaVersion>1.0.0.Final</hibernate.jpaVersion>
47        <jersey.version>1.18.1</jersey.version>
48        <jackson.version>1.6.1</jackson.version>
49        <wicket.version>1.4.23</wicket.version>
50        <spring.version>4.0.6.RELEASE</spring.version>
51       
52        <!-- Production settings below -->
53        <log4j.appender>File</log4j.appender>
54        <war.webxml>src/main/webapp/WEB-INF/web-shib.xml</war.webxml>
55       
56        <!-- Tell Netbeans to insert the right license header -->
57        <netbeans.hint.license>gpl30</netbeans.hint.license> 
58    </properties>
59   
60    <profiles>
61        <profile>
62            <!-- Development profile -->
63            <id>development</id>
64            <properties>
65                <!-- Log to console -->
66                <log4j.appender>Console</log4j.appender>     
67                <!-- Use the user database realm version of web.xml -->           
68                <war.webxml>src/main/webapp/WEB-INF/web-dev.xml</war.webxml>
69            </properties>
70        </profile>
71    </profiles>
72
73    <dependencies>
74        <dependency>
75            <groupId>org.slf4j</groupId>
76            <artifactId>slf4j-api</artifactId>
77        </dependency>
78
79        <dependency>
80            <groupId>org.slf4j</groupId>
81            <artifactId>slf4j-log4j12</artifactId>
82            <version>${slf4j.version}</version>
83        </dependency>
84
85        <dependency>
86            <groupId>org.apache.commons</groupId>
87            <artifactId>commons-lang3</artifactId>
88            <version>3.3.2</version>
89        </dependency>
90
91        <dependency>
92            <groupId>commons-codec</groupId>
93            <artifactId>commons-codec</artifactId>
94            <type>jar</type>
95        </dependency>
96
97        <dependency>
98            <groupId>org.codehaus.woodstox</groupId>
99            <artifactId>woodstox-core-asl</artifactId>
100            <version>4.0.8</version>
101            <type>jar</type>
102            <scope>compile</scope>
103            <exclusions>
104                <!-- StaX is part of JRE 1.5 and newer -->
105                <exclusion>
106                    <artifactId>stax-api</artifactId>
107                    <groupId>javax.xml.stream</groupId>
108                </exclusion>
109            </exclusions>
110        </dependency>
111
112        <dependency>
113            <groupId>net.java.dev.msv</groupId>
114            <artifactId>msv-core</artifactId>
115            <version>2009.1</version>
116            <type>jar</type>
117            <scope>runtime</scope>
118        </dependency>
119
120        <dependency>
121            <groupId>org.hibernate.javax.persistence</groupId>
122            <artifactId>hibernate-jpa-2.1-api</artifactId>
123            <version>${hibernate.jpaVersion}</version>
124        </dependency>
125
126        <dependency>
127            <groupId>org.hibernate</groupId>
128            <artifactId>hibernate-entitymanager</artifactId>
129            <version>${hibernate.version}</version>
130            <scope>runtime</scope>
131        </dependency>
132
133        <dependency>
134            <groupId>javax.servlet</groupId>
135            <artifactId>servlet-api</artifactId>
136            <version>2.5</version>
137            <type>jar</type>
138            <scope>provided</scope>
139        </dependency>
140
141        <dependency>
142            <groupId>javax.ws.rs</groupId>
143            <artifactId>jsr311-api</artifactId>
144            <version>1.1.1</version>
145            <type>jar</type>
146        </dependency>
147
148        <dependency>
149            <groupId>com.sun.jersey</groupId>
150            <artifactId>jersey-servlet</artifactId>
151            <version>${jersey.version}</version>
152        </dependency>
153
154        <dependency>
155            <groupId>com.sun.jersey</groupId>
156            <artifactId>jersey-json</artifactId>
157            <version>${jersey.version}</version>
158            <exclusions>
159                <!-- StaX is part of JRE 1.5 and newer -->
160                <exclusion>
161                    <groupId>stax</groupId>
162                    <artifactId>stax-api</artifactId>
163                </exclusion>
164                <exclusion>
165                    <groupId>com.sun.xml.bind</groupId>
166                    <artifactId>jaxb-impl</artifactId>
167                </exclusion>
168                <exclusion>
169                    <artifactId>jackson-mapper-asl</artifactId>
170                    <groupId>org.codehaus.jackson</groupId>
171                </exclusion>
172            </exclusions>
173        </dependency>
174
175
176        <dependency>
177            <groupId>org.codehaus.jettison</groupId>
178            <artifactId>jettison</artifactId>
179            <exclusions>
180                <exclusion>
181                    <groupId>stax</groupId>
182                    <artifactId>stax-api</artifactId>
183                </exclusion>
184            </exclusions>
185        </dependency>
186
187        <!--
188            Below: libraries required for de.uni_leipzig.* EPIC library
189           
190            TODO: replace with dependency on detached library once available
191
192            <dependency>
193                <groupId>de.uni_leipzig.asv</groupId>
194                <artifactId>clarin.webservices.pidservices2</artifactId>
195                <version>2.0.6-SNAPSHOT</version>
196            </dependency>
197        -->
198
199        <dependency>
200            <groupId>com.sun.jersey.contribs</groupId>
201            <artifactId>jersey-apache-client</artifactId>
202            <version>${jersey.version}</version>
203        </dependency>
204
205        <dependency>
206            <groupId>com.jayway.jsonpath</groupId>
207            <artifactId>json-path</artifactId>
208            <version>0.9.1</version>
209        </dependency>
210
211        <dependency>
212            <groupId>net.sf.json-lib</groupId>
213            <artifactId>json-lib</artifactId>
214            <version>2.4</version>
215            <classifier>jdk15</classifier>
216        </dependency>
217
218        <dependency>
219            <groupId>org.apache.httpcomponents</groupId>
220            <artifactId>httpclient</artifactId>
221            <version>4.3.4</version>
222            <type>jar</type>
223        </dependency>
224
225        <dependency>
226            <groupId>org.apache.wicket</groupId>
227            <artifactId>wicket</artifactId>
228        </dependency>
229
230        <dependency>
231            <groupId>org.apache.wicket</groupId>
232            <artifactId>wicket-auth-roles</artifactId>
233            <version>${wicket.version}</version>
234        </dependency>
235
236        <dependency>
237            <groupId>org.apache.wicket</groupId>
238            <artifactId>wicket-datetime</artifactId>
239            <version>${wicket.version}</version>
240        </dependency>
241
242        <dependency>
243            <groupId>org.apache.wicket</groupId>
244            <artifactId>wicket-extensions</artifactId>
245            <version>${wicket.version}</version>
246        </dependency>
247
248        <dependency>
249            <groupId>org.apache.wicket</groupId>
250            <artifactId>wicket-spring</artifactId>
251            <version>${wicket.version}</version>
252        </dependency>
253
254        <dependency>
255            <groupId>org.odlabs.wiquery</groupId>
256            <artifactId>wiquery</artifactId>
257            <version>1.2.3</version>
258            <exclusions>
259                <exclusion>
260                    <artifactId>log4j</artifactId>
261                    <groupId>log4j</groupId>
262                </exclusion>
263            </exclusions>
264        </dependency>
265
266        <!--
267                <dependency>
268                    <groupId>net.java.dev.javacc</groupId>
269                    <artifactId>javacc</artifactId>
270                    <version>5.0</version>
271                    <type>jar</type>
272                    <scope>provided</scope>
273                </dependency>
274        -->
275
276        <dependency>
277            <groupId>mysql</groupId>
278            <artifactId>mysql-connector-java</artifactId>
279            <version>5.1.13</version>
280            <type>jar</type>
281        </dependency>
282       
283        <dependency>
284            <groupId>de.mpg.mpgaai</groupId>
285            <artifactId>mpgaai-shhaa</artifactId>
286            <version>1.0.5</version>
287        </dependency>
288
289        <dependency>
290            <groupId>org.springframework</groupId>
291            <artifactId>spring-web</artifactId>
292            <version>${spring.version}</version>
293            <type>jar</type>
294        </dependency>
295
296        <dependency>
297            <groupId>com.sun.jersey.contribs</groupId>
298            <artifactId>jersey-spring</artifactId>
299            <version>${jersey.version}</version>
300            <exclusions>
301                <exclusion>
302                    <artifactId>spring-aop</artifactId>
303                    <groupId>org.springframework</groupId>
304                </exclusion>
305                <exclusion>
306                    <artifactId>spring-asm</artifactId>
307                    <groupId>org.springframework</groupId>
308                </exclusion>
309                <exclusion>
310                    <artifactId>spring-beans</artifactId>
311                    <groupId>org.springframework</groupId>
312                </exclusion>
313                <exclusion>
314                    <artifactId>spring-context</artifactId>
315                    <groupId>org.springframework</groupId>
316                </exclusion>
317                <exclusion>
318                    <artifactId>spring-core</artifactId>
319                    <groupId>org.springframework</groupId>
320                </exclusion>
321                <exclusion>
322                    <artifactId>spring-web</artifactId>
323                    <groupId>org.springframework</groupId>
324                </exclusion>
325            </exclusions>
326        </dependency>
327
328        <dependency>
329            <groupId>net.sf.saxon</groupId>
330            <artifactId>Saxon-HE</artifactId>
331            <version>9.5.1-5</version>
332            <scope>runtime</scope>
333            <classifier>compressed</classifier>
334        </dependency>
335
336        <dependency>
337            <groupId>eu.clarin.cmdi</groupId>
338            <artifactId>OAIProvider</artifactId>
339            <version>0.0.2</version>
340            <exclusions>
341                <exclusion>
342                    <artifactId>slf4j-jdk14</artifactId>
343                    <groupId>org.slf4j</groupId>
344                </exclusion>
345            </exclusions>
346        </dependency>
347
348        <!-- testing dependencies -->
349        <dependency>
350            <groupId>junit</groupId>
351            <artifactId>junit</artifactId>
352            <version>4.11</version>
353            <type>jar</type>
354            <scope>test</scope>
355        </dependency>
356
357        <dependency>
358            <groupId>org.hsqldb</groupId>
359            <artifactId>hsqldb</artifactId>
360            <version>2.0.0</version>
361            <type>jar</type>
362            <scope>test</scope>
363        </dependency>
364
365        <dependency>
366            <groupId>xmlunit</groupId>
367            <artifactId>xmlunit</artifactId>
368            <version>1.5</version>
369            <scope>test</scope>
370            <type>jar</type>
371        </dependency>
372
373        <dependency>
374            <groupId>org.jmock</groupId>
375            <artifactId>jmock-junit4</artifactId>
376            <version>2.6.0</version>
377            <scope>test</scope>
378        </dependency>
379
380        <!-- JavaMelody for application monitoring -->
381        <dependency>
382            <groupId>net.bull.javamelody</groupId>
383            <artifactId>javamelody-core</artifactId>
384            <version>1.51.0</version>
385            <exclusions>
386                <exclusion>
387                    <groupId>org.springframework</groupId>
388                    <artifactId>spring-aop</artifactId>
389                </exclusion>
390                <exclusion>
391                    <groupId>org.springframework</groupId>
392                    <artifactId>spring-context</artifactId>
393                </exclusion>
394            </exclusions>
395        </dependency>
396    </dependencies>
397
398    <dependencyManagement>
399        <dependencies>
400            <dependency>
401                <groupId>org.slf4j</groupId>
402                <artifactId>slf4j-api</artifactId>
403                <version>${slf4j.version}</version>
404            </dependency>
405
406            <dependency>
407                <groupId>commons-codec</groupId>
408                <artifactId>commons-codec</artifactId>
409                <version>1.4</version>
410            </dependency>
411
412            <dependency>
413                <groupId>commons-logging</groupId>
414                <artifactId>commons-logging</artifactId>
415                <version>1.1.3</version>
416            </dependency>
417
418            <dependency>
419                <groupId>org.codehaus.jettison</groupId>
420                <artifactId>jettison</artifactId>
421                <version>1.2</version>
422            </dependency>
423
424            <dependency>
425                <groupId>org.apache.wicket</groupId>
426                <artifactId>wicket</artifactId>
427                <version>${wicket.version}</version>
428            </dependency>
429
430            <dependency>
431                <groupId>org.codehaus.jackson</groupId>
432                <artifactId>jackson-core-asl</artifactId>
433                <version>${jackson.version}</version>
434            </dependency>
435
436            <dependency>
437                <groupId>org.codehaus.jackson</groupId>
438                <artifactId>jackson-mapper-asl</artifactId>
439                <version>${jackson.version}</version>
440            </dependency>
441        </dependencies>
442    </dependencyManagement>
443
444    <build>
445        <resources>
446            <resource>
447                <filtering>true</filtering>
448                <directory>src/main/resources</directory>
449            </resource>
450            <resource>
451                <filtering>true</filtering>
452                <directory>src/main/java</directory>
453                <includes>
454                    <include>**/BasePage.html</include>
455                </includes>
456            </resource>
457            <resource>
458                <filtering>false</filtering>
459                <directory>src/main/java</directory>
460                <includes>
461                    <include>**/*.html</include>
462                    <include>**/*.css</include>
463                    <include>**/*.js</include>
464                    <include>**/*.properties</include>
465                </includes>
466            </resource>
467        </resources>
468
469        <testResources>
470            <testResource>
471                <directory>src/test/resources</directory>
472            </testResource>
473        </testResources>
474
475        <plugins>
476            <plugin>
477                <groupId>org.codehaus.mojo</groupId>
478                <artifactId>javacc-maven-plugin</artifactId>
479                <version>2.6</version>
480                <executions>
481                    <execution>
482                        <id>javacc</id>
483                        <goals>
484                            <goal>jjtree-javacc</goal>
485                        </goals>
486                        <phase>generate-sources</phase>
487                    </execution>
488                </executions>
489            </plugin>
490
491            <plugin>
492                <groupId>org.bsc.maven</groupId>
493                <artifactId>maven-processor-plugin</artifactId>
494                <version>2.0.0</version>
495                <executions>
496                    <execution>
497                        <id>process</id>
498                        <goals>
499                            <goal>process</goal>
500                        </goals>
501                        <phase>generate-sources</phase>
502                        <configuration>
503                            <processors>
504                                <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor>
505                            </processors>
506                            <sourceDirectory>${basedir}/src/main/java/eu/clarin/cmdi/virtualcollectionregistry/model</sourceDirectory>
507                            <outputDirectory>${project.build.directory}/generated-sources/metamodel</outputDirectory>
508                        </configuration>
509                    </execution>
510                </executions>
511                <dependencies>
512                    <dependency>
513                        <groupId>org.hibernate</groupId>
514                        <artifactId>hibernate-jpamodelgen</artifactId>
515                        <version>${hibernate.jpaVersion}</version>
516                        <scope>compile</scope>
517                    </dependency>
518                </dependencies>
519            </plugin>
520
521            <plugin>
522                <groupId>org.codehaus.mojo</groupId>
523                <artifactId>jaxb2-maven-plugin</artifactId>
524                <version>1.6</version>
525                <executions>
526                    <execution>
527                        <id>xjc</id>
528                        <goals>
529                            <goal>xjc</goal>
530                        </goals>
531                    </execution>
532                </executions>
533                <configuration>
534                    <packageName>eu.clarin.cmdi.virtualcollectionregistry.model.cmdi</packageName> <!-- The name of your generated source package -->
535                </configuration>
536            </plugin>
537
538            <plugin>
539                <groupId>org.codehaus.mojo</groupId>
540                <artifactId>build-helper-maven-plugin</artifactId>
541                <version>1.3</version>
542                <executions>
543                    <execution>
544                        <id>add-source</id>
545                        <goals>
546                            <goal>add-source</goal>
547                        </goals>
548                        <phase>generate-sources</phase>
549                        <configuration>
550                            <sources>
551                                <source>${project.build.directory}/generated-sources/metamodel</source>
552                                <source>${project.build.directory}/generated-sources/javacc</source>
553                                <source>${project.build.directory}/generated-sources/jjtree</source>
554                                <source>${project.build.directory}/generated-sources/jaxb</source>
555                            </sources>
556                        </configuration>
557                    </execution>
558                </executions>
559            </plugin>
560
561            <plugin>
562                <groupId>org.apache.maven.plugins</groupId>
563                <artifactId>maven-compiler-plugin</artifactId>
564                <version>2.3.2</version>
565                <configuration>
566                    <source>${maven.compiler.source}</source>
567                    <target>${maven.compiler.target}</target>
568                    <compilerArgument>-proc:none</compilerArgument>
569                </configuration>
570            </plugin>
571
572            <plugin>
573                <groupId>org.apache.maven.plugins</groupId>
574                <artifactId>maven-war-plugin</artifactId>
575                <version>2.1.1</version>
576                <configuration>
577                    <failOnMissingWebXml>true</failOnMissingWebXml>
578                    <webXml>${war.webxml}</webXml>
579                    <webResources>
580                        <!-- additional web resources: also copy schemas to web-app -->
581                        <resource>
582                            <directory>src/main/resources/META-INF</directory>
583                            <targetPath>schema</targetPath>
584                            <includes>
585                                <include>*.xsd</include>
586                            </includes>
587                        </resource>
588                    </webResources>
589                </configuration>
590            </plugin>
591           
592            <plugin>
593                <groupId>org.jasig.maven</groupId>
594                <artifactId>sass-maven-plugin</artifactId>
595                <version>1.1.1</version>
596                <executions>
597                    <execution>
598                        <phase>generate-resources</phase>
599                        <goals>
600                            <goal>update-stylesheets</goal>
601                        </goals>
602                    </execution>
603                </executions>
604<!--                <configuration>
605                    <sassSourceDirectory>src/main/webapp/css</sassSourceDirectory>
606                </configuration>-->
607            </plugin>
608            <!--            <plugin>
609                <groupId>ro.isdc.wro4j</groupId>
610                <artifactId>wro4j-maven-plugin</artifactId>
611                <version>1.7.6</version>
612                <executions>
613                    <execution>
614                        <phase>compile</phase>
615                        <goals>
616                            <goal>run</goal>
617                        </goals>
618                    </execution>
619                </executions>
620                <configuration>
621                    <targetGroups>all</targetGroups>
622                    <minimize>true</minimize>
623                    <destinationFolder>${basedir}/src/main/webapp/wro/</destinationFolder>
624                    <cssDestinationFolder>d:/static/css/</cssDestinationFolder>
625                    <jsDestinationFolder>d:/static/js/</jsDestinationFolder>
626                    <contextFolder>${basedir}/src/main/webapp/</contextFolder>
627                    <wroFile>${basedir}/src/main/webapp/WEB-INF/wro.xml</wroFile>
628                    <wroManagerFactory>com.mycompany.MyCustomWroManagerFactory</wroManagerFactory>
629                    <ignoreMissingResources>false</ignoreMissingResources>
630                </configuration>
631            </plugin>-->
632        </plugins>
633
634        <pluginManagement>
635            <plugins>
636                <!-- This plugin's configuration is used to store Eclipse m2e settings
637                only. It has no influence on the Maven build itself. -->
638                <plugin>
639                    <groupId>org.eclipse.m2e</groupId>
640                    <artifactId>lifecycle-mapping</artifactId>
641                    <version>1.0.0</version>
642                    <configuration>
643                        <lifecycleMappingMetadata>
644                            <pluginExecutions>
645                                <pluginExecution>
646                                    <pluginExecutionFilter>
647                                        <groupId>org.codehaus.mojo</groupId>
648                                        <artifactId>javacc-maven-plugin</artifactId>
649                                        <versionRange>[2.6,)</versionRange>
650                                        <goals>
651                                            <goal>jjtree-javacc</goal>
652                                        </goals>
653                                    </pluginExecutionFilter>
654                                    <action>
655                                        <execute />
656                                    </action>
657                                </pluginExecution>
658                                <pluginExecution>
659                                    <pluginExecutionFilter>
660                                        <groupId>org.bsc.maven</groupId>
661                                        <artifactId>maven-processor-plugin</artifactId>
662                                        <versionRange>[2.0.0,)</versionRange>
663                                        <goals>
664                                            <goal>process</goal>
665                                        </goals>
666                                    </pluginExecutionFilter>
667                                    <action>
668                                        <execute />
669                                    </action>
670                                </pluginExecution>
671                                <pluginExecution>
672                                    <pluginExecutionFilter>
673                                        <groupId>org.codehaus.mojo</groupId>
674                                        <artifactId>jaxb2-maven-plugin</artifactId>
675                                        <versionRange>[1.6,)</versionRange>
676                                        <goals>
677                                            <goal>xjc</goal>
678                                        </goals>
679                                    </pluginExecutionFilter>
680                                    <action>
681                                        <execute />
682                                    </action>
683                                </pluginExecution>
684                            </pluginExecutions>
685                        </lifecycleMappingMetadata>
686                    </configuration>
687                </plugin>
688                <!-- JAX-B If we e.g. execute on JDK 1.7, we should compile for
689                                Java 7 to get the same (or higher) JAXB API version as
690                used during the xjc execution. -->
691                <plugin>
692                    <groupId>org.apache.maven.plugins</groupId>
693                    <artifactId>maven-compiler-plugin</artifactId>
694                    <configuration>
695                        <source>${maven.compiler.source}</source>
696                        <target>${maven.compiler.source}</target>
697                    </configuration>
698                </plugin>
699            </plugins>
700        </pluginManagement>
701    </build>
702
703    <reporting>
704        <plugins>
705            <!-- NCSS plugin has issues with Java 7 at the moment, check back later -->
706            <!--
707            <plugin>
708                <groupId>org.codehaus.mojo</groupId>
709                <artifactId>javancss-maven-plugin</artifactId>
710                <version>2.0-beta-2</version>
711            </plugin>
712            -->
713        </plugins>
714    </reporting>
715
716    <repositories>
717        <repository>
718            <id>jboss</id>
719            <name>JBoss Public Maven Repository Group</name>
720            <url>https://repository.jboss.org/nexus/content/repositories/releases/</url>
721            <layout>default</layout>
722        </repository>
723
724        <repository>
725            <id>java-net-maven-2</id>
726            <name>Java.net Repository</name>
727            <url>http://download.java.net/maven/2/</url>
728            <layout>default</layout>
729        </repository>
730
731        <repository>
732            <id>wiquery</id>
733            <name>wiQuery repository</name>
734            <url>http://wiquery.googlecode.com/svn/repo/</url>
735            <layout>default</layout>
736        </repository>
737
738        <repository>
739            <id>clarin</id>
740            <name>CLARIN Repository</name>
741            <url>http://catalog.clarin.eu/ds/nexus/content/groups/public/</url>
742            <layout>default</layout>
743        </repository>
744    </repositories>
745
746    <pluginRepositories>
747        <pluginRepository>
748            <id>jboss</id>
749            <name>JBoss Public Maven Repository Group</name>
750            <url>https://repository.jboss.org/nexus/content/repositories/releases/</url>
751            <layout>default</layout>
752        </pluginRepository>
753    </pluginRepositories>
754
755</project>
Note: See TracBrowser for help on using the repository browser.