193 lines
5 KiB
XML
193 lines
5 KiB
XML
<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/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.idcanet.foei</groupId>
|
|
<artifactId>foei-base</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>0.8-SNAPSHOT</version>
|
|
<name>foei</name>
|
|
<description>Creates an easy xml layer for objects and creating your own xml language implementions.</description>
|
|
<url>http://www.x4o.org/foei</url>
|
|
<modules>
|
|
<module>foei-core</module>
|
|
<module>foei-server</module>
|
|
<module>foei-components</module>
|
|
<module>foei-ee-jca</module>
|
|
<module>foei-ee-ejb3</module>
|
|
</modules>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<juel.version>2.1.0</juel.version>
|
|
<testng.version>5.8</testng.version>
|
|
<x4o-core.version>0.8-SNAPSHOT</x4o-core.version>
|
|
<servlet-api.version>2.4</servlet-api.version>
|
|
</properties>
|
|
<organization>
|
|
<name>IDCA</name>
|
|
<url>http://www.idca.nl</url>
|
|
</organization>
|
|
<issueManagement>
|
|
<system>Trac</system>
|
|
<url>https://decaid.idca.nl/trac/oss/</url>
|
|
</issueManagement>
|
|
<scm>
|
|
<connection>scm:svn:https://decaid.idca.nl/svn/oss/com.idcanet.foei/</connection>
|
|
<developerConnection>scm:svn:https://decaid.idca.nl/svn/oss/com.idcanet.foei/</developerConnection>
|
|
<url>https://decaid.idca.nl/svn/oss/com.idcanet.foei/</url>
|
|
</scm>
|
|
<developers>
|
|
<developer>
|
|
<id>willem.cazander</id>
|
|
<name>Willem Cazander</name>
|
|
<email>w.cazander@gmail.com</email>
|
|
<organization>IDCA</organization>
|
|
<timezone>+2</timezone>
|
|
<roles>
|
|
<role>Project Manager</role>
|
|
<role>Architect</role>
|
|
</roles>
|
|
</developer>
|
|
<developer>
|
|
<id>sqrbass</id>
|
|
<name>Bas van Oostveen</name>
|
|
<email></email>
|
|
<organization>IDCA</organization>
|
|
<timezone>+2</timezone>
|
|
<roles>
|
|
<role>Architect Reviewer</role>
|
|
</roles>
|
|
</developer>
|
|
</developers>
|
|
<repositories>
|
|
<repository>
|
|
<id>jboss</id>
|
|
<name>JBoss Repository Switchboard</name>
|
|
<layout>default</layout>
|
|
<url>http://repository.jboss.com/maven2/</url>
|
|
<snapshots><enabled>true</enabled></snapshots>
|
|
</repository>
|
|
</repositories>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.testng</groupId>
|
|
<artifactId>testng</artifactId>
|
|
<version>${testng.version}</version>
|
|
<scope>test</scope>
|
|
<classifier>jdk15</classifier>
|
|
</dependency>
|
|
|
|
<!--
|
|
<dependency>
|
|
<groupId>javax</groupId>
|
|
<artifactId>javaee-api</artifactId>
|
|
<version>6.0</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
-->
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
|
|
<!-- Compile source -->
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<encoding>UTF-8</encoding>
|
|
<source>1.6</source>
|
|
<target>1.6</target>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<!-- Package source -->
|
|
<plugin>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<goals><goal>jar</goal></goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<!-- Generate site -->
|
|
<plugin>
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
<version>2.0-beta-7</version>
|
|
<configuration>
|
|
<outputEncoding>UTF-8</outputEncoding>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<!-- Run tests -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.4</version>
|
|
<configuration></configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<reporting>
|
|
<outputDirectory>target/site</outputDirectory>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>cobertura-maven-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-report-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
<reportSets>
|
|
<reportSet>
|
|
<reports>
|
|
<report>summary</report>
|
|
<report>dependencies</report>
|
|
<report>project-team</report>
|
|
</reports>
|
|
</reportSet>
|
|
</reportSets>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>jxr-maven-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-report-plugin</artifactId>
|
|
<version>2.4.2</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>jdepend-maven-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-changes-plugin</artifactId>
|
|
<version>2.0</version>
|
|
<configuration>
|
|
<xmlPath>${basedir}/src/site/changes.xml</xmlPath>
|
|
</configuration>
|
|
<reportSets>
|
|
<reportSet>
|
|
<reports><report>changes-report</report></reports>
|
|
</reportSet>
|
|
</reportSets>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</reporting>
|
|
|
|
<!-- END -->
|
|
</project> |