diff options
-rw-r--r-- | id/oa/pom.xml | 27 | ||||
-rw-r--r-- | id/pom.xml | 22 | ||||
-rw-r--r-- | id/server/auth/assembly-war.xml | 94 | ||||
-rw-r--r-- | id/server/auth/assembly.xml | 7 | ||||
-rw-r--r-- | id/server/auth/pom.xml | 144 | ||||
-rw-r--r-- | id/server/distribution/assembly-auth.xml | 86 | ||||
-rw-r--r-- | id/server/distribution/assembly-proxy.xml | 89 | ||||
-rw-r--r-- | id/server/distribution/pom.xml | 115 | ||||
-rw-r--r-- | id/server/idserverlib/pom.xml | 164 | ||||
-rw-r--r-- | id/server/pom.xml | 134 | ||||
-rw-r--r-- | id/server/proxy/assembly-war.xml | 85 | ||||
-rw-r--r-- | id/server/proxy/pom.xml | 136 | ||||
-rw-r--r-- | id/templates/pom.xml | 13 |
13 files changed, 1116 insertions, 0 deletions
diff --git a/id/oa/pom.xml b/id/oa/pom.xml new file mode 100644 index 000000000..fec2e709b --- /dev/null +++ b/id/oa/pom.xml @@ -0,0 +1,27 @@ +<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>oa</artifactId> + <packaging>war</packaging> + <version>1.4.0</version> + <name>MOA Sample OA</name> + + <build> + <finalName>oa</finalName> + <plugins> + <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> + <source>1.3</source> + <target>1.3</target> + </configuration> + </plugin> + </plugins> + </build> +</project> diff --git a/id/pom.xml b/id/pom.xml new file mode 100644 index 000000000..e8e58a667 --- /dev/null +++ b/id/pom.xml @@ -0,0 +1,22 @@ +<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>id</artifactId>
+ <packaging>pom</packaging>
+ <version>1.4.0</version>
+ <name>MOA Id</name>
+
+ <modules>
+ <module>oa</module>
+ <module>templates</module>
+ <module>server</module>
+ </modules>
+
+</project>
\ No newline at end of file diff --git a/id/server/auth/assembly-war.xml b/id/server/auth/assembly-war.xml new file mode 100644 index 000000000..15f10f4cb --- /dev/null +++ b/id/server/auth/assembly-war.xml @@ -0,0 +1,94 @@ +<assembly>
+ <id>web</id>
+
+ <formats>
+ <format>war</format>
+ </formats>
+
+ <includeBaseDirectory>false</includeBaseDirectory>
+
+ <fileSets>
+ <fileSet>
+ <directory>${basedir}/src/main/webapp</directory>
+ <outputDirectory>/</outputDirectory>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/../idserverlib/target/classes</directory>
+ <outputDirectory>WEB-INF/classes</outputDirectory>
+ <excludes>
+ <exclude>**/proxy/**</exclude>
+ </excludes>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/src/main/webapp</directory>
+ <outputDirectory>/</outputDirectory>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/../resources/wsdl</directory>
+ <outputDirectory>resources/schema</outputDirectory>
+ <excludes>
+ <exclude>**/*.wsdl</exclude>
+ </excludes>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/../../../common/target</directory>
+ <outputDirectory>WEB-INF/lib</outputDirectory>
+ <includes>
+ <include>**/*.jar</include>
+ </includes>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/../../../spss/server/serverlib/target</directory>
+ <outputDirectory>WEB-INF/lib</outputDirectory>
+ <includes>
+ <include>**/*.jar</include>
+ </includes>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/../resources</directory>
+ <outputDirectory>WEB-INF/classes/resources</outputDirectory>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/../services</directory>
+ <outputDirectory>WEB-INF/classes/META-INF/services</outputDirectory>
+ </fileSet>
+ </fileSets>
+
+ <dependencySets>
+ <dependencySet>
+ <includes>
+ <include>javaext:activation</include>
+ <include>axis:axis</include>
+ <include>commons-discovery:commons-discovery</include>
+ <include>commons-fileupload:commons-fileupload</include>
+ <include>commons-io:commons-io</include>
+ <include>commons-logging:commons-logging</include>
+ <include>jaxp:dom</include>
+ <include>iaik.prod:iaik_ixsil</include>
+ <include>iaik.prod:iaik_moa_full</include>
+ <include>iaik.prod:iaik_Pkcs11Wrapper</include>
+ <include>iaik.prod:iaik_X509TrustManager</include>
+ <include>jaxen:jaxen-core</include>
+ <include>jaxen:jaxen-dom</include>
+ <include>jaxp:jaxp-api</include>
+ <include>javax.xml:jaxrpc</include>
+ <include>mail:mail</include>
+ <include>saaj:saaj</include>
+ <include>jaxp:sax</include>
+ <include>jaxen:saxpath</include>
+ <include>wsdl4j:wsdl4j</include>
+ <include>regexp:regexp</include>
+ <include>log4j:log4j</include>
+ <include>postgresql:postgresql</include>
+ </includes>
+ <outputDirectory>WEB-INF/lib</outputDirectory>
+ </dependencySet>
+ <dependencySet>
+ <includes>
+ <include>iaik.win32:Pkcs11Wrapper</include>
+ </includes>
+ <outputDirectory>WEB-INF/lib/win32</outputDirectory>
+ </dependencySet>
+ </dependencySets>
+
+ </assembly>
\ No newline at end of file diff --git a/id/server/auth/assembly.xml b/id/server/auth/assembly.xml new file mode 100644 index 000000000..31709e6c5 --- /dev/null +++ b/id/server/auth/assembly.xml @@ -0,0 +1,7 @@ +<assembly>
+ <id>auth</id>
+ <formats>
+ <format>war</format>
+ </formats>
+
+ </assembly>
\ No newline at end of file diff --git a/id/server/auth/pom.xml b/id/server/auth/pom.xml new file mode 100644 index 000000000..d2adcedfc --- /dev/null +++ b/id/server/auth/pom.xml @@ -0,0 +1,144 @@ +<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.id</groupId>
+ <artifactId>server</artifactId>
+ <version>1.4.0</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>MOA.id.server</groupId>
+ <artifactId>auth</artifactId>
+ <packaging>pom</packaging>
+ <version>1.4.0</version>
+ <name>MOA Id Server Auth</name>
+
+ <dependencies>
+ <dependency>
+ <groupId>javaext</groupId>
+ <artifactId>activation</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>axis</groupId>
+ <artifactId>axis</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-discovery</groupId>
+ <artifactId>commons-discovery</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-fileupload</groupId>
+ <artifactId>commons-fileupload</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>jaxp</groupId>
+ <artifactId>dom</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>iaik.prod</groupId>
+ <artifactId>iaik_ixsil</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>iaik.prod</groupId>
+ <artifactId>iaik_moa_full</artifactId>
+ </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_X509TrustManager</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>jaxp-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>javax.xml</groupId>
+ <artifactId>jaxrpc-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>mail</groupId>
+ <artifactId>mail</artifactId>
+<!-- <version>1.5</version>-->
+ </dependency>
+ <dependency>
+ <groupId>saaj</groupId>
+ <artifactId>saaj</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>jaxp</groupId>
+ <artifactId>sax</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>jaxen</groupId>
+ <artifactId>saxpath</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>wsdl4j</groupId>
+ <artifactId>wsdl4j</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>postgresql</groupId>
+ <artifactId>postgresql</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>regexp</groupId>
+ <artifactId>regexp</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>iaik.win32</groupId>
+ <artifactId>Pkcs11Wrapper</artifactId>
+ <version>1.0</version>
+ <type>dll</type>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <configuration>
+ <descriptors>
+ <descriptor>${basedir}/assembly-war.xml</descriptor>
+ </descriptors>
+ </configuration>
+ <executions>
+ <execution>
+ <id>make-assembly</id>
+ <phase>package</phase>
+ <goals>
+ <goal>attached</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
\ No newline at end of file diff --git a/id/server/distribution/assembly-auth.xml b/id/server/distribution/assembly-auth.xml new file mode 100644 index 000000000..a732c6f64 --- /dev/null +++ b/id/server/distribution/assembly-auth.xml @@ -0,0 +1,86 @@ +<assembly>
+ <id>all-auth</id>
+
+ <formats>
+ <format>zip</format>
+ </formats>
+
+ <includeBaseDirectory>false</includeBaseDirectory>
+
+ <fileSets>
+ <fileSet>
+ <directory>${basedir}/../data/deploy</directory>
+ <outputDirectory>/auth</outputDirectory>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/../auth/target</directory>
+ <outputDirectory>/auth</outputDirectory>
+ <includes>
+ <include>**/*.war</include>
+ </includes>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/../doc</directory>
+ <outputDirectory>/auth/doc</outputDirectory>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/../../templates/target</directory>
+ <outputDirectory>/auth/templates</outputDirectory>
+ <includes>
+ <include>**/*.war</include>
+ </includes>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/../data/deploy/templates</directory>
+ <outputDirectory>/auth/templates</outputDirectory>
+ <includes>
+ <include>**/*.txt</include>
+ </includes>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/../data/deploy/tomcat</directory>
+ <outputDirectory>/auth/tomcat</outputDirectory>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/../licenses</directory>
+ <outputDirectory>/auth</outputDirectory>
+ <includes>
+ <include>APACHE-LICENSE-2.0.txt</include>
+ <include>history.txt</include>
+ <include>IAIK-LICENSE.txt</include>
+ <include>readme_1.4.0.txt</include>
+ </includes>
+ </fileSet>
+ </fileSets>
+
+ <dependencySets>
+ <dependencySet>
+ <includes>
+ <include>xalan:xalan</include>
+ <include>xerces:xercesImpl</include>
+ <include>xerces:xmlParserAPIs</include>
+ </includes>
+ <outputDirectory>/auth/endorsed</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>/auth/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>/auth/ext14</outputDirectory>
+ </dependencySet>
+ </dependencySets>
+
+</assembly>
\ No newline at end of file diff --git a/id/server/distribution/assembly-proxy.xml b/id/server/distribution/assembly-proxy.xml new file mode 100644 index 000000000..cce9dd02c --- /dev/null +++ b/id/server/distribution/assembly-proxy.xml @@ -0,0 +1,89 @@ +<assembly>
+ <id>all-proxy</id>
+
+ <formats>
+ <format>zip</format>
+ </formats>
+
+ <includeBaseDirectory>false</includeBaseDirectory>
+
+ <fileSets>
+ <fileSet>
+ <directory>${basedir}/../data/deploy</directory>
+ <outputDirectory>/proxy</outputDirectory>
+ <excludes>
+ <exclude>**/conf/moa-spss/**</exclude>
+ </excludes>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/../proxy/target</directory>
+ <outputDirectory>/proxy</outputDirectory>
+ <includes>
+ <include>**/*.war</include>
+ </includes>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/../doc</directory>
+ <outputDirectory>/proxy/doc</outputDirectory>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/../../templates/target</directory>
+ <outputDirectory>/proxy/templates</outputDirectory>
+ <includes>
+ <include>**/*.war</include>
+ </includes>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/../data/deploy/templates</directory>
+ <outputDirectory>/proxy/templates</outputDirectory>
+ <includes>
+ <include>**/*.txt</include>
+ </includes>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/../data/deploy/tomcat</directory>
+ <outputDirectory>/proxy/tomcat</outputDirectory>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/../licenses</directory>
+ <outputDirectory>/proxy</outputDirectory>
+ <includes>
+ <include>APACHE-LICENSE-2.0.txt</include>
+ <include>history.txt</include>
+ <include>IAIK-LICENSE.txt</include>
+ <include>readme_1.4.0.txt</include>
+ </includes>
+ </fileSet>
+ </fileSets>
+
+ <dependencySets>
+ <dependencySet>
+ <includes>
+ <include>xalan:xalan</include>
+ <include>xerces:xercesImpl</include>
+ <include>xerces:xmlParserAPIs</include>
+ </includes>
+ <outputDirectory>/proxy/endorsed</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>/proxy/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>/proxy/ext14</outputDirectory>
+ </dependencySet>
+ </dependencySets>
+
+</assembly>
\ No newline at end of file diff --git a/id/server/distribution/pom.xml b/id/server/distribution/pom.xml new file mode 100644 index 000000000..2bbb3923d --- /dev/null +++ b/id/server/distribution/pom.xml @@ -0,0 +1,115 @@ +<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.id</groupId>
+ <artifactId>server</artifactId>
+ <version>1.4.0</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>MOA</groupId>
+ <artifactId>id.server.distribution</artifactId>
+ <packaging>pom</packaging>
+ <version>1.4.0</version>
+ <name>ID-Server-Distribution</name>
+
+ <properties>
+ <thirdPartyLib>${basedir}/../../buildhelper</thirdPartyLib>
+ </properties>
+
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <configuration>
+ <descriptors>
+ <descriptor>./assembly-auth.xml</descriptor>
+ <descriptor>./assembly-proxy.xml</descriptor>
+<!--
+ <descriptor>./assembly-src.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/id/server/idserverlib/pom.xml b/id/server/idserverlib/pom.xml new file mode 100644 index 000000000..a10f5eead --- /dev/null +++ b/id/server/idserverlib/pom.xml @@ -0,0 +1,164 @@ +<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.id</groupId> + <artifactId>server</artifactId> + <version>1.4.0</version> + </parent> + + <modelVersion>4.0.0</modelVersion> + <groupId>MOA.id.server</groupId> + <artifactId>idserverlib</artifactId> + <packaging>jar</packaging> + <version>1.4.0</version> + <name>MOA ID Serverlibrary</name> + + <properties> + <thirdPartyLib>${basedir}/../../../buildhelper</thirdPartyLib> + </properties> + + <dependencies> + <dependency> + <groupId>javaext</groupId> + <artifactId>activation</artifactId> + </dependency> + <dependency> + <groupId>axis</groupId> + <artifactId>axis</artifactId> + <version>1.4</version> + </dependency> + <dependency> + <groupId>javax.xml</groupId> + <artifactId>jaxrpc-api</artifactId> + </dependency> + <dependency> + <groupId>mail</groupId> + <artifactId>mail</artifactId> +<!-- <version>1.5</version>--> + </dependency> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> +<!-- <version>2.3-fcs</version>--> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>saaj</groupId> + <artifactId>saaj</artifactId> + </dependency> + <dependency> + <groupId>jaxp</groupId> + <artifactId>jaxp-api</artifactId> + </dependency> + <dependency> + <groupId>jaxp</groupId> + <artifactId>dom</artifactId> + </dependency> + <dependency> + <groupId>jaxp</groupId> + <artifactId>sax</artifactId> + </dependency> + <dependency> + <groupId>xerces</groupId> + <artifactId>xercesImpl</artifactId> + </dependency> + <dependency> + <groupId>xerces</groupId> + <artifactId>xmlParserAPIs</artifactId> + </dependency> + <dependency> + <groupId>jaxen</groupId> + <artifactId>jaxen-core</artifactId> + </dependency> + <dependency> + <groupId>jaxen</groupId> + <artifactId>jaxen-dom</artifactId> + </dependency> + <dependency> + <groupId>jaxen</groupId> + <artifactId>saxpath</artifactId> + </dependency> + <dependency> + <groupId>xalan</groupId> + <artifactId>xalan</artifactId> + </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</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>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + </dependency> + <dependency> + <groupId>commons-discovery</groupId> + <artifactId>commons-discovery</artifactId> + </dependency> + <dependency> + <groupId>commons-fileupload</groupId> + <artifactId>commons-fileupload</artifactId> + </dependency> + <dependency> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + </dependency> + <dependency> + <groupId>dav4j</groupId> + <artifactId>dav4j</artifactId> + </dependency> + <dependency> + <groupId>httpsclient</groupId> + <artifactId>httpsclient</artifactId> + </dependency> + <dependency> + <groupId>MOA</groupId> + <artifactId>common</artifactId> + </dependency> + <dependency> + <groupId>MOA</groupId> + <artifactId>common-test</artifactId> + </dependency> + <dependency> + <groupId>MOA.spss.server</groupId> + <artifactId>serverlib</artifactId> + </dependency> + <dependency> + <groupId>iaik.prod</groupId> + <artifactId>iaik_moa_full</artifactId> + </dependency> + <dependency> + <groupId>iaik.prod</groupId> + <artifactId>iaik_ecc</artifactId> + </dependency> + <dependency> + <groupId>iaik.prod</groupId> + <artifactId>iaik_jce_full</artifactId> +<!-- <version>3.14</version>--> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>iaik.prod</groupId> + <artifactId>iaik_ixsil</artifactId> + </dependency> + <dependency> + <groupId>iaik.prod</groupId> + <artifactId>iaik_X509TrustManager</artifactId> + </dependency> + <dependency> + <groupId>iaik.prod</groupId> + <artifactId>iaik_ldap</artifactId> + </dependency> + </dependencies> +</project> diff --git a/id/server/pom.xml b/id/server/pom.xml new file mode 100644 index 000000000..9c49a5885 --- /dev/null +++ b/id/server/pom.xml @@ -0,0 +1,134 @@ +<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>id</artifactId>
+ <version>1.4.0</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>MOA.id</groupId>
+ <artifactId>server</artifactId>
+ <packaging>pom</packaging>
+ <version>1.4.0</version>
+ <name>MOA Id Server</name>
+
+ <modules>
+ <module>idserverlib</module>
+ <module>auth</module>
+ <module>proxy</module>
+ <module>distribution</module>
+ </modules>
+
+ <build>
+ <plugins>
+ <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>
+ <source>1.3</source> + <target>1.3</target> + </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>javaext</groupId>
+ <artifactId>activation</artifactId>
+ <version>1.0.2</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>axis</groupId>
+ <artifactId>axis</artifactId>
+ <version>1.4</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>dav4j</groupId>
+ <artifactId>dav4j</artifactId>
+ <version>0.1</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>httpsclient</groupId>
+ <artifactId>httpsclient</artifactId>
+ <version>JSSE-1.0</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>mail</groupId>
+ <artifactId>mail</artifactId>
+ <version>1.5</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>commons-fileupload</groupId>
+ <artifactId>commons-fileupload</artifactId>
+ <version>1.1.1</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ <version>1.1</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>MOA.spss.server</groupId>
+ <artifactId>serverlib</artifactId>
+ <version>1.4.0</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>postgresql</groupId>
+ <artifactId>postgresql</artifactId>
+ <version>7.3-jdbc2</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ <version>1.2.8</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>regexp</groupId>
+ <artifactId>regexp</artifactId>
+ <version>1.3</version>
+ <scope>runtime</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_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</artifactId>
+ <version>1.2.4</version>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+</project>
diff --git a/id/server/proxy/assembly-war.xml b/id/server/proxy/assembly-war.xml new file mode 100644 index 000000000..b9f84d762 --- /dev/null +++ b/id/server/proxy/assembly-war.xml @@ -0,0 +1,85 @@ +<assembly>
+ <id>web</id>
+
+ <formats>
+ <format>war</format>
+ </formats>
+
+ <includeBaseDirectory>false</includeBaseDirectory>
+
+ <fileSets>
+ <fileSet>
+ <directory>${basedir}/src/main/webapp</directory>
+ <outputDirectory>/</outputDirectory>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/../idserverlib/target/classes</directory>
+ <outputDirectory>WEB-INF/classes</outputDirectory>
+ <excludes>
+ <exclude>**/auth/**</exclude>
+ </excludes>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/src/main/webapp</directory>
+ <outputDirectory>/</outputDirectory>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/../../../common/target</directory>
+ <outputDirectory>WEB-INF/lib</outputDirectory>
+ <includes>
+ <include>**/*.jar</include>
+ </includes>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/../../../spss/server/serverlib/target</directory>
+ <outputDirectory>WEB-INF/lib</outputDirectory>
+ <includes>
+ <include>**/*.jar</include>
+ </includes>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/../resources</directory>
+ <outputDirectory>WEB-INF/classes/resources</outputDirectory>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/../services</directory>
+ <outputDirectory>WEB-INF/classes/META-INF/services</outputDirectory>
+ </fileSet>
+ </fileSets>
+
+ <dependencySets>
+ <dependencySet>
+ <includes>
+ <include>javaext:activation</include>
+ <include>axis:axis</include>
+ <include>commons-discovery:commons-discovery</include>
+ <include>commons-logging:commons-logging</include>
+ <include>jaxp:dom</include>
+ <include>iaik.prod:iaik_ixsil</include>
+ <include>iaik.prod:iaik_moa_full</include>
+ <include>iaik.prod:iaik_Pkcs11Wrapper</include>
+ <include>iaik.prod:iaik_X509TrustManager</include>
+ <include>jaxen:jaxen-core</include>
+ <include>jaxen:jaxen-dom</include>
+ <include>jaxp:jaxp-api</include>
+ <include>javax.xml:jaxrpc</include>
+ <include>mail:mail</include>
+ <include>saaj:saaj</include>
+ <include>jaxp:sax</include>
+ <include>jaxen:saxpath</include>
+ <include>wsdl4j:wsdl4j</include>
+ <include>regexp:regexp</include>
+ <include>log4j:log4j</include>
+ <include>postgresql:postgresql</include>
+ </includes>
+ <outputDirectory>WEB-INF/lib</outputDirectory>
+ </dependencySet>
+ <dependencySet>
+ <includes>
+ <include>iaik.win32:Pkcs11Wrapper</include>
+ </includes>
+ <outputDirectory>WEB-INF/lib/win32</outputDirectory>
+ </dependencySet>
+ </dependencySets>
+
+ </assembly>
\ No newline at end of file diff --git a/id/server/proxy/pom.xml b/id/server/proxy/pom.xml new file mode 100644 index 000000000..0ca85d599 --- /dev/null +++ b/id/server/proxy/pom.xml @@ -0,0 +1,136 @@ +<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.id</groupId>
+ <artifactId>server</artifactId>
+ <version>1.4.0</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>MOA.id.server</groupId>
+ <artifactId>proxy</artifactId>
+ <packaging>pom</packaging>
+ <version>1.4.0</version>
+ <name>MOA Id Server Proxy</name>
+
+ <dependencies>
+ <dependency>
+ <groupId>javaext</groupId>
+ <artifactId>activation</artifactId>
+ </dependency>
+ <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>jaxp</groupId>
+ <artifactId>dom</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>iaik.prod</groupId>
+ <artifactId>iaik_ixsil</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>iaik.prod</groupId>
+ <artifactId>iaik_moa_full</artifactId>
+ </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_X509TrustManager</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>jaxp-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>javax.xml</groupId>
+ <artifactId>jaxrpc-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>mail</groupId>
+ <artifactId>mail</artifactId>
+<!-- <version>1.5</version>-->
+ </dependency>
+ <dependency>
+ <groupId>saaj</groupId>
+ <artifactId>saaj</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>jaxp</groupId>
+ <artifactId>sax</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>jaxen</groupId>
+ <artifactId>saxpath</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>wsdl4j</groupId>
+ <artifactId>wsdl4j</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>postgresql</groupId>
+ <artifactId>postgresql</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>regexp</groupId>
+ <artifactId>regexp</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>iaik.win32</groupId>
+ <artifactId>Pkcs11Wrapper</artifactId>
+ <version>1.0</version>
+ <type>dll</type>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <configuration>
+ <descriptors>
+ <descriptor>${basedir}/assembly-war.xml</descriptor>
+ </descriptors>
+ </configuration>
+ <executions>
+ <execution>
+ <id>make-assembly</id>
+ <phase>package</phase>
+ <goals>
+ <goal>attached</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
\ No newline at end of file diff --git a/id/templates/pom.xml b/id/templates/pom.xml new file mode 100644 index 000000000..b17eba962 --- /dev/null +++ b/id/templates/pom.xml @@ -0,0 +1,13 @@ +<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>templates</artifactId> + <packaging>war</packaging> + <version>1.4.0</version> + <name>MOA Sample Templates</name> + + <build> + <finalName>moaid-templates</finalName> + </build> +</project> |