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/serverws/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/serverws/pom.xml')
-rw-r--r-- | spss/server/serverws/pom.xml | 145 |
1 files changed, 145 insertions, 0 deletions
diff --git a/spss/server/serverws/pom.xml b/spss/server/serverws/pom.xml new file mode 100644 index 000000000..8fb467bb2 --- /dev/null +++ b/spss/server/serverws/pom.xml @@ -0,0 +1,145 @@ +<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>serverweb</artifactId> + <packaging>pom</packaging> + <version>1.4.0</version> + <name>MOA SPSS Server-Web</name> + + <properties> + <thirdPartyLib>${basedir}/../../../buildhelper</thirdPartyLib> + </properties> + + <build> + <plugins> + <plugin> + <artifactId>maven-assembly-plugin</artifactId> + <configuration> + <descriptors> + <descriptor>${basedir}/assembly.xml</descriptor> + </descriptors> + </configuration> + <executions> + <execution> + <id>mk</id> + <phase>package</phase> + <goals> + <goal>attached</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + + <dependencies> + <dependency> + <groupId>axis</groupId> + <artifactId>axis</artifactId> + </dependency> + <dependency> + <groupId>commons-discovery</groupId> + <artifactId>commons-discovery</artifactId> + </dependency> + <dependency> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + </dependency> + <dependency> + <groupId>jaxen</groupId> + <artifactId>jaxen-core</artifactId> + </dependency> + <dependency> + <groupId>jaxen</groupId> + <artifactId>jaxen-dom</artifactId> + </dependency> + <dependency> + <groupId>jaxp</groupId> + <artifactId>dom</artifactId> + </dependency> + <dependency> + <groupId>jaxp</groupId> + <artifactId>jaxp-api</artifactId> + </dependency> + <dependency> + <groupId>javaext</groupId> + <artifactId>jaxrpc</artifactId> + </dependency> + <dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + </dependency> + <dependency> + <groupId>postgresql</groupId> + <artifactId>postgresql</artifactId> + </dependency> + <dependency> + <groupId>saaj</groupId> + <artifactId>saaj</artifactId> + </dependency> + <dependency> + <groupId>sax</groupId> + <artifactId>sax</artifactId> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>saxpath</groupId> + <artifactId>saxpath</artifactId> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>wsdl4j</groupId> + <artifactId>wsdl4j</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>MOA.spss.server</groupId> + <artifactId>serverlib</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>MOA</groupId> + <artifactId>common</artifactId> + </dependency> + + <dependency> + <groupId>iaik.prod</groupId> + <artifactId>iaik_cms</artifactId> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>iaik.prod</groupId> + <artifactId>iaik_moa_full</artifactId> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>iaik.prod</groupId> + <artifactId>iaik_ixsil</artifactId> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>iaik.prod</groupId> + <artifactId>iaik_Pkcs11Wrapper</artifactId> + <scope>runtime</scope> + </dependency> + </dependencies> +</project> |