You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.7 KiB
66 lines
1.7 KiB
<project> |
|
<modelVersion>4.0.0</modelVersion> |
|
<groupId>net.sf.acegisecurity</groupId> |
|
<artifactId>acegi-security-parent</artifactId> |
|
<version>0.9.0-SNAPSHOT</version> |
|
<packaging>pom</packaging> |
|
|
|
<modules> |
|
<module>core</module> |
|
<module>core-tiger</module> |
|
<module>adapters</module> |
|
<module>domain</module> |
|
</modules> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<configuration> |
|
<source>1.3</source> |
|
<target>1.3</target> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-surefire-plugin</artifactId> |
|
<configuration> |
|
<includes> |
|
<include implementation="java.lang.String">**/*Tests.class</include> |
|
</includes> |
|
<excludes> |
|
<exclude implementation="java.lang.String">**/Abstract*</exclude> |
|
</excludes> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
<reporting> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.codehaus.mojo</groupId> |
|
<artifactId>surefire-report-maven-plugin</artifactId> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.codehaus.mojo</groupId> |
|
<artifactId>jxr-maven-plugin</artifactId> |
|
</plugin> |
|
</plugins> |
|
</reporting> |
|
|
|
<!-- |
|
<repositories> |
|
<repository> |
|
<id>snapshots</id> |
|
<name>Maven Central Development Repository</name> |
|
<url>http://snapshots.maven.codehaus.org/maven2</url> |
|
<releases> |
|
<enabled>false</enabled> |
|
</releases> |
|
</repository> |
|
</repositories> |
|
--> |
|
|
|
</project> |