diff options
32 files changed, 731 insertions, 615 deletions
| diff --git a/MOA.iml b/MOA.iml deleted file mode 100644 index c418d6693..000000000 --- a/MOA.iml +++ /dev/null @@ -1,13 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4"> -  <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_5" inherit-compiler-output="false"> -    <output url="file://$MODULE_DIR$/target/classes" /> -    <output-test url="file://$MODULE_DIR$/target/test-classes" /> -    <content url="file://$MODULE_DIR$"> -      <excludeFolder url="file://$MODULE_DIR$/target" /> -    </content> -    <orderEntry type="inheritedJdk" /> -    <orderEntry type="sourceFolder" forTests="false" /> -  </component> -</module> - diff --git a/common/moa-common.iml b/common/moa-common.iml deleted file mode 100644 index 9d4261fc6..000000000 --- a/common/moa-common.iml +++ /dev/null @@ -1,29 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4"> -  <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_5" inherit-compiler-output="false"> -    <output url="file://$MODULE_DIR$/target/classes" /> -    <output-test url="file://$MODULE_DIR$/target/test-classes" /> -    <content url="file://$MODULE_DIR$"> -      <sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" /> -      <sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" /> -      <sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" /> -      <excludeFolder url="file://$MODULE_DIR$/target" /> -    </content> -    <orderEntry type="inheritedJdk" /> -    <orderEntry type="sourceFolder" forTests="false" /> -    <orderEntry type="library" name="Maven: commons-logging:commons-logging:1.0.4" level="project" /> -    <orderEntry type="library" name="Maven: iaik.prod:iaik_jce_full:5.101" level="project" /> -    <orderEntry type="library" name="Maven: iaik.prod:iaik_moa:1.5" level="project" /> -    <orderEntry type="library" scope="TEST" name="Maven: junit:junit:3.8.1" level="project" /> -    <orderEntry type="library" name="Maven: jaxen:jaxen:1.0-FCS" level="project" /> -    <orderEntry type="library" name="Maven: saxpath:saxpath:1.0-FCS" level="project" /> -    <orderEntry type="library" name="Maven: xalan-bin-dist:xalan:2.7.1" level="project" /> -    <orderEntry type="library" name="Maven: xalan:serializer:2.7.1" level="project" /> -    <orderEntry type="library" name="Maven: xml-apis:xml-apis:1.3.04" level="project" /> -    <orderEntry type="library" name="Maven: xerces:xercesImpl:2.9.0" level="project" /> -    <orderEntry type="library" name="Maven: xalan-bin-dist:xml-apis:2.7.1" level="project" /> -    <orderEntry type="library" scope="RUNTIME" name="Maven: xalan-bin-dist:serializer:2.7.1" level="project" /> -    <orderEntry type="library" name="Maven: joda-time:joda-time:1.6.2" level="project" /> -  </component> -</module> - diff --git a/common/pom.xml b/common/pom.xml index 468ecaf2d..46f26501f 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -1,94 +1,148 @@ -<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>2.0.0</version> -  </parent> -  <modelVersion>4.0.0</modelVersion> -  <artifactId>moa-common</artifactId> -  <!-- <version>2.0.0</version> --> -  <packaging>jar</packaging> -  <name>MOA common library</name> +<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>2.0.0</version> +    </parent> +    <modelVersion>4.0.0</modelVersion> +    <artifactId>moa-common</artifactId> +    <!-- <version>2.0.0</version> --> +    <packaging>jar</packaging> +    <name>MOA common library</name> -  <properties> -    <repositoryPath>${basedir}/../repository</repositoryPath> -  </properties> +    <properties> +        <repositoryPath>${basedir}/../repository</repositoryPath> +    </properties> + +    <dependencies> +        <dependency> +            <groupId>commons-logging</groupId> +            <artifactId>commons-logging</artifactId> +        </dependency> +        <dependency> +            <groupId>iaik.prod</groupId> +            <artifactId>iaik_jce_full</artifactId> +        </dependency> +        <dependency> +            <groupId>iaik.prod</groupId> +            <artifactId>iaik_moa</artifactId> +        </dependency> +        <dependency> +            <groupId>junit</groupId> +            <artifactId>junit</artifactId> +            <scope>test</scope> +        </dependency> +        <dependency> +            <groupId>jaxen</groupId> +            <artifactId>jaxen</artifactId> +        </dependency> +        <dependency> +            <groupId>saxpath</groupId> +            <artifactId>saxpath</artifactId> +        </dependency> +        <dependency> +            <groupId>xalan-bin-dist</groupId> +            <artifactId>xalan</artifactId> +            <scope>compile</scope> +            <optional>true</optional> +        </dependency> +        <dependency> +            <groupId>xerces</groupId> +            <artifactId>xercesImpl</artifactId> +            <optional>true</optional> +        </dependency> +        <dependency> +            <groupId>xalan-bin-dist</groupId> +            <artifactId>xml-apis</artifactId> +            <scope>compile</scope> +            <optional>true</optional> +        </dependency> +        <dependency> +            <groupId>xalan-bin-dist</groupId> +            <artifactId>serializer</artifactId> +            <scope>runtime</scope> +            <optional>true</optional> +        </dependency> +        <dependency> +            <groupId>joda-time</groupId> +            <artifactId>joda-time</artifactId> +            <version>1.6.2</version> +        </dependency> +        <dependency> +            <groupId>org.slf4j</groupId> +            <artifactId>slf4j-api</artifactId> +            <version>1.7.5</version> +        </dependency> +        <dependency> +            <groupId>org.slf4j</groupId> +            <artifactId>slf4j-simple</artifactId> +            <version>1.7.5</version> +        </dependency> +        <dependency> +            <groupId>org.slf4j</groupId> +            <artifactId>jcl-over-slf4j</artifactId> +            <version>1.7.5</version> +        </dependency> +        <dependency> +            <groupId>org.slf4j</groupId> +            <artifactId>log4j-over-slf4j</artifactId> +            <version>1.7.5</version> +        </dependency> +        <dependency> +            <groupId>org.slf4j</groupId> +            <artifactId>jul-to-slf4j</artifactId> +            <version>1.7.5</version> +        </dependency> +    </dependencies> + +    <build> +        <plugins> +            <plugin> +                <groupId>org.apache.maven.plugins</groupId> +                <artifactId>maven-jar-plugin</artifactId> +                <configuration> +                    <archive> +                        <addMavenDescriptor>false</addMavenDescriptor> +                    </archive> +                </configuration> +                <executions> +                    <execution> +                        <goals> +                            <goal>test-jar</goal> +                        </goals> +                    </execution> +                </executions> +            </plugin> +            <plugin> +                <artifactId>maven-enforcer-plugin</artifactId> +                <version>1.1.1</version> +                <executions> +                    <execution> +                        <id>enforce-banned-dependencies</id> +                        <goals> +                            <goal>enforce</goal> +                        </goals> +                        <configuration> +                            <rules> +                                <bannedDependencies> +                                    <searchTransitive>true</searchTransitive> +                                    <excludes> +                                        <!-- <exclude>commons-logging</exclude> --> +                                        <exclude>org.slf4j:1.5*</exclude> +                                        <exclude>org.slf4j:1.6*</exclude> +                                        <!--   <exclude>org.springframework:2.*</exclude> +                                           <exclude>org.springframework:3.0.*</exclude>     --> +                                    </excludes> +                                </bannedDependencies> +                            </rules> +                            <fail>true</fail> +                        </configuration> +                    </execution> +                </executions> +            </plugin> +        </plugins> +    </build> -  <dependencies> -    <dependency> -      <groupId>commons-logging</groupId> -      <artifactId>commons-logging</artifactId> -    </dependency> -    <dependency> -      <groupId>iaik.prod</groupId> -      <artifactId>iaik_jce_full</artifactId> -    </dependency> -    <dependency> -      <groupId>iaik.prod</groupId> -      <artifactId>iaik_moa</artifactId> -    </dependency> -    <dependency> -      <groupId>junit</groupId> -      <artifactId>junit</artifactId> -      <scope>test</scope> -    </dependency> -    <dependency> -      <groupId>jaxen</groupId> -      <artifactId>jaxen</artifactId> -    </dependency> -    <dependency> -      <groupId>saxpath</groupId> -      <artifactId>saxpath</artifactId> -    </dependency> -    <dependency> -      <groupId>xalan-bin-dist</groupId> -      <artifactId>xalan</artifactId> -      <scope>compile</scope> -      <optional>true</optional> -    </dependency> -    <dependency> -      <groupId>xerces</groupId> -      <artifactId>xercesImpl</artifactId> -      <optional>true</optional> -    </dependency> -    <dependency> -      <groupId>xalan-bin-dist</groupId> -      <artifactId>xml-apis</artifactId> -      <scope>compile</scope> -      <optional>true</optional> -    </dependency> -    <dependency> -      <groupId>xalan-bin-dist</groupId> -      <artifactId>serializer</artifactId> -      <scope>runtime</scope> -      <optional>true</optional> -    </dependency> -    <dependency> -    	  <groupId>joda-time</groupId> -	      <artifactId>joda-time</artifactId> -	      <version>1.6.2</version> -    	</dependency>    -    	 -  </dependencies> -  <build> -    <plugins> -      <plugin> -        <groupId>org.apache.maven.plugins</groupId> -        <artifactId>maven-jar-plugin</artifactId> -        <configuration> -          <archive> -            <addMavenDescriptor>false</addMavenDescriptor> -          </archive> -        </configuration> -        <executions> -          <execution> -            <goals> -              <goal>test-jar</goal> -            </goals> -          </execution> -        </executions> -      </plugin> -    </plugins> -  </build>      </project> diff --git a/id/ConfigWebTool/ConfigurationInterface.iml b/id/ConfigWebTool/ConfigurationInterface.iml index 20f45337e..742f8df89 100644 --- a/id/ConfigWebTool/ConfigurationInterface.iml +++ b/id/ConfigWebTool/ConfigurationInterface.iml @@ -58,6 +58,11 @@      <orderEntry type="library" name="Maven: jaxen:jaxen:1.0-FCS" level="project" />      <orderEntry type="library" name="Maven: saxpath:saxpath:1.0-FCS" level="project" />      <orderEntry type="library" name="Maven: joda-time:joda-time:2.2" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:slf4j-api:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:slf4j-simple:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:jcl-over-slf4j:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:log4j-over-slf4j:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:jul-to-slf4j:1.7.5" level="project" />      <orderEntry type="library" name="Maven: org.jvnet.hyperjaxb3:hyperjaxb3-ejb-runtime:0.5.6" level="project" />      <orderEntry type="library" name="Maven: commons-lang:commons-lang:2.6" level="project" />      <orderEntry type="library" name="Maven: org.jvnet.jaxb2_commons:jaxb2-basics-runtime:0.6.2" level="project" /> @@ -73,8 +78,6 @@      <orderEntry type="library" name="Maven: org.jvnet.jaxb2_commons:jaxb2-basics-testing:0.6.2" level="project" />      <orderEntry type="library" name="Maven: xmlunit:xmlunit:1.0" level="project" />      <orderEntry type="library" name="Maven: commons-io:commons-io:2.0.1" level="project" /> -    <orderEntry type="library" name="Maven: org.slf4j:slf4j-log4j12:1.6.1" level="project" /> -    <orderEntry type="library" name="Maven: org.slf4j:slf4j-api:1.6.1" level="project" />      <orderEntry type="library" name="Maven: org.jvnet.hyperjaxb3:hyperjaxb3-ejb-schemas-persistence:0.5.6" level="project" />      <orderEntry type="library" name="Maven: org.jvnet.hyperjaxb3:hyperjaxb3-ejb-schemas-customizations:0.5.6" level="project" />      <orderEntry type="library" name="Maven: org.springframework:spring:2.0.7" level="project" /> @@ -121,29 +124,15 @@      <orderEntry type="library" name="Maven: org.apache.velocity:velocity:1.7" level="project" />      <orderEntry type="library" name="Maven: org.owasp.esapi:esapi:2.0.1" level="project" />      <orderEntry type="library" name="Maven: org.bouncycastle:bcprov-jdk16:1.46" level="project" /> -    <orderEntry type="library" name="Maven: org.slf4j:slf4j-simple:1.7.5" level="project" /> -    <orderEntry type="library" name="Maven: org.slf4j:jcl-over-slf4j:1.7.5" level="project" /> -    <orderEntry type="library" name="Maven: org.slf4j:log4j-over-slf4j:1.7.5" level="project" /> -    <orderEntry type="library" name="Maven: org.slf4j:jul-to-slf4j:1.7.5" level="project" />      <orderEntry type="library" name="Maven: eu.stork:oasis-dss-api:1.0.0-SNAPSHOT" level="project" /> -    <orderEntry type="library" name="Maven: com.sun.xml.ws:jaxws-rt:2.1.7" level="project" /> -    <orderEntry type="library" name="Maven: javax.xml.ws:jaxws-api:2.1" level="project" /> -    <orderEntry type="library" name="Maven: javax.xml.bind:jaxb-api:2.2.6" level="project" /> -    <orderEntry type="library" name="Maven: com.sun.xml.messaging.saaj:saaj-impl:1.3.3" level="project" /> -    <orderEntry type="library" name="Maven: javax.xml.soap:saaj-api:1.3" level="project" /> -    <orderEntry type="library" name="Maven: javax.activation:activation:1.1" level="project" /> -    <orderEntry type="library" name="Maven: com.sun.xml.stream.buffer:streambuffer:0.9" level="project" /> -    <orderEntry type="library" name="Maven: org.jvnet.staxex:stax-ex:1.2" level="project" /> -    <orderEntry type="library" name="Maven: javax.xml.stream:stax-api:1.0" level="project" /> -    <orderEntry type="library" name="Maven: org.codehaus.woodstox:wstx-asl:3.2.3" level="project" /> -    <orderEntry type="library" name="Maven: stax:stax-api:1.0.1" level="project" /> -    <orderEntry type="library" name="Maven: org.jvnet:mimepull:1.3" level="project" /> +    <orderEntry type="library" name="Maven: eu.medsea.mimeutil:mime-util:2.1.3" level="project" />      <orderEntry type="module" module-name="moa-spss-lib" />      <orderEntry type="library" name="Maven: axis:axis:1.0_IAIK" level="project" />      <orderEntry type="library" name="Maven: org.apache.axis:axis-jaxrpc:1.4" level="project" />      <orderEntry type="library" name="Maven: org.apache.axis:axis-saaj:1.4" level="project" />      <orderEntry type="library" name="Maven: axis:axis-wsdl4j:1.5.1" level="project" />      <orderEntry type="library" name="Maven: commons-discovery:commons-discovery:0.2" level="project" /> +    <orderEntry type="library" name="Maven: javax.activation:activation:1.1" level="project" />      <orderEntry type="library" name="Maven: javax.mail:mail:1.4" level="project" />      <orderEntry type="library" scope="RUNTIME" name="Maven: postgresql:postgresql:7.2" level="project" />      <orderEntry type="library" name="Maven: xalan-bin-dist:xalan:2.7.1" level="project" /> @@ -168,6 +157,8 @@      <orderEntry type="library" name="Maven: iaik:iaik_ssl:4.4" level="project" />      <orderEntry type="library" name="Maven: iaik:w3c_http:1.0" level="project" />      <orderEntry type="library" name="Maven: org.xerial:sqlite-jdbc:3.7.8-SNAPSHOT" level="project" /> +    <orderEntry type="library" name="Maven: stax:stax-api:1.0.1" level="project" /> +    <orderEntry type="library" name="Maven: javax.xml.bind:jaxb-api:2.2.6" level="project" />      <orderEntry type="library" name="Maven: iaik.prod:iaik_util:0.23" level="project" />      <orderEntry type="library" name="Maven: iaik.prod:iaik_xsect:1.1709142" level="project" />      <orderEntry type="library" name="Maven: iaik.prod:iaik_jsse:4.4" level="project" /> @@ -186,6 +177,7 @@      <orderEntry type="library" name="Maven: commons-validator:commons-validator:1.3.1" level="project" />      <orderEntry type="library" name="Maven: commons-digester:commons-digester:1.6" level="project" />      <orderEntry type="library" name="Maven: bouncycastle:bcprov-jdk16:140" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:slf4j-log4j12:1.6.1" level="project" />      <orderEntry type="library" name="Maven: org.apache.struts:struts2-core:2.3.14.3" level="project" />      <orderEntry type="library" name="Maven: org.apache.struts.xwork:xwork-core:2.3.14.3" level="project" />      <orderEntry type="library" name="Maven: ognl:ognl:3.0.6" level="project" /> diff --git a/id/id.iml b/id/id.iml deleted file mode 100644 index c418d6693..000000000 --- a/id/id.iml +++ /dev/null @@ -1,13 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4"> -  <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_5" inherit-compiler-output="false"> -    <output url="file://$MODULE_DIR$/target/classes" /> -    <output-test url="file://$MODULE_DIR$/target/test-classes" /> -    <content url="file://$MODULE_DIR$"> -      <excludeFolder url="file://$MODULE_DIR$/target" /> -    </content> -    <orderEntry type="inheritedJdk" /> -    <orderEntry type="sourceFolder" forTests="false" /> -  </component> -</module> - diff --git a/id/oa/moa-id-oa.iml b/id/oa/moa-id-oa.iml deleted file mode 100644 index 6d9905e25..000000000 --- a/id/oa/moa-id-oa.iml +++ /dev/null @@ -1,61 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4"> -  <component name="FacetManager"> -    <facet type="web" name="Web"> -      <configuration> -        <descriptors> -          <deploymentDescriptor name="web.xml" url="file://$MODULE_DIR$/src/main/webapp/WEB-INF/web.xml" /> -        </descriptors> -        <webroots> -          <root url="file://$MODULE_DIR$/src/main/webapp" relative="/" /> -        </webroots> -      </configuration> -    </facet> -  </component> -  <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_5" inherit-compiler-output="false"> -    <output url="file://$MODULE_DIR$/../target/classes" /> -    <output-test url="file://$MODULE_DIR$/../target/test-classes" /> -    <content url="file://$MODULE_DIR$"> -      <sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" /> -      <sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" /> -      <excludeFolder url="file://$MODULE_DIR$/target" /> -    </content> -    <orderEntry type="inheritedJdk" /> -    <orderEntry type="sourceFolder" forTests="false" /> -    <orderEntry type="library" scope="PROVIDED" name="Maven: javax.servlet:jstl:1.2" level="project" /> -    <orderEntry type="library" scope="PROVIDED" name="Maven: javax.servlet:servlet-api:2.4" level="project" /> -    <orderEntry type="library" name="Maven: org.opensaml:opensaml:2.6.0" level="project" /> -    <orderEntry type="library" name="Maven: org.opensaml:openws:1.5.0" level="project" /> -    <orderEntry type="library" name="Maven: org.opensaml:xmltooling:1.4.0" level="project" /> -    <orderEntry type="library" name="Maven: org.bouncycastle:bcprov-jdk15:1.46" level="project" /> -    <orderEntry type="library" name="Maven: commons-codec:commons-codec:1.7" level="project" /> -    <orderEntry type="library" name="Maven: joda-time:joda-time:2.2" level="project" /> -    <orderEntry type="library" name="Maven: ca.juliusdavies:not-yet-commons-ssl:0.3.9" level="project" /> -    <orderEntry type="library" name="Maven: commons-httpclient:commons-httpclient:3.1" level="project" /> -    <orderEntry type="library" name="Maven: org.apache.santuario:xmlsec:1.5.4" level="project" /> -    <orderEntry type="library" scope="RUNTIME" name="Maven: org.apache.xerces:xml-apis:2.10.0" level="project" /> -    <orderEntry type="library" scope="RUNTIME" name="Maven: org.apache.xerces:xercesImpl:2.10.0" level="project" /> -    <orderEntry type="library" scope="RUNTIME" name="Maven: org.apache.xerces:serializer:2.10.0" level="project" /> -    <orderEntry type="library" scope="RUNTIME" name="Maven: xml-resolver:xml-resolver:1.2" level="project" /> -    <orderEntry type="library" scope="RUNTIME" name="Maven: xalan:xalan:2.7.1" level="project" /> -    <orderEntry type="library" name="Maven: org.slf4j:jcl-over-slf4j:1.7.5" level="project" /> -    <orderEntry type="library" name="Maven: org.slf4j:slf4j-api:1.7.5" level="project" /> -    <orderEntry type="library" name="Maven: org.slf4j:jul-to-slf4j:1.7.5" level="project" /> -    <orderEntry type="library" name="Maven: org.slf4j:log4j-over-slf4j:1.7.5" level="project" /> -    <orderEntry type="library" name="Maven: commons-collections:commons-collections:3.2.1" level="project" /> -    <orderEntry type="library" name="Maven: commons-lang:commons-lang:2.6" level="project" /> -    <orderEntry type="library" name="Maven: org.apache.velocity:velocity:1.7" level="project" /> -    <orderEntry type="library" name="Maven: org.owasp.esapi:esapi:2.0.1" level="project" /> -    <orderEntry type="library" name="Maven: jstl:jstl:1.2" level="project" /> -    <orderEntry type="library" name="Maven: org.slf4j:slf4j-simple:1.7.5" level="project" /> -    <orderEntry type="library" name="Maven: iaik:commons-iaik:0.7.1" level="project" /> -    <orderEntry type="library" name="Maven: log4j:log4j:1.2.14" level="project" /> -    <orderEntry type="module" module-name="moa-common" /> -    <orderEntry type="library" name="Maven: commons-logging:commons-logging:1.0.4" level="project" /> -    <orderEntry type="library" name="Maven: iaik.prod:iaik_jce_full:5.101" level="project" /> -    <orderEntry type="library" name="Maven: iaik.prod:iaik_moa:1.5" level="project" /> -    <orderEntry type="library" name="Maven: jaxen:jaxen:1.0-FCS" level="project" /> -    <orderEntry type="library" name="Maven: saxpath:saxpath:1.0-FCS" level="project" /> -  </component> -</module> - diff --git a/id/pom.xml b/id/pom.xml index db4ee137e..bd3344638 100644 --- a/id/pom.xml +++ b/id/pom.xml @@ -24,4 +24,36 @@          <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>      </properties> +    <build> +        <plugins> +            <plugin> +                <artifactId>maven-enforcer-plugin</artifactId> +                <version>1.1.1</version> +                <executions> +                    <execution> +                        <id>enforce-banned-dependencies</id> +                        <goals> +                            <goal>enforce</goal> +                        </goals> +                        <configuration> +                            <rules> +                                <bannedDependencies> +                                    <searchTransitive>true</searchTransitive> +                                    <excludes> +                                        <!-- <exclude>commons-logging</exclude> --> +                                        <exclude>org.slf4j:1.5*</exclude> +                                        <exclude>org.slf4j:1.6*</exclude> +                                        <!--   <exclude>org.springframework:2.*</exclude> +                                           <exclude>org.springframework:3.0.*</exclude>     --> +                                    </excludes> +                                </bannedDependencies> +                            </rules> +                            <fail>true</fail> +                        </configuration> +                    </execution> +                </executions> +            </plugin> +        </plugins> +    </build> +  </project> diff --git a/id/server/auth/moa-id-auth.iml b/id/server/auth/moa-id-auth.iml index f61dfa171..043374bc0 100644 --- a/id/server/auth/moa-id-auth.iml +++ b/id/server/auth/moa-id-auth.iml @@ -14,8 +14,8 @@      </facet>    </component>    <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_5" inherit-compiler-output="false"> -    <output url="file://$MODULE_DIR$/../../target/classes" /> -    <output-test url="file://$MODULE_DIR$/../../target/test-classes" /> +    <output url="file://$MODULE_DIR$/target/classes" /> +    <output-test url="file://$MODULE_DIR$/target/test-classes" />      <content url="file://$MODULE_DIR$">        <sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" />        <excludeFolder url="file://$MODULE_DIR$/target" /> @@ -53,6 +53,11 @@      <orderEntry type="library" name="Maven: jaxen:jaxen:1.0-FCS" level="project" />      <orderEntry type="library" name="Maven: saxpath:saxpath:1.0-FCS" level="project" />      <orderEntry type="library" name="Maven: joda-time:joda-time:1.6.2" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:slf4j-api:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:slf4j-simple:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:jcl-over-slf4j:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:log4j-over-slf4j:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:jul-to-slf4j:1.7.5" level="project" />      <orderEntry type="library" name="Maven: iaik.prod:iaik_tsl:1.0" level="project" />      <orderEntry type="library" name="Maven: iaik:iaik_xsect_eval:1.1709142" level="project" />      <orderEntry type="library" name="Maven: iaik:iaik_ecc_signed:2.19" level="project" /> @@ -91,24 +96,10 @@      <orderEntry type="library" name="Maven: org.apache.velocity:velocity:1.7" level="project" />      <orderEntry type="library" name="Maven: org.owasp.esapi:esapi:2.0.1" level="project" />      <orderEntry type="library" name="Maven: org.bouncycastle:bcprov-jdk16:1.46" level="project" /> -    <orderEntry type="library" name="Maven: org.slf4j:slf4j-api:1.7.5" level="project" /> -    <orderEntry type="library" name="Maven: org.slf4j:slf4j-simple:1.7.5" level="project" /> -    <orderEntry type="library" name="Maven: org.slf4j:jcl-over-slf4j:1.7.5" level="project" /> -    <orderEntry type="library" name="Maven: org.slf4j:log4j-over-slf4j:1.7.5" level="project" /> -    <orderEntry type="library" name="Maven: org.slf4j:jul-to-slf4j:1.7.5" level="project" /> -    <orderEntry type="library" name="Maven: commons-io:commons-io:2.2" level="project" /> +    <orderEntry type="library" name="Maven: commons-io:commons-io:1.3.2" level="project" />      <orderEntry type="library" name="Maven: eu.stork:oasis-dss-api:1.0.0-SNAPSHOT" level="project" />      <orderEntry type="library" scope="TEST" name="Maven: junit:junit:3.8.1" level="project" /> -    <orderEntry type="library" name="Maven: com.sun.xml.ws:jaxws-rt:2.1.7" level="project" /> -    <orderEntry type="library" name="Maven: javax.xml.ws:jaxws-api:2.1" level="project" /> -    <orderEntry type="library" name="Maven: com.sun.xml.messaging.saaj:saaj-impl:1.3.3" level="project" /> -    <orderEntry type="library" name="Maven: javax.xml.soap:saaj-api:1.3" level="project" /> -    <orderEntry type="library" name="Maven: com.sun.xml.stream.buffer:streambuffer:0.9" level="project" /> -    <orderEntry type="library" name="Maven: org.jvnet.staxex:stax-ex:1.2" level="project" /> -    <orderEntry type="library" name="Maven: javax.xml.stream:stax-api:1.0" level="project" /> -    <orderEntry type="library" name="Maven: org.codehaus.woodstox:wstx-asl:3.2.3" level="project" /> -    <orderEntry type="library" name="Maven: com.sun.org.apache.xml.internal:resolver:20050927" level="project" /> -    <orderEntry type="library" name="Maven: org.jvnet:mimepull:1.3" level="project" /> +    <orderEntry type="library" name="Maven: eu.medsea.mimeutil:mime-util:2.1.3" level="project" />      <orderEntry type="module" module-name="moa-id-commons" />      <orderEntry type="library" name="Maven: org.hibernate:hibernate-core:4.2.1.Final" level="project" />      <orderEntry type="library" name="Maven: antlr:antlr:2.7.7" level="project" /> @@ -134,12 +125,12 @@      <orderEntry type="library" name="Maven: org.jvnet.hyperjaxb3:hyperjaxb3-ejb-roundtrip:0.5.6" level="project" />      <orderEntry type="library" name="Maven: org.jvnet.jaxb2_commons:jaxb2-basics-testing:0.6.2" level="project" />      <orderEntry type="library" name="Maven: xmlunit:xmlunit:1.0" level="project" /> -    <orderEntry type="library" name="Maven: org.slf4j:slf4j-log4j12:1.6.1" level="project" />      <orderEntry type="library" name="Maven: org.jvnet.hyperjaxb3:hyperjaxb3-ejb-schemas-persistence:0.5.6" level="project" />      <orderEntry type="library" name="Maven: org.jvnet.hyperjaxb3:hyperjaxb3-ejb-schemas-customizations:0.5.6" level="project" />      <orderEntry type="library" name="Maven: org.springframework:spring:2.0.7" level="project" />      <orderEntry type="library" name="Maven: org.jvnet.jaxb2.maven2:maven-jaxb2-plugin:0.8.0" level="project" />      <orderEntry type="library" name="Maven: org.jvnet.jaxb2.maven2:maven-jaxb2-plugin-core:0.8.0" level="project" /> +    <orderEntry type="library" name="Maven: com.sun.org.apache.xml.internal:resolver:20050927" level="project" />      <orderEntry type="library" name="Maven: org.apache.maven:maven-plugin-api:2.2.1" level="project" />      <orderEntry type="library" name="Maven: org.apache.maven:maven-project:2.2.1" level="project" />      <orderEntry type="library" name="Maven: org.apache.maven:maven-settings:2.2.1" level="project" /> diff --git a/id/server/auth/pom.xml b/id/server/auth/pom.xml index 987ae1951..c17722df0 100644 --- a/id/server/auth/pom.xml +++ b/id/server/auth/pom.xml @@ -79,8 +79,13 @@  			<groupId>MOA.id.server</groupId>  			<artifactId>moa-id-lib</artifactId>  		</dependency> -		 -		<!-- transitive dependencies we don't want to include into the war --> +        <dependency> +            <groupId>eu.stork</groupId> +            <artifactId>oasis-dss-api</artifactId> +            <version>1.0.0-SNAPSHOT</version> +        </dependency> + +        <!-- transitive dependencies we don't want to include into the war -->  		<dependency>  			<groupId>iaik.prod</groupId>  			<artifactId>iaik_jce_full</artifactId> diff --git a/id/server/auth/src/main/webapp/WEB-INF/urlrewrite.xml b/id/server/auth/src/main/webapp/WEB-INF/urlrewrite.xml index 59d6d6cce..d6df363c5 100644 --- a/id/server/auth/src/main/webapp/WEB-INF/urlrewrite.xml +++ b/id/server/auth/src/main/webapp/WEB-INF/urlrewrite.xml @@ -68,6 +68,10 @@          <from>^/moa-id-auth/SendPEPSAuthnRequest$</from>          <to type="forward">/dispatcher?mod=id_stork2&action=AuthenticationRequest&%{query-string}</to>      </rule> +    <rule match-type="regex"> +        <from>^/moa-id-auth/RetrieveMandate$</from> +        <to type="forward">/dispatcher?mod=id_stork2&action=MandateRetrievalRequest&%{query-string}</to> +    </rule>      <rule match-type="regex"> diff --git a/id/server/idserverlib/moa-id-lib.iml b/id/server/idserverlib/moa-id-lib.iml index cf1b34b4b..d995f23af 100644 --- a/id/server/idserverlib/moa-id-lib.iml +++ b/id/server/idserverlib/moa-id-lib.iml @@ -1,8 +1,8 @@  <?xml version="1.0" encoding="UTF-8"?>  <module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">    <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_5" inherit-compiler-output="false"> -    <output url="file://$MODULE_DIR$/../../target/classes" /> -    <output-test url="file://$MODULE_DIR$/../../target/test-classes" /> +    <output url="file://$MODULE_DIR$/target/classes" /> +    <output-test url="file://$MODULE_DIR$/target/test-classes" />      <content url="file://$MODULE_DIR$">        <sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />        <sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" /> @@ -43,20 +43,7 @@      <orderEntry type="library" name="Maven: commons-io:commons-io:2.2" level="project" />      <orderEntry type="library" name="Maven: eu.stork:oasis-dss-api:1.0.0-SNAPSHOT" level="project" />      <orderEntry type="library" scope="TEST" name="Maven: junit:junit:3.8.1" level="project" /> -    <orderEntry type="library" name="Maven: com.sun.xml.ws:jaxws-rt:2.1.7" level="project" /> -    <orderEntry type="library" name="Maven: javax.xml.ws:jaxws-api:2.1" level="project" /> -    <orderEntry type="library" name="Maven: javax.xml.bind:jaxb-api:2.2.6" level="project" /> -    <orderEntry type="library" name="Maven: com.sun.xml.bind:jaxb-impl:2.2.5" level="project" /> -    <orderEntry type="library" name="Maven: com.sun.xml.messaging.saaj:saaj-impl:1.3.3" level="project" /> -    <orderEntry type="library" name="Maven: javax.xml.soap:saaj-api:1.3" level="project" /> -    <orderEntry type="library" name="Maven: javax.activation:activation:1.1" level="project" /> -    <orderEntry type="library" name="Maven: com.sun.xml.stream.buffer:streambuffer:0.9" level="project" /> -    <orderEntry type="library" name="Maven: org.jvnet.staxex:stax-ex:1.2" level="project" /> -    <orderEntry type="library" name="Maven: javax.xml.stream:stax-api:1.0" level="project" /> -    <orderEntry type="library" name="Maven: org.codehaus.woodstox:wstx-asl:3.2.3" level="project" /> -    <orderEntry type="library" name="Maven: stax:stax-api:1.0.1" level="project" /> -    <orderEntry type="library" name="Maven: com.sun.org.apache.xml.internal:resolver:20050927" level="project" /> -    <orderEntry type="library" name="Maven: org.jvnet:mimepull:1.3" level="project" /> +    <orderEntry type="library" name="Maven: eu.medsea.mimeutil:mime-util:2.1.3" level="project" />      <orderEntry type="module" module-name="moa-id-commons" />      <orderEntry type="library" name="Maven: org.hibernate:hibernate-core:4.2.1.Final" level="project" />      <orderEntry type="library" name="Maven: antlr:antlr:2.7.7" level="project" /> @@ -88,12 +75,12 @@      <orderEntry type="library" name="Maven: org.jvnet.hyperjaxb3:hyperjaxb3-ejb-roundtrip:0.5.6" level="project" />      <orderEntry type="library" name="Maven: org.jvnet.jaxb2_commons:jaxb2-basics-testing:0.6.2" level="project" />      <orderEntry type="library" name="Maven: xmlunit:xmlunit:1.0" level="project" /> -    <orderEntry type="library" name="Maven: org.slf4j:slf4j-log4j12:1.6.1" level="project" />      <orderEntry type="library" name="Maven: org.jvnet.hyperjaxb3:hyperjaxb3-ejb-schemas-persistence:0.5.6" level="project" />      <orderEntry type="library" name="Maven: org.jvnet.hyperjaxb3:hyperjaxb3-ejb-schemas-customizations:0.5.6" level="project" />      <orderEntry type="library" name="Maven: org.springframework:spring:2.0.7" level="project" />      <orderEntry type="library" name="Maven: org.jvnet.jaxb2.maven2:maven-jaxb2-plugin:0.8.0" level="project" />      <orderEntry type="library" name="Maven: org.jvnet.jaxb2.maven2:maven-jaxb2-plugin-core:0.8.0" level="project" /> +    <orderEntry type="library" name="Maven: com.sun.org.apache.xml.internal:resolver:20050927" level="project" />      <orderEntry type="library" name="Maven: org.apache.maven:maven-plugin-api:2.2.1" level="project" />      <orderEntry type="library" name="Maven: org.apache.maven:maven-project:2.2.1" level="project" />      <orderEntry type="library" name="Maven: org.apache.maven:maven-settings:2.2.1" level="project" /> @@ -111,6 +98,7 @@      <orderEntry type="library" name="Maven: org.apache.maven:maven-plugin-registry:2.2.1" level="project" />      <orderEntry type="library" name="Maven: org.jfrog.maven.annomojo:maven-plugin-anno:1.3.1" level="project" />      <orderEntry type="library" name="Maven: org.jvnet.jaxb2.maven2:maven-jaxb22-plugin:0.8.0" level="project" /> +    <orderEntry type="library" name="Maven: com.sun.xml.bind:jaxb-impl:2.2.5" level="project" />      <orderEntry type="library" name="Maven: com.sun.xml.bind:jaxb-xjc:2.2.4-1" level="project" />      <orderEntry type="library" name="Maven: mysql:mysql-connector-java:5.1.25" level="project" />      <orderEntry type="module" module-name="moa-common" scope="TEST" production-on-test="" /> @@ -120,6 +108,7 @@      <orderEntry type="library" name="Maven: org.apache.axis:axis-saaj:1.4" level="project" />      <orderEntry type="library" name="Maven: axis:axis-wsdl4j:1.5.1" level="project" />      <orderEntry type="library" name="Maven: commons-discovery:commons-discovery:0.2" level="project" /> +    <orderEntry type="library" name="Maven: javax.activation:activation:1.1" level="project" />      <orderEntry type="library" name="Maven: javax.mail:mail:1.4" level="project" />      <orderEntry type="library" scope="RUNTIME" name="Maven: postgresql:postgresql:7.2" level="project" />      <orderEntry type="library" scope="PROVIDED" name="Maven: javax.servlet:servlet-api:2.4" level="project" /> @@ -145,6 +134,8 @@      <orderEntry type="library" name="Maven: iaik:iaik_ssl:4.4" level="project" />      <orderEntry type="library" name="Maven: iaik:w3c_http:1.0" level="project" />      <orderEntry type="library" name="Maven: org.xerial:sqlite-jdbc:3.7.8-SNAPSHOT" level="project" /> +    <orderEntry type="library" name="Maven: stax:stax-api:1.0.1" level="project" /> +    <orderEntry type="library" name="Maven: javax.xml.bind:jaxb-api:2.2.6" level="project" />      <orderEntry type="library" name="Maven: iaik.prod:iaik_util:0.23" level="project" />      <orderEntry type="library" name="Maven: iaik.prod:iaik_xsect:1.1709142" level="project" />      <orderEntry type="library" name="Maven: iaik.prod:iaik_jsse:4.4" level="project" /> diff --git a/id/server/idserverlib/pom.xml b/id/server/idserverlib/pom.xml index cca543a26..82a42cb8c 100644 --- a/id/server/idserverlib/pom.xml +++ b/id/server/idserverlib/pom.xml @@ -151,7 +151,33 @@              <!-- should be in the ext directory of the jre -->
              <scope>provided</scope>
          </dependency>
 -		
 +
 +
 +        <dependency>
 +            <groupId>org.slf4j</groupId>
 +            <artifactId>slf4j-api</artifactId>
 +            <version>1.7.5</version>
 +        </dependency>
 +        <dependency>
 +            <groupId>org.slf4j</groupId>
 +            <artifactId>slf4j-simple</artifactId>
 +            <version>1.7.5</version>
 +        </dependency>
 +        <dependency>
 +            <groupId>org.slf4j</groupId>
 +            <artifactId>jcl-over-slf4j</artifactId>
 +            <version>1.7.5</version>
 +        </dependency>
 +        <dependency>
 +            <groupId>org.slf4j</groupId>
 +            <artifactId>log4j-over-slf4j</artifactId>
 +            <version>1.7.5</version>
 +        </dependency>
 +        <dependency>
 +            <groupId>org.slf4j</groupId>
 +            <artifactId>jul-to-slf4j</artifactId>
 +            <version>1.7.5</version>
 +        </dependency>
  		<dependency>
  			<groupId>junit</groupId>
 diff --git a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/auth/AuthenticationServer.java b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/auth/AuthenticationServer.java index ce5aa15c3..6f6d9611a 100644 --- a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/auth/AuthenticationServer.java +++ b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/auth/AuthenticationServer.java @@ -125,7 +125,7 @@ import at.gv.util.xsd.srzgw.MISType;  import at.gv.util.xsd.srzgw.MISType.Filters;  import eu.stork.oasisdss.api.AdditionalProfiles;  import eu.stork.oasisdss.api.ApiUtils; -import eu.stork.oasisdss.api.ApiUtilsException; +import eu.stork.oasisdss.api.exceptions.ApiUtilsException;  import eu.stork.oasisdss.api.Profiles;  import eu.stork.oasisdss.api.QualityLevels;  import eu.stork.oasisdss.api.SignatureTypes; diff --git a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/entrypoints/DispatcherServlet.java b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/entrypoints/DispatcherServlet.java index 3af8bcfe5..647c8bb39 100644 --- a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/entrypoints/DispatcherServlet.java +++ b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/entrypoints/DispatcherServlet.java @@ -491,7 +491,7 @@ public class DispatcherServlet extends AuthServlet{  				}  			} catch (Throwable e) { -				Logger.info("An authentication error occous: " + e.getMessage());; +				Logger.info("An authentication error occured: " + e.getMessage());;  				// Try handle module specific, if not possible rethrow  				if (!info.generateErrorMessage(e, req, resp, protocolRequest)) {  					throw e; diff --git a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/AttributeCollector.java b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/AttributeCollector.java index b2f5076b6..72dddee88 100644 --- a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/AttributeCollector.java +++ b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/AttributeCollector.java @@ -15,6 +15,25 @@ import at.gv.egovernment.moa.id.moduls.IAction;  import at.gv.egovernment.moa.id.moduls.IRequest;  import at.gv.egovernment.moa.id.storage.AssertionStorage;  import at.gv.egovernment.moa.logging.Logger; +<<<<<<< HEAD + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.apache.velocity.Template; +import org.apache.velocity.VelocityContext; +import org.apache.velocity.app.VelocityEngine; +import org.opensaml.common.impl.SecureRandomIdentifierGenerator; + +import eu.stork.peps.auth.commons.IPersonalAttributeList; +import eu.stork.peps.auth.commons.PEPSUtil; +import eu.stork.peps.auth.commons.PersonalAttribute; +import eu.stork.peps.auth.commons.PersonalAttributeList; +import eu.stork.peps.auth.commons.STORKAuthnRequest; +import eu.stork.peps.auth.commons.STORKAuthnResponse; +import eu.stork.peps.auth.engine.STORKSAMLEngine; +import eu.stork.peps.exceptions.STORKSAMLEngineException; +=======  import eu.stork.peps.auth.commons.IPersonalAttributeList;  import eu.stork.peps.auth.commons.PEPSUtil;  import eu.stork.peps.auth.commons.PersonalAttribute; @@ -28,14 +47,16 @@ import org.opensaml.common.impl.SecureRandomIdentifierGenerator;  import javax.servlet.http.HttpServletRequest;  import javax.servlet.http.HttpServletResponse; +>>>>>>> origin/bs_3_fr  /**   * the AttributeCollector Action tries to get all requested attributes from a set of {@link AttributeProvider} Plugins.   * The class is called whenever the {@link AuthenticationRequest} Action is invoked and checks for missing attributes.   * Furthermore, the class can handle direct posts. That is when the class triggers an attribute query which needs user   * interaction, redirect to another portal, etc. The redirect will hit here and the class can continue to fetch attributes. - * <p/> + *    * TODO how do we treat mandatory and optional attributes? + *    */  public class AttributeCollector implements IAction { @@ -49,6 +70,8 @@ public class AttributeCollector implements IAction {       */      public String processRequest(IRequest req, HttpServletRequest httpReq, HttpServletResponse httpResp, AuthenticationSession moasession) throws MOAIDException { +<<<<<<< HEAD +=======  		// - fetch the container  		String artifactId = (String) httpReq.getParameter(ARTIFACT_ID);  		DataContainer container; @@ -59,6 +82,7 @@ public class AttributeCollector implements IAction {  			throw new MOAIDException("stork.11", null);  		} +>>>>>>> origin/bs_3_fr          // read configuration parameters of OA          OAAuthParameter oaParam = AuthConfigurationProvider.getInstance().getOnlineApplicationParameter(container.getRequest().getAssertionConsumerServiceURL());          if (oaParam == null) @@ -83,20 +107,33 @@ public class AttributeCollector implements IAction {              Logger.error("No attribute could be retrieved from the response the attribute provider gave us.");          } +<<<<<<< HEAD +        // - fetch the container +        String artifactId = (String) httpReq.getAttribute(ARTIFACT_ID); +        DataContainer container; +        try { +            container = AssertionStorage.getInstance().get(artifactId, DataContainer.class); +        } catch (MOADatabaseException e) { +            Logger.error("Error fetching incomplete Stork response from temporary storage. Most likely a timeout occured.", e); +            throw new MOAIDException("stork.11", null); +        } + +======= +>>>>>>> origin/bs_3_fr          // - insert the embedded attribute(s) into the container          addOrUpdateAll(container.getResponse().getPersonalAttributeList(), newAttributes);          // see if we need some more attributes          return processRequest(container, httpReq, httpResp, moasession, oaParam);      } - +          /**       * Checks if there are missing attributes and tries to fetch them. If there are no more attribute to fetch,       * this very method creates and sends the protocol result to the asking S-PEPS.       *       * @param container the {@link DataContainer} representing the status of the overall query.       * @return the string -     * @throws MOAIDException +     * @throws MOAIDException        */      public String processRequest(DataContainer container, HttpServletRequest request, HttpServletResponse response, AuthenticationSession moasession, OAAuthParameter oaParam) throws MOAIDException {          // check if there are attributes we need to fetch @@ -162,7 +199,11 @@ public class AttributeCollector implements IAction {                  AssertionStorage.getInstance().put(newArtifactId, container);                  // add container-key to redirect embedded within the return URL +<<<<<<< HEAD +                e.getAp().performRedirect(AuthConfigurationProvider.getInstance().getPublicURLPrefix() + "/dispatcher?mod=id_stork2&action=AttributeCollector&" + ARTIFACT_ID + "=" + newArtifactId, container.getRequest().getSpCountry(), request, response, oaParam); +=======                  e.getAp().performRedirect(AuthConfigurationProvider.getInstance().getPublicURLPrefix() + "/stork2/ResumeAuthentication?" + ARTIFACT_ID + "=" + newArtifactId, container.getRequest().getSpCountry(), request, response, oaParam); +>>>>>>> origin/bs_3_fr              } catch (Exception e1) {                  // TODO should we return the response as is to the PEPS? @@ -181,8 +222,13 @@ public class AttributeCollector implements IAction {       * @throws MOAIDException the mOAID exception       */      private void generateSTORKResponse(DataContainer container) throws MOAIDException { +<<<<<<< HEAD +        STORKAuthnResponse authnResponse = container.getResponse(); +        STORKAuthnRequest authnRequest = container.getRequest(); +=======      	MOASTORKRequest request = container.getRequest();          MOASTORKResponse response = container.getResponse(); +>>>>>>> origin/bs_3_fr          try {              //Get SAMLEngine instance @@ -201,6 +247,14 @@ public class AttributeCollector implements IAction {          }          Logger.info("STORK SAML Response message succesfully generated "); +<<<<<<< HEAD +        Logger.debug("authn saml plain:" + authnResponse.getTokenSaml()); +		Logger.debug("authn saml string:" + new String(authnResponse.getTokenSaml())); +		Logger.debug("authn saml encodedx: " + PEPSUtil.encodeSAMLToken(authnResponse.getTokenSaml())); + +        container.setResponse(authnResponse); +======= +>>>>>>> origin/bs_3_fr      }      /** @@ -269,7 +323,7 @@ public class AttributeCollector implements IAction {       * @see at.gv.egovernment.moa.id.moduls.IAction#needAuthentication(at.gv.egovernment.moa.id.moduls.IRequest, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)       */      public boolean needAuthentication(IRequest req, HttpServletRequest httpReq, HttpServletResponse httpResp) { -        // this action does not need any authentication. The authentication is already done by the preceding AuthenticationRequest-Action. +    	// this action does not need any authentication. The authentication is already done by the preceding AuthenticationRequest-Action.          return false;      } diff --git a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/AttributeProvider.java b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/AttributeProvider.java index 6fba91fde..d92b0b72f 100644 --- a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/AttributeProvider.java +++ b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/AttributeProvider.java @@ -52,4 +52,5 @@ public interface AttributeProvider {  	 */  	public IPersonalAttributeList parse(HttpServletRequest httpReq) throws UnsupportedAttributeException, MOAIDException; +  } diff --git a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/AttributeProviderFactory.java b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/AttributeProviderFactory.java index 23edf69f9..953758dc3 100644 --- a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/AttributeProviderFactory.java +++ b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/AttributeProviderFactory.java @@ -1,59 +1,61 @@  package at.gv.egovernment.moa.id.protocols.stork2; +import at.gv.egovernment.moa.id.commons.db.dao.config.AttributeProviderPlugin; +  import java.util.ArrayList;  import java.util.List; -import at.gv.egovernment.moa.id.commons.db.dao.config.AttributeProviderPlugin; -  /**   * A factory for creating AttributeProvider objects.   */  public class AttributeProviderFactory { -	/** -	 * Gets the available plugins. -	 *  -	 * @return the available plugins -	 */ -	public static List<String> getAvailablePlugins() { -		List<String> result = new ArrayList<String>(); -		result.add("StorkAttributeRequestProvider"); -		result.add("EHvdAttributeProvider"); - -		return result; -	} - -	/** -	 * Creates an AttributeProvider object for the given shortname. Returns -	 * {@code null} if there is no such provider available. -	 *  -	 * @param shortname -	 *            the simpleName for the providers class -	 * @return the attribute provider -	 */ -	public static AttributeProvider create(String shortname, String url) { -        	if (shortname.equals("StorkAttributeRequestProvider"))  { -			return new StorkAttributeRequestProvider(url); -		} else if(shortname.equals("EHvdAttributeProvider")) { -			return new EHvdAttributeProviderPlugin(url); -		}       else { -			return null; -		} -	} - -	/** -	 * Gets fresh instances of the configured plugins. -	 * -	 * @param configuredAPs the configured a ps -	 * @return the configured plugins -	 */ -	public static List<AttributeProvider> getConfiguredPlugins( -			List<AttributeProviderPlugin> configuredAPs) { -		 -		List<AttributeProvider> result = new ArrayList<AttributeProvider>(); -		for(AttributeProviderPlugin current : configuredAPs) -			result.add(create(current.getName(), current.getUrl())); -		 -		return result; -	} +    /** +     * Gets the available plugins. +     * +     * @return the available plugins +     */ +    public static List<String> getAvailablePlugins() { +        List<String> result = new ArrayList<String>(); +        result.add("StorkAttributeRequestProvider"); +        result.add("EHvdAttributeProvider"); +        result.add("MISAttributeProvider"); + +        return result; +    } + +    /** +     * Creates an AttributeProvider object for the given shortname. Returns +     * {@code null} if there is no such provider available. +     * +     * @param shortname the simpleName for the providers class +     * @return the attribute provider +     */ +    public static AttributeProvider create(String shortname, String url) { +        if (shortname.equals("StorkAttributeRequestProvider")) { +            return new StorkAttributeRequestProvider(url); +        } else if (shortname.equals("EHvdAttributeProvider")) { +            return new EHvdAttributeProviderPlugin(url); +        } else if (shortname.equals("MISAttributeProvider")) { +            return new MISAttributeProvider(url); +        } else { +            return null; +        } +    } + +    /** +     * Gets fresh instances of the configured plugins. +     * +     * @param configuredAPs the configured a ps +     * @return the configured plugins +     */ +    public static List<AttributeProvider> getConfiguredPlugins( +            List<AttributeProviderPlugin> configuredAPs) { + +        List<AttributeProvider> result = new ArrayList<AttributeProvider>(); +        for (AttributeProviderPlugin current : configuredAPs) +            result.add(create(current.getName(), current.getUrl())); + +        return result; +    }  } diff --git a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/EHvdAttributeProviderPlugin.java b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/EHvdAttributeProviderPlugin.java index f97d8c804..d387bfcea 100644 --- a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/EHvdAttributeProviderPlugin.java +++ b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/EHvdAttributeProviderPlugin.java @@ -57,7 +57,6 @@ public class EHvdAttributeProviderPlugin implements AttributeProvider {  	/* (non-Javadoc)  	 * @see at.gv.egovernment.moa.id.protocols.stork2.AttributeProvider#acquire(eu.stork.peps.auth.commons.PersonalAttribute)  	 */ -	@Override  	public IPersonalAttributeList acquire(PersonalAttribute attributes, AuthenticationSession moasession)  			throws UnsupportedAttributeException,  			ExternalAttributeRequestRequiredException, MOAIDException { @@ -220,8 +219,7 @@ public class EHvdAttributeProviderPlugin implements AttributeProvider {  	/* (non-Javadoc)  	 * @see at.gv.egovernment.moa.id.protocols.stork2.AttributeProvider#performRedirect(java.lang.String, java.lang.String, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, at.gv.egovernment.moa.id.config.auth.OAAuthParameter)  	 */ -	@Override -	public void performRedirect(String url, String spCountyCode, +	public void performRedirect(String url, String citizenCountyCode,  			HttpServletRequest req, HttpServletResponse resp,  			OAAuthParameter oaParam) throws MOAIDException {  		// there is no redirect required @@ -230,7 +228,6 @@ public class EHvdAttributeProviderPlugin implements AttributeProvider {  	/* (non-Javadoc)  	 * @see at.gv.egovernment.moa.id.protocols.stork2.AttributeProvider#parse(javax.servlet.http.HttpServletRequest)  	 */ -	@Override  	public IPersonalAttributeList parse(HttpServletRequest httpReq)  			throws UnsupportedAttributeException, MOAIDException {  		// there is no redirect required, so we throw an exception when someone asks us to parse a response diff --git a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/MISAttributeProvider.java b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/MISAttributeProvider.java index 7665bb239..ec38db513 100644 --- a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/MISAttributeProvider.java +++ b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/MISAttributeProvider.java @@ -3,6 +3,7 @@ package at.gv.egovernment.moa.id.protocols.stork2;  import at.gv.egovernment.moa.id.auth.data.AuthenticationSession;  import at.gv.egovernment.moa.id.auth.exception.MOAIDException;  import at.gv.egovernment.moa.id.config.auth.OAAuthParameter; +import at.gv.egovernment.moa.logging.Logger;  import eu.stork.peps.auth.commons.IPersonalAttributeList;  import eu.stork.peps.auth.commons.PersonalAttribute; @@ -13,15 +14,34 @@ import javax.servlet.http.HttpServletResponse;   * Implements Attribute Provider for Mandates   */  public class MISAttributeProvider implements AttributeProvider { + +    String url = null; + +    public MISAttributeProvider(String url) { +        this.url = url; +    } +      public IPersonalAttributeList acquire(PersonalAttribute attributes, AuthenticationSession moasession) throws UnsupportedAttributeException, ExternalAttributeRequestRequiredException, MOAIDException { +        Logger.error("Entering MIS for attribute: " + attributes.getName()); + +        if (attributes.getName().equals("residencePermit")) { +            Logger.error("MIS EXCEPTION: " + attributes.getName()); +            //throw new ExternalAttributeRequestRequiredException(this); +        } +          return null;  //      }      public void performRedirect(String url, String citizenCountyCode, HttpServletRequest req, HttpServletResponse resp, OAAuthParameter oaParam) throws MOAIDException { -        // +        Logger.error("Entering MIS redirect for attribute: " ); +      }      public IPersonalAttributeList parse(HttpServletRequest httpReq) throws UnsupportedAttributeException, MOAIDException {          return null;  //      } + +    public String getName() { +        return "MandateProvider"; +    }  } diff --git a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/MOASTORKRequest.java b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/MOASTORKRequest.java index fa7db82c4..e95cfabe2 100644 --- a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/MOASTORKRequest.java +++ b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/MOASTORKRequest.java @@ -56,7 +56,7 @@ public class MOASTORKRequest implements IRequest, Serializable {          return this.storkAttrQueryRequest;      } -    public String getOAURL() { +    public String getOAURL() {     // TODO CHECK IT          if (isAuthnRequest)              return storkAuthnRequest.getAssertionConsumerServiceURL();          else if (isAttrRequest) diff --git a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/MandateRetrievalRequest.java b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/MandateRetrievalRequest.java new file mode 100644 index 000000000..bad711dbb --- /dev/null +++ b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/MandateRetrievalRequest.java @@ -0,0 +1,28 @@ +package at.gv.egovernment.moa.id.protocols.stork2; + +import at.gv.egovernment.moa.id.auth.data.AuthenticationSession; +import at.gv.egovernment.moa.id.auth.exception.MOAIDException; +import at.gv.egovernment.moa.id.moduls.IAction; +import at.gv.egovernment.moa.id.moduls.IRequest; +import com.sun.xml.ws.security.trust.WSTrustConstants; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +/** + * Processes mandate data after authentication is done in AT + * @author bsuzic + */ +public class MandateRetrievalRequest implements IAction { +    public String processRequest(IRequest req, HttpServletRequest httpReq, HttpServletResponse httpResp, AuthenticationSession moasession) throws MOAIDException { +        return null;  // +    } + +    public boolean needAuthentication(IRequest req, HttpServletRequest httpReq, HttpServletResponse httpResp) { +        return true; +    } + +    public String getDefaultActionName() { +        return STORKProtocol.MANDATERETRIEVALREQUEST; +    } +} diff --git a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/STORKProtocol.java b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/STORKProtocol.java index 638035008..5e9d50221 100644 --- a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/STORKProtocol.java +++ b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/STORKProtocol.java @@ -1,5 +1,6 @@  package at.gv.egovernment.moa.id.protocols.stork2; +import at.gv.egovernment.moa.id.auth.AuthenticationServer;  import at.gv.egovernment.moa.id.auth.MOAIDAuthConstants;  import at.gv.egovernment.moa.id.auth.exception.MOAIDException;  import at.gv.egovernment.moa.id.moduls.IAction; @@ -31,6 +32,7 @@ public class STORKProtocol implements IModulInfo, MOAIDAuthConstants {      public static final String AUTHENTICATIONREQUEST = "AuthenticationRequest";      public static final String ATTRIBUTE_COLLECTOR = "AttributeCollector"; +    public static final String MANDATERETRIEVALREQUEST = "MandateRetrievalRequest";      private static HashMap<String, IAction> actions = new HashMap<String, IAction>(); @@ -103,6 +105,20 @@ public class STORKProtocol implements IModulInfo, MOAIDAuthConstants {              authnRequest = authnEngine.validateSTORKAuthnRequest(decSamlToken);          } catch (STORKSAMLEngineException ex) {              Logger.error("Unable to validate Stork AuthenticationRequest: " + ex.getMessage()); +<<<<<<< HEAD +        }  catch (ClassCastException e) { +            Logger.error("Could not extract authenticaiton request"); +        } + + +        // check if a valid attr request is containerd +        try { +            attrRequest = attrEngine.validateSTORKAttrQueryRequest(decSamlToken); +        } catch (STORKSAMLEngineException ex) { +            Logger.error("Unable to validate Stork AuthenticationRequest: " + ex.getMessage()); +        } catch (ClassCastException e) { +            Logger.error("Could not extract attribute request"); +=======          } catch(ClassCastException e) {          	// we do not have a authnRequest          	// check if a valid attr request is container @@ -111,8 +127,8 @@ public class STORKProtocol implements IModulInfo, MOAIDAuthConstants {          	} catch (STORKSAMLEngineException ex) {          		Logger.error("Unable to validate Stork AuthenticationRequest: " + ex.getMessage());          	} +>>>>>>> origin/bs_3_fr          } -          // if there is no authn or attr request, raise error          if ((authnRequest == null) && (attrRequest == null)) {              Logger.error("There is no authentication or attribute request contained."); diff --git a/id/server/moa-id-commons/moa-id-commons.iml b/id/server/moa-id-commons/moa-id-commons.iml index 08d15d746..3bd426fc3 100644 --- a/id/server/moa-id-commons/moa-id-commons.iml +++ b/id/server/moa-id-commons/moa-id-commons.iml @@ -26,8 +26,8 @@      </facet>    </component>    <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_5" inherit-compiler-output="false"> -    <output url="file://$MODULE_DIR$/../../target/classes" /> -    <output-test url="file://$MODULE_DIR$/../../target/test-classes" /> +    <output url="file://$MODULE_DIR$/target/classes" /> +    <output-test url="file://$MODULE_DIR$/target/test-classes" />      <content url="file://$MODULE_DIR$">        <sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />        <sourceFolder url="file://$MODULE_DIR$/src/main/resources/config" type="java-resource" /> @@ -37,6 +37,7 @@      </content>      <orderEntry type="inheritedJdk" />      <orderEntry type="sourceFolder" forTests="false" /> +    <orderEntry type="module" module-name="moa-common" />      <orderEntry type="library" name="Maven: org.hibernate:hibernate-core:4.2.1.Final" level="project" />      <orderEntry type="library" name="Maven: antlr:antlr:2.7.7" level="project" />      <orderEntry type="library" name="Maven: org.jboss.logging:jboss-logging:3.1.0.GA" level="project" /> @@ -56,6 +57,11 @@      <orderEntry type="library" name="Maven: jaxen:jaxen:1.0-FCS" level="project" />      <orderEntry type="library" name="Maven: saxpath:saxpath:1.0-FCS" level="project" />      <orderEntry type="library" name="Maven: joda-time:joda-time:1.6.2" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:slf4j-api:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:slf4j-simple:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:jcl-over-slf4j:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:log4j-over-slf4j:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:jul-to-slf4j:1.7.5" level="project" />      <orderEntry type="library" name="Maven: org.jvnet.hyperjaxb3:hyperjaxb3-ejb-runtime:0.5.6" level="project" />      <orderEntry type="library" name="Maven: commons-lang:commons-lang:2.2" level="project" />      <orderEntry type="library" name="Maven: org.jvnet.jaxb2_commons:jaxb2-basics-runtime:0.6.2" level="project" /> @@ -71,9 +77,6 @@      <orderEntry type="library" name="Maven: org.jvnet.jaxb2_commons:jaxb2-basics-testing:0.6.2" level="project" />      <orderEntry type="library" name="Maven: xmlunit:xmlunit:1.0" level="project" />      <orderEntry type="library" name="Maven: commons-io:commons-io:1.2" level="project" /> -    <orderEntry type="library" name="Maven: org.slf4j:slf4j-log4j12:1.6.1" level="project" /> -    <orderEntry type="library" name="Maven: org.slf4j:slf4j-api:1.6.1" level="project" /> -    <orderEntry type="library" name="Maven: log4j:log4j:1.2.14" level="project" />      <orderEntry type="library" name="Maven: org.jvnet.hyperjaxb3:hyperjaxb3-ejb-schemas-persistence:0.5.6" level="project" />      <orderEntry type="library" name="Maven: org.jvnet.hyperjaxb3:hyperjaxb3-ejb-schemas-customizations:0.5.6" level="project" />      <orderEntry type="library" name="Maven: org.springframework:spring:2.0.7" level="project" /> diff --git a/id/server/moa-id-commons/pom.xml b/id/server/moa-id-commons/pom.xml index 9a3cf4f7c..055a67bf4 100644 --- a/id/server/moa-id-commons/pom.xml +++ b/id/server/moa-id-commons/pom.xml @@ -1,235 +1,260 @@ -<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/xsd/maven-4.0.0.xsd"> -  <modelVersion>4.0.0</modelVersion> -  <parent> -    <groupId>MOA.id</groupId> -    <artifactId>moa-id</artifactId> -    <version>1.9.98-SNAPSHOT</version> -  </parent> -  <artifactId>moa-id-commons</artifactId> -  <name>moa-id-commons</name> -  <groupId>MOA.id.server</groupId> -   -  <repositories> -  	<repository> -      <id>hyberjaxb</id> -      <url>http://repository.highsource.org/maven2/releases/</url> -      <releases><enabled>true</enabled></releases> -  	</repository> -      <repository> -          <id>JBoss IAIK</id> -          <url>http://nexus.iaik.tugraz.at/nexus/content/repositories/nexus/</url> -         <!-- <releases><enabled>true</enabled></releases> --> -      </repository> -  </repositories> -   -  <dependencies> -		<dependency> -			<groupId>org.hibernate</groupId> -			<artifactId>hibernate-core</artifactId> -			<version>4.2.1.Final</version> -		</dependency> -		<dependency> -			<groupId>org.hibernate</groupId> -			<artifactId>hibernate-c3p0</artifactId> -			<version>4.2.1.Final</version> -		</dependency> -		<dependency> -			<groupId>org.hibernate</groupId> -			<artifactId>hibernate-entitymanager</artifactId> -			<version>4.2.1.Final</version> -		</dependency> -		 -		<dependency> -			<groupId>org.apache.commons</groupId> -			<artifactId>commons-lang3</artifactId> -			<version>3.1</version> -		</dependency> -		<dependency> -			<groupId>MOA</groupId> -			<artifactId>moa-common</artifactId> -			<type>jar</type> -		</dependency> +<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/xsd/maven-4.0.0.xsd"> +    <modelVersion>4.0.0</modelVersion> +    <parent> +        <groupId>MOA.id</groupId> +        <artifactId>moa-id</artifactId> +        <version>1.9.98-SNAPSHOT</version> +    </parent> +    <artifactId>moa-id-commons</artifactId> +    <name>moa-id-commons</name> +    <groupId>MOA.id.server</groupId> -		<!-- dependency> -			<groupId>com.sun.xml.bind</groupId> -			<artifactId>jaxb-xjc</artifactId> -			<version>2.2.7</version> -		</dependency -->		 -					 -		<dependency> -			<groupId>org.hibernate.javax.persistence</groupId> -			<artifactId>hibernate-jpa-2.0-api</artifactId> -			<version>1.0.1.Final</version> -		</dependency> -				 -		<dependency> -			<groupId>org.jvnet.hyperjaxb3</groupId> -			<artifactId>hyperjaxb3-ejb-runtime</artifactId> -			<version>0.5.6</version> -		</dependency> -		<dependency> -	<groupId>org.jvnet.hyperjaxb3</groupId> -	<artifactId>maven-hyperjaxb3-plugin</artifactId> -	<version>0.5.6</version> -</dependency> -		<dependency> -			<groupId>mysql</groupId> -			<artifactId>mysql-connector-java</artifactId> -			<version>5.1.25</version> -		</dependency> -  </dependencies> -   -  	<build> -  		<defaultGoal>install</defaultGoal> -    	 -    	<resources> -        <resource> -          	<directory>src/main/resources/config</directory> -            <excludes> -                <exclude>**/*.java</exclude> -            </excludes> -        </resource> -        <resource> -            <directory>target/generated-sources/xjc</directory> -            <excludes> -                <exclude>**/*.java</exclude> -            </excludes> -        </resource> -    	</resources> -    	   -	<plugins>		     -		<plugin> -			<groupId>org.apache.maven.plugins</groupId> -			<artifactId>maven-compiler-plugin</artifactId> -			<configuration> -			<source>1.5</source> -			<target>1.5</target> -			</configuration> -			</plugin> -					<plugin> -				<groupId>org.apache.maven.plugins</groupId> -				<artifactId>maven-jar-plugin</artifactId> -				<configuration> -				<skip>true</skip> -				<skipTests>true</skipTests> -					<archive> -						<addMavenDescriptor>false</addMavenDescriptor> -					</archive> -				</configuration> -				<executions> -					<execution> -						<goals> -							<goal>test-jar</goal> -						</goals> -					</execution> -				</executions> -			</plugin> -	 -			<plugin> -				<groupId>org.jvnet.hyperjaxb3</groupId> -				<artifactId>maven-hyperjaxb3-plugin</artifactId> -				<version>0.5.6</version> -				<executions> -					<execution> -						<goals> -							<goal>generate</goal> -						</goals> -					</execution> -				</executions> -				<configuration> -					<extension>true</extension> -          <schemaDirectory>src/main/resources/config</schemaDirectory> -          <bindingDirectory>src/main/resources/config</bindingDirectory> -          <persistenceXml>src/main/resources/config/persistence_template.xml</persistenceXml> -          <generatePackage>at.gv.egovernment.moa.id.commons.db.dao.config</generatePackage> - 				</configuration> -			</plugin> -			<plugin> -				<inherited>true</inherited> -				<artifactId>maven-compiler-plugin</artifactId> -				<version>2.0.2</version> -				<configuration> -					<source>1.5</source> -					<target>1.5</target> -				</configuration> -			</plugin> -					 -			<plugin> -				<groupId>org.apache.maven.plugins</groupId> -				<artifactId>maven-javadoc-plugin</artifactId> -				<version>2.5</version> -				<configuration> -					<charset>UTF-8</charset> -					<docencoding>UTF-8</docencoding> -					<quiet>true</quiet> -					<author>false</author> -					<version>false</version> -					<use>true</use> -					<excludePackageNames>at.gv.egovernment.moa.spss.server.*;at.gv.egovernment.moa.spss.api.impl.*;at.gv.egovernment.moa.spss.impl.*</excludePackageNames> -					<tags> -						<tag> -							<name>pre</name> -							<placement>a</placement> -							<head>Preconditions:</head> -						</tag> -						<tag> -							<name>post</name> -							<placement>a</placement> -							<head>Postconditions:</head> -						</tag> -					</tags> -					<links> -						<link>http://java.sun.com/j2se/1.4/docs/api/</link> -						<link>http://java.sun.com/j2se/1.5.0/docs/api/</link> -						<link>http://logging.apache.org/log4j/docs/api/</link> -					</links> -					<target>1.5</target> -				</configuration> -				<executions> -					<execution> -						<id>generate-javadoc</id> -						<phase>package</phase> -						<goals> -							<goal>jar</goal> -						</goals> -					</execution> -				</executions> -			</plugin> -		</plugins> -	<pluginManagement> -		<plugins> -			<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> -			<plugin> -				<groupId>org.eclipse.m2e</groupId> -				<artifactId>lifecycle-mapping</artifactId> -				<version>1.0.0</version> -				<configuration> -					<lifecycleMappingMetadata> -						<pluginExecutions> -							<pluginExecution> -								<pluginExecutionFilter> -									<groupId> -										org.jvnet.hyperjaxb3 -									</groupId> -									<artifactId> -										maven-hyperjaxb3-plugin -									</artifactId> -									<versionRange> -										[0.5.6,) -									</versionRange> -									<goals> -										<goal>generate</goal> -									</goals> -								</pluginExecutionFilter> -								<action> -									<ignore></ignore> -								</action> -							</pluginExecution> -						</pluginExecutions> -					</lifecycleMappingMetadata> -				</configuration> -			</plugin> -		</plugins> -	</pluginManagement> -  	</build> +    <repositories> +        <repository> +            <id>hyberjaxb</id> +            <url>http://repository.highsource.org/maven2/releases/</url> +            <releases> +                <enabled>true</enabled> +            </releases> +        </repository> +        <repository> +            <id>JBoss IAIK</id> +            <url>http://nexus.iaik.tugraz.at/nexus/content/repositories/nexus/</url> +            <!-- <releases><enabled>true</enabled></releases> --> +        </repository> +    </repositories> + +    <dependencies> +        <dependency> +            <groupId>org.hibernate</groupId> +            <artifactId>hibernate-core</artifactId> +            <version>4.2.1.Final</version> +        </dependency> +        <dependency> +            <groupId>org.hibernate</groupId> +            <artifactId>hibernate-c3p0</artifactId> +            <version>4.2.1.Final</version> +        </dependency> +        <dependency> +            <groupId>org.hibernate</groupId> +            <artifactId>hibernate-entitymanager</artifactId> +            <version>4.2.1.Final</version> +        </dependency> + +        <dependency> +            <groupId>org.apache.commons</groupId> +            <artifactId>commons-lang3</artifactId> +            <version>3.1</version> +        </dependency> +        <dependency> +            <groupId>MOA</groupId> +            <artifactId>moa-common</artifactId> +            <type>jar</type> +        </dependency> + +        <!-- dependency> +            <groupId>com.sun.xml.bind</groupId> +            <artifactId>jaxb-xjc</artifactId> +            <version>2.2.7</version> +        </dependency --> + +        <dependency> +            <groupId>org.hibernate.javax.persistence</groupId> +            <artifactId>hibernate-jpa-2.0-api</artifactId> +            <version>1.0.1.Final</version> +        </dependency> + +        <dependency> +            <groupId>org.jvnet.hyperjaxb3</groupId> +            <artifactId>hyperjaxb3-ejb-runtime</artifactId> +            <version>0.5.6</version> +            <exclusions> +                <exclusion> +                    <groupId>org.slf4j</groupId> +                    <artifactId>slf4j-api</artifactId> +                </exclusion> +                <exclusion> +                    <groupId>org.slf4j</groupId> +                    <artifactId>slf4j-log4j12</artifactId> +                </exclusion> +            </exclusions> +        </dependency> +        <dependency> +            <groupId>org.jvnet.hyperjaxb3</groupId> +            <artifactId>maven-hyperjaxb3-plugin</artifactId> +            <version>0.5.6</version> +            <exclusions> +                <exclusion> +                    <groupId>org.slf4j</groupId> +                    <artifactId>slf4j-api</artifactId> +                </exclusion> +                <exclusion> +                    <groupId>org.slf4j</groupId> +                    <artifactId>slf4j-log4j12</artifactId> +                </exclusion> +            </exclusions> +        </dependency> +        <dependency> +            <groupId>mysql</groupId> +            <artifactId>mysql-connector-java</artifactId> +            <version>5.1.25</version> +        </dependency> +    </dependencies> + +    <build> +        <defaultGoal>install</defaultGoal> + +        <resources> +            <resource> +                <directory>src/main/resources/config</directory> +                <excludes> +                    <exclude>**/*.java</exclude> +                </excludes> +            </resource> +            <resource> +                <directory>target/generated-sources/xjc</directory> +                <excludes> +                    <exclude>**/*.java</exclude> +                </excludes> +            </resource> +        </resources> + +        <plugins> +            <plugin> +                <groupId>org.apache.maven.plugins</groupId> +                <artifactId>maven-compiler-plugin</artifactId> +                <configuration> +                    <source>1.5</source> +                    <target>1.5</target> +                </configuration> +            </plugin> +            <plugin> +                <groupId>org.apache.maven.plugins</groupId> +                <artifactId>maven-jar-plugin</artifactId> +                <configuration> +                    <skip>true</skip> +                    <skipTests>true</skipTests> +                    <archive> +                        <addMavenDescriptor>false</addMavenDescriptor> +                    </archive> +                </configuration> +                <executions> +                    <execution> +                        <goals> +                            <goal>test-jar</goal> +                        </goals> +                    </execution> +                </executions> +            </plugin> + +            <plugin> +                <groupId>org.jvnet.hyperjaxb3</groupId> +                <artifactId>maven-hyperjaxb3-plugin</artifactId> +                <version>0.5.6</version> +                <executions> +                    <execution> +                        <goals> +                            <goal>generate</goal> +                        </goals> +                    </execution> +                </executions> +                <configuration> +                    <extension>true</extension> +                    <schemaDirectory>src/main/resources/config</schemaDirectory> +                    <bindingDirectory>src/main/resources/config</bindingDirectory> +                    <persistenceXml>src/main/resources/config/persistence_template.xml</persistenceXml> +                    <generatePackage>at.gv.egovernment.moa.id.commons.db.dao.config</generatePackage> +                </configuration> +            </plugin> +            <plugin> +                <inherited>true</inherited> +                <artifactId>maven-compiler-plugin</artifactId> +                <version>2.0.2</version> +                <configuration> +                    <source>1.5</source> +                    <target>1.5</target> +                </configuration> +            </plugin> + +            <plugin> +                <groupId>org.apache.maven.plugins</groupId> +                <artifactId>maven-javadoc-plugin</artifactId> +                <version>2.5</version> +                <configuration> +                    <charset>UTF-8</charset> +                    <docencoding>UTF-8</docencoding> +                    <quiet>true</quiet> +                    <author>false</author> +                    <version>false</version> +                    <use>true</use> +                    <excludePackageNames> +                        at.gv.egovernment.moa.spss.server.*;at.gv.egovernment.moa.spss.api.impl.*;at.gv.egovernment.moa.spss.impl.* +                    </excludePackageNames> +                    <tags> +                        <tag> +                            <name>pre</name> +                            <placement>a</placement> +                            <head>Preconditions:</head> +                        </tag> +                        <tag> +                            <name>post</name> +                            <placement>a</placement> +                            <head>Postconditions:</head> +                        </tag> +                    </tags> +                    <links> +                        <link>http://java.sun.com/j2se/1.4/docs/api/</link> +                        <link>http://java.sun.com/j2se/1.5.0/docs/api/</link> +                        <link>http://logging.apache.org/log4j/docs/api/</link> +                    </links> +                    <target>1.5</target> +                </configuration> +                <executions> +                    <execution> +                        <id>generate-javadoc</id> +                        <phase>package</phase> +                        <goals> +                            <goal>jar</goal> +                        </goals> +                    </execution> +                </executions> +            </plugin> +        </plugins> +        <pluginManagement> +            <plugins> +                <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> +                <plugin> +                    <groupId>org.eclipse.m2e</groupId> +                    <artifactId>lifecycle-mapping</artifactId> +                    <version>1.0.0</version> +                    <configuration> +                        <lifecycleMappingMetadata> +                            <pluginExecutions> +                                <pluginExecution> +                                    <pluginExecutionFilter> +                                        <groupId> +                                            org.jvnet.hyperjaxb3 +                                        </groupId> +                                        <artifactId> +                                            maven-hyperjaxb3-plugin +                                        </artifactId> +                                        <versionRange> +                                            [0.5.6,) +                                        </versionRange> +                                        <goals> +                                            <goal>generate</goal> +                                        </goals> +                                    </pluginExecutionFilter> +                                    <action> +                                        <ignore></ignore> +                                    </action> +                                </pluginExecution> +                            </pluginExecutions> +                        </lifecycleMappingMetadata> +                    </configuration> +                </plugin> +            </plugins> +        </pluginManagement> +    </build>  </project>
\ No newline at end of file diff --git a/id/server/moa-id.iml b/id/server/moa-id.iml index 567359474..c418d6693 100644 --- a/id/server/moa-id.iml +++ b/id/server/moa-id.iml @@ -1,8 +1,8 @@  <?xml version="1.0" encoding="UTF-8"?>  <module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">    <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_5" inherit-compiler-output="false"> -    <output url="file://$MODULE_DIR$/../target/classes" /> -    <output-test url="file://$MODULE_DIR$/../target/test-classes" /> +    <output url="file://$MODULE_DIR$/target/classes" /> +    <output-test url="file://$MODULE_DIR$/target/test-classes" />      <content url="file://$MODULE_DIR$">        <excludeFolder url="file://$MODULE_DIR$/target" />      </content> diff --git a/id/server/proxy/moa-id-proxy.iml b/id/server/proxy/moa-id-proxy.iml index 86fa1b292..e61d841ce 100644 --- a/id/server/proxy/moa-id-proxy.iml +++ b/id/server/proxy/moa-id-proxy.iml @@ -13,8 +13,8 @@      </facet>    </component>    <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_5" inherit-compiler-output="false"> -    <output url="file://$MODULE_DIR$/../../target/classes" /> -    <output-test url="file://$MODULE_DIR$/../../target/test-classes" /> +    <output url="file://$MODULE_DIR$/target/classes" /> +    <output-test url="file://$MODULE_DIR$/target/test-classes" />      <content url="file://$MODULE_DIR$">        <excludeFolder url="file://$MODULE_DIR$/target" />      </content> @@ -50,6 +50,11 @@      <orderEntry type="library" name="Maven: jaxen:jaxen:1.0-FCS" level="project" />      <orderEntry type="library" name="Maven: saxpath:saxpath:1.0-FCS" level="project" />      <orderEntry type="library" name="Maven: joda-time:joda-time:1.6.2" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:slf4j-api:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:slf4j-simple:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:jcl-over-slf4j:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:log4j-over-slf4j:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:jul-to-slf4j:1.7.5" level="project" />      <orderEntry type="library" name="Maven: iaik.prod:iaik_tsl:1.0" level="project" />      <orderEntry type="library" name="Maven: iaik:iaik_xsect_eval:1.1709142" level="project" />      <orderEntry type="library" name="Maven: iaik:iaik_ecc_signed:2.19" level="project" /> @@ -88,24 +93,10 @@      <orderEntry type="library" name="Maven: org.apache.velocity:velocity:1.7" level="project" />      <orderEntry type="library" name="Maven: org.owasp.esapi:esapi:2.0.1" level="project" />      <orderEntry type="library" name="Maven: org.bouncycastle:bcprov-jdk16:1.46" level="project" /> -    <orderEntry type="library" name="Maven: org.slf4j:slf4j-api:1.7.5" level="project" /> -    <orderEntry type="library" name="Maven: org.slf4j:slf4j-simple:1.7.5" level="project" /> -    <orderEntry type="library" name="Maven: org.slf4j:jcl-over-slf4j:1.7.5" level="project" /> -    <orderEntry type="library" name="Maven: org.slf4j:log4j-over-slf4j:1.7.5" level="project" /> -    <orderEntry type="library" name="Maven: org.slf4j:jul-to-slf4j:1.7.5" level="project" />      <orderEntry type="library" name="Maven: commons-io:commons-io:2.2" level="project" />      <orderEntry type="library" name="Maven: eu.stork:oasis-dss-api:1.0.0-SNAPSHOT" level="project" />      <orderEntry type="library" scope="TEST" name="Maven: junit:junit:3.8.1" level="project" /> -    <orderEntry type="library" name="Maven: com.sun.xml.ws:jaxws-rt:2.1.7" level="project" /> -    <orderEntry type="library" name="Maven: javax.xml.ws:jaxws-api:2.1" level="project" /> -    <orderEntry type="library" name="Maven: com.sun.xml.messaging.saaj:saaj-impl:1.3.3" level="project" /> -    <orderEntry type="library" name="Maven: javax.xml.soap:saaj-api:1.3" level="project" /> -    <orderEntry type="library" name="Maven: com.sun.xml.stream.buffer:streambuffer:0.9" level="project" /> -    <orderEntry type="library" name="Maven: org.jvnet.staxex:stax-ex:1.2" level="project" /> -    <orderEntry type="library" name="Maven: javax.xml.stream:stax-api:1.0" level="project" /> -    <orderEntry type="library" name="Maven: org.codehaus.woodstox:wstx-asl:3.2.3" level="project" /> -    <orderEntry type="library" name="Maven: com.sun.org.apache.xml.internal:resolver:20050927" level="project" /> -    <orderEntry type="library" name="Maven: org.jvnet:mimepull:1.3" level="project" /> +    <orderEntry type="library" name="Maven: eu.medsea.mimeutil:mime-util:2.1.3" level="project" />      <orderEntry type="module" module-name="moa-id-commons" />      <orderEntry type="library" name="Maven: org.hibernate:hibernate-core:4.2.1.Final" level="project" />      <orderEntry type="library" name="Maven: antlr:antlr:2.7.7" level="project" /> @@ -131,12 +122,12 @@      <orderEntry type="library" name="Maven: org.jvnet.hyperjaxb3:hyperjaxb3-ejb-roundtrip:0.5.6" level="project" />      <orderEntry type="library" name="Maven: org.jvnet.jaxb2_commons:jaxb2-basics-testing:0.6.2" level="project" />      <orderEntry type="library" name="Maven: xmlunit:xmlunit:1.0" level="project" /> -    <orderEntry type="library" name="Maven: org.slf4j:slf4j-log4j12:1.6.1" level="project" />      <orderEntry type="library" name="Maven: org.jvnet.hyperjaxb3:hyperjaxb3-ejb-schemas-persistence:0.5.6" level="project" />      <orderEntry type="library" name="Maven: org.jvnet.hyperjaxb3:hyperjaxb3-ejb-schemas-customizations:0.5.6" level="project" />      <orderEntry type="library" name="Maven: org.springframework:spring:2.0.7" level="project" />      <orderEntry type="library" name="Maven: org.jvnet.jaxb2.maven2:maven-jaxb2-plugin:0.8.0" level="project" />      <orderEntry type="library" name="Maven: org.jvnet.jaxb2.maven2:maven-jaxb2-plugin-core:0.8.0" level="project" /> +    <orderEntry type="library" name="Maven: com.sun.org.apache.xml.internal:resolver:20050927" level="project" />      <orderEntry type="library" name="Maven: org.apache.maven:maven-plugin-api:2.2.1" level="project" />      <orderEntry type="library" name="Maven: org.apache.maven:maven-project:2.2.1" level="project" />      <orderEntry type="library" name="Maven: org.apache.maven:maven-settings:2.2.1" level="project" /> diff --git a/id/templates/moa-id-templates.iml b/id/templates/moa-id-templates.iml deleted file mode 100644 index 0ecf962d0..000000000 --- a/id/templates/moa-id-templates.iml +++ /dev/null @@ -1,25 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4"> -  <component name="FacetManager"> -    <facet type="web" name="Web"> -      <configuration> -        <descriptors> -          <deploymentDescriptor name="web.xml" url="file://$MODULE_DIR$/src/main/webapp/WEB-INF/web.xml" /> -        </descriptors> -        <webroots> -          <root url="file://$MODULE_DIR$/src/main/webapp" relative="/" /> -        </webroots> -      </configuration> -    </facet> -  </component> -  <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_5" inherit-compiler-output="false"> -    <output url="file://$MODULE_DIR$/../target/classes" /> -    <output-test url="file://$MODULE_DIR$/../target/test-classes" /> -    <content url="file://$MODULE_DIR$"> -      <excludeFolder url="file://$MODULE_DIR$/target" /> -    </content> -    <orderEntry type="inheritedJdk" /> -    <orderEntry type="sourceFolder" forTests="false" /> -  </component> -</module> - diff --git a/repository/eu/stork/oasis-dss-api/1.0.0-SNAPSHOT/oasis-dss-api-1.0.0-SNAPSHOT.jar b/repository/eu/stork/oasis-dss-api/1.0.0-SNAPSHOT/oasis-dss-api-1.0.0-SNAPSHOT.jarBinary files differ index 5ad0cb42e..8414d7851 100644 --- a/repository/eu/stork/oasis-dss-api/1.0.0-SNAPSHOT/oasis-dss-api-1.0.0-SNAPSHOT.jar +++ b/repository/eu/stork/oasis-dss-api/1.0.0-SNAPSHOT/oasis-dss-api-1.0.0-SNAPSHOT.jar diff --git a/spss/handbook/clients/api/moa-spss-handbook-apiClient.iml b/spss/handbook/clients/api/moa-spss-handbook-apiClient.iml index c9c03b243..4e0a0fddf 100644 --- a/spss/handbook/clients/api/moa-spss-handbook-apiClient.iml +++ b/spss/handbook/clients/api/moa-spss-handbook-apiClient.iml @@ -1,14 +1,15 @@  <?xml version="1.0" encoding="UTF-8"?>  <module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">    <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_5" inherit-compiler-output="false"> -    <output url="file://$MODULE_DIR$/../../../target/classes" /> -    <output-test url="file://$MODULE_DIR$/../../../target/test-classes" /> +    <output url="file://$MODULE_DIR$/target/classes" /> +    <output-test url="file://$MODULE_DIR$/target/test-classes" />      <content url="file://$MODULE_DIR$">        <sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />        <excludeFolder url="file://$MODULE_DIR$/target" />      </content>      <orderEntry type="inheritedJdk" />      <orderEntry type="sourceFolder" forTests="false" /> +    <orderEntry type="module" module-name="moa-common" />      <orderEntry type="library" name="Maven: axis:axis:1.0_IAIK" level="project" />      <orderEntry type="library" name="Maven: org.apache.axis:axis-jaxrpc:1.4" level="project" />      <orderEntry type="library" name="Maven: org.apache.axis:axis-saaj:1.4" level="project" /> @@ -38,6 +39,11 @@      <orderEntry type="library" name="Maven: jaxen:jaxen:1.0-FCS" level="project" />      <orderEntry type="library" name="Maven: saxpath:saxpath:1.0-FCS" level="project" />      <orderEntry type="library" name="Maven: joda-time:joda-time:1.6.2" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:slf4j-api:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:slf4j-simple:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:jcl-over-slf4j:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:log4j-over-slf4j:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:jul-to-slf4j:1.7.5" level="project" />      <orderEntry type="module" module-name="moa-spss-lib" />      <orderEntry type="library" name="Maven: iaik.prod:iaik_tsl:1.0" level="project" />      <orderEntry type="library" name="Maven: iaik:iaik_xsect_eval:1.1709142" level="project" /> diff --git a/spss/handbook/clients/webservice/moa-spss-handbook-webserviceClient.iml b/spss/handbook/clients/webservice/moa-spss-handbook-webserviceClient.iml index c9c03b243..4e0a0fddf 100644 --- a/spss/handbook/clients/webservice/moa-spss-handbook-webserviceClient.iml +++ b/spss/handbook/clients/webservice/moa-spss-handbook-webserviceClient.iml @@ -1,14 +1,15 @@  <?xml version="1.0" encoding="UTF-8"?>  <module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">    <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_5" inherit-compiler-output="false"> -    <output url="file://$MODULE_DIR$/../../../target/classes" /> -    <output-test url="file://$MODULE_DIR$/../../../target/test-classes" /> +    <output url="file://$MODULE_DIR$/target/classes" /> +    <output-test url="file://$MODULE_DIR$/target/test-classes" />      <content url="file://$MODULE_DIR$">        <sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />        <excludeFolder url="file://$MODULE_DIR$/target" />      </content>      <orderEntry type="inheritedJdk" />      <orderEntry type="sourceFolder" forTests="false" /> +    <orderEntry type="module" module-name="moa-common" />      <orderEntry type="library" name="Maven: axis:axis:1.0_IAIK" level="project" />      <orderEntry type="library" name="Maven: org.apache.axis:axis-jaxrpc:1.4" level="project" />      <orderEntry type="library" name="Maven: org.apache.axis:axis-saaj:1.4" level="project" /> @@ -38,6 +39,11 @@      <orderEntry type="library" name="Maven: jaxen:jaxen:1.0-FCS" level="project" />      <orderEntry type="library" name="Maven: saxpath:saxpath:1.0-FCS" level="project" />      <orderEntry type="library" name="Maven: joda-time:joda-time:1.6.2" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:slf4j-api:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:slf4j-simple:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:jcl-over-slf4j:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:log4j-over-slf4j:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:jul-to-slf4j:1.7.5" level="project" />      <orderEntry type="module" module-name="moa-spss-lib" />      <orderEntry type="library" name="Maven: iaik.prod:iaik_tsl:1.0" level="project" />      <orderEntry type="library" name="Maven: iaik:iaik_xsect_eval:1.1709142" level="project" /> diff --git a/spss/server/serverlib/moa-spss-lib.iml b/spss/server/serverlib/moa-spss-lib.iml index 7864354f4..93d7e676f 100644 --- a/spss/server/serverlib/moa-spss-lib.iml +++ b/spss/server/serverlib/moa-spss-lib.iml @@ -45,8 +45,8 @@      </facet>    </component>    <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_5" inherit-compiler-output="false"> -    <output url="file://$MODULE_DIR$/../../target/classes" /> -    <output-test url="file://$MODULE_DIR$/../../target/test-classes" /> +    <output url="file://$MODULE_DIR$/target/classes" /> +    <output-test url="file://$MODULE_DIR$/target/test-classes" />      <content url="file://$MODULE_DIR$">        <sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />        <sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" /> @@ -55,6 +55,8 @@      </content>      <orderEntry type="inheritedJdk" />      <orderEntry type="sourceFolder" forTests="false" /> +    <orderEntry type="module" module-name="moa-common" /> +    <orderEntry type="module" module-name="moa-common" scope="TEST" production-on-test="" />      <orderEntry type="library" name="Maven: axis:axis:1.0_IAIK" level="project" />      <orderEntry type="library" name="Maven: org.apache.axis:axis-jaxrpc:1.4" level="project" />      <orderEntry type="library" name="Maven: org.apache.axis:axis-saaj:1.4" level="project" /> @@ -84,6 +86,11 @@      <orderEntry type="library" name="Maven: jaxen:jaxen:1.0-FCS" level="project" />      <orderEntry type="library" name="Maven: saxpath:saxpath:1.0-FCS" level="project" />      <orderEntry type="library" name="Maven: joda-time:joda-time:1.6.2" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:slf4j-api:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:slf4j-simple:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:jcl-over-slf4j:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:log4j-over-slf4j:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:jul-to-slf4j:1.7.5" level="project" />      <orderEntry type="module" module-name="moa-common" scope="TEST" production-on-test="" />      <orderEntry type="module" module-name="moa-spss-tools" scope="TEST" />      <orderEntry type="library" name="Maven: iaik.prod:iaik_tsl:1.0" level="project" /> diff --git a/spss/server/serverws/moa-spss-ws.iml b/spss/server/serverws/moa-spss-ws.iml index 60f6d1803..7943aa854 100644 --- a/spss/server/serverws/moa-spss-ws.iml +++ b/spss/server/serverws/moa-spss-ws.iml @@ -15,13 +15,14 @@      </facet>    </component>    <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_5" inherit-compiler-output="false"> -    <output url="file://$MODULE_DIR$/../../target/classes" /> -    <output-test url="file://$MODULE_DIR$/../../target/test-classes" /> +    <output url="file://$MODULE_DIR$/target/classes" /> +    <output-test url="file://$MODULE_DIR$/target/test-classes" />      <content url="file://$MODULE_DIR$">        <excludeFolder url="file://$MODULE_DIR$/target" />      </content>      <orderEntry type="inheritedJdk" />      <orderEntry type="sourceFolder" forTests="false" /> +    <orderEntry type="module" module-name="moa-common" />      <orderEntry type="module" module-name="moa-spss-lib" />      <orderEntry type="library" name="Maven: axis:axis:1.0_IAIK" level="project" />      <orderEntry type="library" name="Maven: org.apache.axis:axis-jaxrpc:1.4" level="project" /> @@ -51,6 +52,11 @@      <orderEntry type="library" name="Maven: jaxen:jaxen:1.0-FCS" level="project" />      <orderEntry type="library" name="Maven: saxpath:saxpath:1.0-FCS" level="project" />      <orderEntry type="library" name="Maven: joda-time:joda-time:1.6.2" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:slf4j-api:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:slf4j-simple:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:jcl-over-slf4j:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:log4j-over-slf4j:1.7.5" level="project" /> +    <orderEntry type="library" name="Maven: org.slf4j:jul-to-slf4j:1.7.5" level="project" />      <orderEntry type="library" name="Maven: iaik.prod:iaik_tsl:1.0" level="project" />      <orderEntry type="library" name="Maven: iaik:iaik_xsect_eval:1.1709142" level="project" />      <orderEntry type="library" name="Maven: iaik:iaik_ecc_signed:2.19" level="project" /> | 
