aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authormcentner <mcentner@d688527b-c9ab-4aba-bd8d-4036d912da1d>2007-08-08 14:07:39 +0000
committermcentner <mcentner@d688527b-c9ab-4aba-bd8d-4036d912da1d>2007-08-08 14:07:39 +0000
commit48cf31cc2e5b08f3d029d60b97cf88002e915bdc (patch)
treeb6aabbf26a1caf6201a39bbfa383c7a54fb1677c /pom.xml
parentbb444223c1b737319f473f6816566fa28b658cf5 (diff)
downloadmoa-id-spss-48cf31cc2e5b08f3d029d60b97cf88002e915bdc.tar.gz
moa-id-spss-48cf31cc2e5b08f3d029d60b97cf88002e915bdc.tar.bz2
moa-id-spss-48cf31cc2e5b08f3d029d60b97cf88002e915bdc.zip
mavenized
git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/trunk@918 d688527b-c9ab-4aba-bd8d-4036d912da1d
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml349
1 files changed, 349 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 000000000..000825c06
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,349 @@
+<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/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>MOA</groupId>
+ <artifactId>MOA</artifactId>
+ <packaging>pom</packaging>
+ <version>1.4.0</version>
+ <name>MOA</name>
+
+ <properties>
+ <thirdPartyLib>${basedir}/../buildhelper</thirdPartyLib>
+ </properties>
+
+ <profiles>
+ <profile>
+ <id>JDK</id>
+ <properties>
+ <JAVA_HOME></JAVA_HOME>
+ <JAVA_VERSION>1.4</JAVA_VERSION>
+ </properties>
+ </profile>
+
+ <profile>
+ <id>subversion</id>
+ <activation>
+ <property>
+ <name>subversion</name>
+ </property>
+ </activation>
+ <modules>
+ <module>BuildHelper</module>
+ </modules>
+ </profile>
+
+ <profile>
+ <id>default</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ <property>
+ <name>default</name>
+ </property>
+ </activation>
+ <modules>
+ <module>common</module>
+ <module>common-test</module>
+ <module>spss</module>
+ <module>id</module>
+ </modules>
+ </profile>
+
+ <profile>
+ <id>zs</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ <property>
+ <name>zs</name>
+ </property>
+ </activation>
+ <modules>
+ <module>zs</module>
+ </modules>
+ </profile>
+ </profiles>
+
+<!--
+ <modules>
+ <module>BuildHelper</module>
+ <module>common</module>
+ <module>common-test</module>
+ <module>spss</module>
+ <module>id</module>
+ <module>zs</module>
+ </modules>
+-->
+
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <verbose>true</verbose>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <verbose>true</verbose>
+ <fork>true</fork>
+ <executable>${env.BUILD_EXECUTEABLE}</executable>
+ <compilerVersion>${env.BUILD_VERSION}</compilerVersion>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifest>
+ <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+ </manifest>
+ </archive>
+ </configuration>
+ </plugin>
+ </plugins>
+
+ </build>
+
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <configuration>
+ <excludePackageNames>test.*</excludePackageNames>
+ </configuration>
+ </plugin>
+ </plugins>
+ </reporting>
+
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>MOA</groupId>
+ <artifactId>common</artifactId>
+ <version>1.4.0</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>MOA</groupId>
+ <artifactId>common-test</artifactId>
+ <version>1.4.0</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ <version>1.0.4</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>iaik.prod</groupId>
+ <artifactId>iaik_jce_full</artifactId>
+ <version>3.13</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.4</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.activation</groupId>
+ <artifactId>activation</artifactId>
+ <version>1.0.2</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.xml</groupId>
+ <artifactId>jaxrpc-api</artifactId>
+ <version>1.1</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>saaj</groupId>
+ <artifactId>saaj</artifactId>
+ <version>1.1</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>jaxp</groupId>
+ <artifactId>jaxp-api</artifactId>
+ <version>1.2_01</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>jaxp</groupId>
+ <artifactId>dom</artifactId>
+ <version>1.2_01</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>jaxp</groupId>
+ <artifactId>sax</artifactId>
+ <version>1.2_01</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>jsse</groupId>
+ <artifactId>jsse</artifactId>
+ <version>1.0.3_03</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>jsse</groupId>
+ <artifactId>jnet</artifactId>
+ <version>1.0.3_03</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>jsse</groupId>
+ <artifactId>jcert</artifactId>
+ <version>1.0.3_03</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>commons-discovery</groupId>
+ <artifactId>commons-discovery</artifactId>
+ <version>0.2</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>iaik.prod</groupId>
+ <artifactId>iaik_moa_full</artifactId>
+ <version>1.20</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>iaik.prod</groupId>
+ <artifactId>iaik_ecc</artifactId>
+ <version>2.15</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>iaik.prod</groupId>
+ <artifactId>iaik_ixsil</artifactId>
+ <version>IXSIL-1.2.2.1</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>iaik.prod</groupId>
+ <artifactId>iaik_X509TrustManager</artifactId>
+ <version>0.2</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>iaik.prod</groupId>
+ <artifactId>iaik_ldap</artifactId>
+ <version>2003-04-29</version>
+ <scope>compile</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>jaxen</groupId>
+ <artifactId>jaxen-core</artifactId>
+ <scope>compile</scope>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>jaxen</groupId>
+ <artifactId>jaxen-dom</artifactId>
+ <scope>compile</scope>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>jaxen</groupId>
+ <artifactId>saxpath</artifactId>
+ <scope>compile</scope>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>jaxp</groupId>
+ <artifactId>jaxp-api</artifactId>
+ <version>1.2_01</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>jsse</groupId>
+ <artifactId>jsse</artifactId>
+ <version>1.0.3_03</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>taglibs</groupId>
+ <artifactId>standard</artifactId>
+ <version>1.1.0</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>wsdl4j</groupId>
+ <artifactId>wsdl4j</artifactId>
+ <version>1.4</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>xalan</groupId>
+ <artifactId>xalan</artifactId>
+ <version>2.5.1</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ <version>2.4.0</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>xerces</groupId>
+ <artifactId>xmlParserAPIs</artifactId>
+ <version>2.6.0</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>xmlrpc</groupId>
+ <artifactId>xmlrpc</artifactId>
+ <version>1.1</version>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+
+ <repositories>
+ <repository>
+ <id>MOA-download-open</id>
+ <name>MOA Download Open Repository</name>
+ <!--releases>
+ <enabled>false</enabled>
+ </releases-->
+ <layout>default</layout>
+ <url>file://${thirdPartyLib}/openLib</url>
+ </repository>
+ <repository>
+ <id>MOA-download-closed</id>
+ <name>MOA Download Closed Repository</name>
+ <!--releases>
+ <enabled>false</enabled>
+ </releases-->
+ <layout>default</layout>
+ <url>file://${thirdPartyLib}/closedLib</url>
+ </repository>
+ </repositories>
+</project>