diff options
author | mcentner <mcentner@d688527b-c9ab-4aba-bd8d-4036d912da1d> | 2007-08-08 11:30:00 +0000 |
---|---|---|
committer | mcentner <mcentner@d688527b-c9ab-4aba-bd8d-4036d912da1d> | 2007-08-08 11:30:00 +0000 |
commit | 4e47325e1cda70ad8b42aa78837e19f2ed077e38 (patch) | |
tree | 9481205800857c2b03be81a69e26ddfc0cff111b /spss/server/serverlib/pom.xml | |
parent | 6c16a43c129e880b707a83c49102be2afe75a937 (diff) | |
download | moa-id-spss-4e47325e1cda70ad8b42aa78837e19f2ed077e38.tar.gz moa-id-spss-4e47325e1cda70ad8b42aa78837e19f2ed077e38.tar.bz2 moa-id-spss-4e47325e1cda70ad8b42aa78837e19f2ed077e38.zip |
spss mavenized
git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/trunk@914 d688527b-c9ab-4aba-bd8d-4036d912da1d
Diffstat (limited to 'spss/server/serverlib/pom.xml')
-rw-r--r-- | spss/server/serverlib/pom.xml | 158 |
1 files changed, 158 insertions, 0 deletions
diff --git a/spss/server/serverlib/pom.xml b/spss/server/serverlib/pom.xml new file mode 100644 index 000000000..50b6fc411 --- /dev/null +++ b/spss/server/serverlib/pom.xml @@ -0,0 +1,158 @@ +<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"> + <parent> + <groupId>MOA.spss</groupId> + <artifactId>server</artifactId> + <version>1.4.0</version> + </parent> + + <modelVersion>4.0.0</modelVersion> + <groupId>MOA.spss.server</groupId> + <artifactId>serverlib</artifactId> + <packaging>jar</packaging> + <version>1.4.0</version> + <name>MOA SPSS Serverlibrary</name> + + <properties> + <thirdPartyLib>${basedir}/../../../buildhelper</thirdPartyLib> + </properties> + + <dependencies> + <dependency> + <groupId>axis</groupId> + <artifactId>axis</artifactId> + </dependency> + <dependency> + <groupId>saaj</groupId> + <artifactId>saaj</artifactId> + </dependency> + <dependency> + <groupId>commons-discovery</groupId> + <artifactId>commons-discovery</artifactId> + </dependency> + <dependency> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + </dependency> +<!-- <dependency>--> +<!-- <groupId>iDoclet</groupId>--> +<!-- <artifactId>iDoclet</artifactId>--> +<!-- </dependency>--> + <dependency> + <groupId>javax.activation</groupId> + <artifactId>activation</artifactId> + </dependency> + <dependency> + <groupId>jaxen</groupId> + <artifactId>jaxen</artifactId> + </dependency> + <dependency> + <groupId>jaxp</groupId> + <artifactId>dom</artifactId> + </dependency> + <dependency> + <groupId>jaxp</groupId> + <artifactId>jaxp-api</artifactId> + </dependency> + <dependency> + <groupId>jaxp</groupId> + <artifactId>sax</artifactId> + </dependency> +<!-- <dependency>--> +<!-- <groupId>javaext</groupId>--> +<!-- <artifactId>jaxrpc</artifactId>--> +<!-- </dependency>--> + <dependency> + <groupId>org.w3c.dom</groupId> + <artifactId>dom</artifactId> + </dependency> + <dependency> + <groupId>sax</groupId> + <artifactId>sax</artifactId> + </dependency> + <dependency> + <groupId>jsse</groupId> + <artifactId>jsse</artifactId> + </dependency> + <dependency> + <groupId>jsse</groupId> + <artifactId>jnet</artifactId> + </dependency> + <dependency> + <groupId>jsse</groupId> + <artifactId>jcert</artifactId> + </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + </dependency> + <dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + </dependency> + <dependency> + <groupId>postgresql</groupId> + <artifactId>postgresql</artifactId> + </dependency> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + </dependency> + <dependency> + <groupId>xalan</groupId> + <artifactId>xalan</artifactId> + </dependency> + <dependency> + <groupId>xerces</groupId> + <artifactId>xercesImpl</artifactId> + </dependency> + <dependency> + <groupId>xerces</groupId> + <artifactId>xmlParserAPIs</artifactId> + </dependency> + <dependency> + <groupId>iaik.prod</groupId> + <artifactId>iaik_moa_full</artifactId> + </dependency> + <dependency> + <groupId>iaik.prod</groupId> + <artifactId>iaik_ixsil</artifactId> + </dependency> + <dependency> + <groupId>iaik.prod</groupId> + <artifactId>iaik_jce_full</artifactId> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>iaik.prod</groupId> + <artifactId>iaik_ecc</artifactId> + </dependency> + <dependency> + <groupId>iaik.prod</groupId> + <artifactId>iaik_Pkcs11Provider</artifactId> + </dependency> + <dependency> + <groupId>iaik.prod</groupId> + <artifactId>iaik_Pkcs11Wrapper</artifactId> + </dependency> + <dependency> + <groupId>iaik.win32</groupId> + <artifactId>Pkcs11Wrapper</artifactId> + <type>dll</type> + <version>1.0</version> + </dependency> + <dependency> + <groupId>MOA</groupId> + <artifactId>common</artifactId> +<!-- <scope>system</scope>--> +<!-- <systemPath>${basedir}/../../../common/target</systemPath>--> + </dependency> + <dependency> + <groupId>MOA</groupId> + <artifactId>common-test</artifactId> + <scope>system</scope> + <systemPath>${basedir}/../../../common-test/target</systemPath> + </dependency> + </dependencies> + +</project> |