3
0
Fork 0
old-foei/pom.xml

193 lines
5 KiB
XML
Raw Normal View History

2008-12-16 13:51:02 +00:00
<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>
2010-09-25 16:34:44 +00:00
<groupId>com.idcanet.foei</groupId>
<artifactId>foei-base</artifactId>
<packaging>pom</packaging>
2008-12-16 13:51:02 +00:00
<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>
2010-09-25 16:34:44 +00:00
<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>
2008-12-16 13:51:02 +00:00
<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>
2010-09-25 16:34:44 +00:00
<version>${testng.version}</version>
2008-12-16 13:51:02 +00:00
<scope>test</scope>
<classifier>jdk15</classifier>
</dependency>
2010-09-25 16:34:44 +00:00
<!--
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>6.0</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
2010-09-25 16:34:44 +00:00
-->
2008-12-16 13:51:02 +00:00
</dependencies>
<build>
<plugins>
<!-- Compile source -->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
2010-09-25 16:34:44 +00:00
<source>1.6</source>
<target>1.6</target>
2008-12-16 13:51:02 +00:00
</configuration>
</plugin>
2010-04-20 20:46:41 +00:00
<!-- Package source -->
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals><goal>jar</goal></goals>
</execution>
</executions>
</plugin>
2008-12-16 13:51:02 +00:00
<!-- 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>