aboutsummaryrefslogtreecommitdiff
path: root/spss
diff options
context:
space:
mode:
authormcentner <mcentner@d688527b-c9ab-4aba-bd8d-4036d912da1d>2007-08-08 11:30:00 +0000
committermcentner <mcentner@d688527b-c9ab-4aba-bd8d-4036d912da1d>2007-08-08 11:30:00 +0000
commit4e47325e1cda70ad8b42aa78837e19f2ed077e38 (patch)
tree9481205800857c2b03be81a69e26ddfc0cff111b /spss
parent6c16a43c129e880b707a83c49102be2afe75a937 (diff)
downloadmoa-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')
-rw-r--r--spss/pom.xml222
-rw-r--r--spss/server/distribution/assembly.xml92
-rw-r--r--spss/server/distribution/pom.xml111
-rw-r--r--spss/server/pom.xml26
-rw-r--r--spss/server/serverlib/pom.xml158
-rw-r--r--spss/server/serverws/assembly.xml71
-rw-r--r--spss/server/serverws/pom.xml145
7 files changed, 825 insertions, 0 deletions
diff --git a/spss/pom.xml b/spss/pom.xml
new file mode 100644
index 000000000..93a5b4374
--- /dev/null
+++ b/spss/pom.xml
@@ -0,0 +1,222 @@
+<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</groupId>
+ <artifactId>MOA</artifactId>
+ <version>1.4.0</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>MOA</groupId>
+ <artifactId>spss</artifactId>
+ <packaging>pom</packaging>
+ <version>1.4.0</version>
+ <name>MOA spss</name>
+
+ <properties>
+ <thirdPartyLib>${basedir}/../buildhelper</thirdPartyLib>
+ </properties>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <verbose>false</verbose>
+ <fork>true</fork>
+ <executable>${env.BUILD_EXECUTEABLE}</executable>
+ <compilerVersion>${env.BUILD_VERSION}</compilerVersion>
+ <source>1.3</source>
+ <target>1.3</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <modules>
+ <module>server</module>
+ </modules>
+
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>axis</groupId>
+ <artifactId>axis</artifactId>
+ <version>1.4</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ <version>1.0.4</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>iDoclet</groupId>
+ <artifactId>iDoclet</artifactId>
+ <version>1.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>jaxen</groupId>
+ <artifactId>jaxen</artifactId>
+ <version>1.0-FCS</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>jaxen</groupId>
+ <artifactId>jaxen-core</artifactId>
+ <version>1.0</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>jaxen</groupId>
+ <artifactId>jaxen-dom</artifactId>
+ <version>1.0</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.xml</groupId>
+ <artifactId>jaxrpc-api</artifactId>
+ <version>1.1</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>javaext</groupId>
+ <artifactId>jaxrpc</artifactId>
+ <version>0.1</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.w3c.dom</groupId>
+ <artifactId>dom</artifactId>
+ <version>LEVEL_3</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>sax</groupId>
+ <artifactId>sax</artifactId>
+ <version>JDK_13</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>saxpath</groupId>
+ <artifactId>saxpath</artifactId>
+ <version>1.0-FCS</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>wsdl4j</groupId>
+ <artifactId>wsdl4j</artifactId>
+ <version>1.4</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ <version>1.2.7</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>postgresql</groupId>
+ <artifactId>postgresql</artifactId>
+ <version>7.3-jdbc2</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.3</version>
+ <scope>provided</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.0.0</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>iaik.prod</groupId>
+ <artifactId>iaik_cms</artifactId>
+ <version>3.2</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>iaik.prod</groupId>
+ <artifactId>iaik_jce_full</artifactId>
+ <version>3.142_MOA</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>iaik.prod</groupId>
+ <artifactId>iaik_Pkcs11Provider</artifactId>
+ <version>1.2.4</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>iaik.prod</groupId>
+ <artifactId>iaik_Pkcs11Wrapper</artifactId>
+ <version>1.2.16</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>iaik.prod</groupId>
+ <artifactId>iaik_ecc_signed</artifactId>
+ <version>2.15</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>iaik.prod</groupId>
+ <artifactId>iaik_jce_full_signed</artifactId>
+ <version>3.142_MOA</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>iaik.prod</groupId>
+ <artifactId>iaik_Pkcs11Provider_signed</artifactId>
+ <version>1.2.4</version>
+ <scope>runtime</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>iaik.win32</groupId>
+ <artifactId>Pkcs11Wrapper</artifactId>
+ <type>dll</type>
+ <version>1.0</version>
+ <scope>compile</scope>
+ </dependency>
+ <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>
+ </dependencies>
+ </dependencyManagement>
+
+</project>
diff --git a/spss/server/distribution/assembly.xml b/spss/server/distribution/assembly.xml
new file mode 100644
index 000000000..b646f58b2
--- /dev/null
+++ b/spss/server/distribution/assembly.xml
@@ -0,0 +1,92 @@
+<assembly>
+ <id>all</id>
+
+ <formats>
+ <format>zip</format>
+ </formats>
+
+ <files>
+ <file>
+ <source>${basedir}/../../handbook/handbook.html</source>
+ <outputDirectory>/doc</outputDirectory>
+ </file>
+ </files>
+
+ <fileSets>
+ <fileSet>
+ <directory>${basedir}/../../handbook/conf</directory>
+ <outputDirectory>/conf</outputDirectory>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/../../handbook/handbook</directory>
+ <outputDirectory>/doc/handbook</outputDirectory>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/../../handbook/clients</directory>
+ <outputDirectory>/doc/clients</outputDirectory>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/../serverlib/resources/licenses</directory>
+ <outputDirectory>/licenses</outputDirectory>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/../serverws/data/deploy/tomcat</directory>
+ <outputDirectory>/tomcat</outputDirectory>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/../serverws/target</directory>
+ <outputDirectory>/</outputDirectory>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/../serverws/data/deploy/tools</directory>
+ <outputDirectory>/tools</outputDirectory>
+ </fileSet>
+ </fileSets>
+
+ <dependencySets>
+ <dependencySet>
+ <includes>
+ <include>xalan:xalan</include>
+ <include>xerces:xercesImpl</include>
+ <include>xerces:xmlParserAPIs</include>
+ </includes>
+ <outputDirectory>/endorsed14</outputDirectory>
+ </dependencySet>
+ <dependencySet>
+ <includes>
+ <include>iaik.prod:iaik_ecc</include>
+ <include>iaik.prod:iaik_jce_full</include>
+ <include>iaik.prod:iaik_Pkcs11Provider</include>
+ <include>jsse:jcert</include>
+ <include>jsse:jnet</include>
+ <include>jsse:jsse</include>
+ </includes>
+ <outputDirectory>/ext13</outputDirectory>
+ </dependencySet>
+ <dependencySet>
+ <includes>
+ <include>iaik.prod:iaik_ecc_signed</include>
+ <include>iaik.prod:iaik_jce_full_signed</include>
+ <include>iaik.prod:iaik_Pkcs11Provider_signed</include>
+ </includes>
+ <outputDirectory>/ext14</outputDirectory>
+ </dependencySet>
+ <dependencySet>
+ <includes>
+ <include>iaik.win32:Pkcs11Wrapper</include>
+ </includes>
+ <outputDirectory>/pkcs11/win32</outputDirectory>
+ </dependencySet>
+ <dependencySet>
+ <includes>
+ <include>iaik.prod:iaik_ecc</include>
+ <include>iaik.prod:iaik_jce_full</include>
+ <include>iaik.prod:iaik_moa_full</include>
+ <include>log4j:log4j</include>
+ <include>xalan:xalan</include>
+ </includes>
+ <outputDirectory>/tools</outputDirectory>
+ </dependencySet>
+ </dependencySets>
+
+</assembly> \ No newline at end of file
diff --git a/spss/server/distribution/pom.xml b/spss/server/distribution/pom.xml
new file mode 100644
index 000000000..bf31f7128
--- /dev/null
+++ b/spss/server/distribution/pom.xml
@@ -0,0 +1,111 @@
+<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</groupId>
+ <artifactId>server.distribution</artifactId>
+ <packaging>pom</packaging>
+ <version>1.4.0</version>
+ <name>SPSS-Server-Distribution</name>
+
+ <properties>
+ <thirdPartyLib>${basedir}/../../../buildhelper</thirdPartyLib>
+ </properties>
+
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <configuration>
+ <descriptors>
+ <descriptor>./assembly.xml</descriptor>
+ </descriptors>
+ </configuration>
+ <executions>
+ <execution>
+ <id>make-dist-standalone</id>
+ <phase>package</phase>
+ <goals>
+ <goal>attached</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <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_ecc</artifactId>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>iaik.prod</groupId>
+ <artifactId>iaik_jce_full</artifactId>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>iaik.prod</groupId>
+ <artifactId>iaik_Pkcs11Provider</artifactId>
+ <scope>runtime</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>iaik.prod</groupId>
+ <artifactId>iaik_ecc</artifactId>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>iaik.prod</groupId>
+ <artifactId>iaik_jce_full</artifactId>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>iaik.prod</groupId>
+ <artifactId>iaik_Pkcs11Provider</artifactId>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>iaik.win32</groupId>
+ <artifactId>Pkcs11Wrapper</artifactId>
+ <type>dll</type>
+ <version>1.0</version>
+ <scope>runtime</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>jsse</groupId>
+ <artifactId>jcert</artifactId>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>jsse</groupId>
+ <artifactId>jnet</artifactId>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>jsse</groupId>
+ <artifactId>jsse</artifactId>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+</project> \ No newline at end of file
diff --git a/spss/server/pom.xml b/spss/server/pom.xml
new file mode 100644
index 000000000..0b71ea208
--- /dev/null
+++ b/spss/server/pom.xml
@@ -0,0 +1,26 @@
+<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</groupId>
+ <artifactId>spss</artifactId>
+ <version>1.4.0</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>MOA.spss</groupId>
+ <artifactId>server</artifactId>
+ <packaging>pom</packaging>
+ <version>1.4.0</version>
+ <name>MOA spss Server</name>
+
+ <properties>
+ <thirdPartyLib>${basedir}/../../buildhelper</thirdPartyLib>
+ </properties>
+
+ <modules>
+ <module>serverlib</module>
+ <module>serverws</module>
+ <module>distribution</module>
+ </modules>
+
+</project> \ No newline at end of file
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>
diff --git a/spss/server/serverws/assembly.xml b/spss/server/serverws/assembly.xml
new file mode 100644
index 000000000..a28fbfecf
--- /dev/null
+++ b/spss/server/serverws/assembly.xml
@@ -0,0 +1,71 @@
+<assembly>
+ <id>ws</id>
+ <formats>
+ <format>war</format>
+ </formats>
+
+ <includeBaseDirectory>false</includeBaseDirectory>
+
+ <files>
+ <file>
+ <source>${basedir}/resources/wsdl/MOA-SPSS-1.3.xsd</source>
+ <outputDirectory>/resources/schemas</outputDirectory>
+ </file>
+ </files>
+
+ <fileSets>
+ <fileSet>
+ <directory>${basedir}/../../handbook/conf/moa-spss</directory>
+ <outputDirectory>/WEB-INF/conf/moa-spss</outputDirectory>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/src/main/webapp/WEB-INF</directory>
+ <outputDirectory>/WEB-INF</outputDirectory>
+ </fileSet>
+
+ <fileSet>
+ <directory>additional/licenses</directory>
+ <outputDirectory>/dist/ws/licenses</outputDirectory>
+ </fileSet>
+
+ <fileSet>
+ <directory>${basedir}/../../../common/target</directory>
+ <outputDirectory>/WEB-INF/lib</outputDirectory>
+ <includes>
+ <include>**/*.jar</include>
+ </includes>
+ </fileSet>
+
+ </fileSets>
+
+ <dependencySets>
+ <dependencySet>
+ <includes>
+ <include>axis:axis</include>
+ <include>commons-discovery:commons-discovery</include>
+ <include>commons-logging:commons-logging</include>
+ <include>iaik.prod:iaik_cms</include>
+ <include>iaik.prod:iaik_ixsil</include>
+ <include>iaik.prod:iaik_moa_full</include>
+ <include>iaik.prod:iaik_Pkcs11Wrapper</include>
+ <include>jaxen:jaxen-core</include>
+ <include>jaxen:jaxen-dom</include>
+ <include>jaxp:dom</include>
+ <include>jaxp:jaxp-api</include>
+ <include>javaext:jaxrpc</include>
+ <include>log4j:log4j</include>
+ <include>postgresql:postgresql</include>
+ <include>saaj:saaj</include>
+ <include>sax:sax</include>
+ <include>saxpath:saxpath</include>
+ <include>wsdl4j:wsdl4j</include>
+ <include>xalan:xalan</include>
+ <include>xerces:xercesImpl</include>
+ <include>xerces:xmlParserAPIs</include>
+ <include>MOA.spss.server:serverlib</include>
+ </includes>
+ <outputDirectory>/WEB-INF/lib</outputDirectory>
+ </dependencySet>
+ </dependencySets>
+
+ </assembly> \ No newline at end of file
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>