aboutsummaryrefslogtreecommitdiff
path: root/spss/server/distribution
diff options
context:
space:
mode:
Diffstat (limited to 'spss/server/distribution')
-rw-r--r--spss/server/distribution/assembly.xml92
-rw-r--r--spss/server/distribution/pom.xml111
2 files changed, 0 insertions, 203 deletions
diff --git a/spss/server/distribution/assembly.xml b/spss/server/distribution/assembly.xml
deleted file mode 100644
index b646f58b2..000000000
--- a/spss/server/distribution/assembly.xml
+++ /dev/null
@@ -1,92 +0,0 @@
-<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
deleted file mode 100644
index bf31f7128..000000000
--- a/spss/server/distribution/pom.xml
+++ /dev/null
@@ -1,111 +0,0 @@
-<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