diff options
Diffstat (limited to 'connector/pom.xml')
| -rw-r--r-- | connector/pom.xml | 59 | 
1 files changed, 41 insertions, 18 deletions
| diff --git a/connector/pom.xml b/connector/pom.xml index a721930d..f386c08f 100644 --- a/connector/pom.xml +++ b/connector/pom.xml @@ -6,7 +6,7 @@    <parent>      <groupId>at.asitplus.eidas</groupId>      <artifactId>ms_specific</artifactId> -    <version>1.2.3-SNAPSHOT</version> +    <version>1.2.3</version>    </parent>    <groupId>at.asitplus.eidas.ms_specific</groupId> @@ -96,6 +96,19 @@          <artifactId>hibernate-validator</artifactId>      </dependency> +   <dependency> +      <groupId>org.apache.cxf</groupId> +      <artifactId>cxf-core</artifactId> +    </dependency> +    <dependency> +      <groupId>org.apache.cxf</groupId> +      <artifactId>cxf-rt-frontend-jaxws</artifactId> +    </dependency> +    <dependency> +      <groupId>org.apache.cxf</groupId> +      <artifactId>cxf-rt-transports-http</artifactId> +    </dependency> +      <!-- Testing -->      <dependency> @@ -126,6 +139,18 @@        <type>test-jar</type>      </dependency>      <dependency> +      <groupId>at.gv.egiz.eaaf</groupId> +      <artifactId>eaaf_module_pvp2_sp</artifactId> +      <scope>test</scope> +    </dependency> +    <dependency> +      <groupId>at.asitplus.eidas.ms_specific.modules</groupId> +      <artifactId>authmodule-eIDAS-v2</artifactId> +      <classifier>tests</classifier> +      <scope>test</scope> +      <type>test-jar</type> +    </dependency>       +    <dependency>        <groupId>org.springframework.boot</groupId>        <artifactId>spring-boot-starter-tomcat</artifactId>        <scope>test</scope> @@ -136,29 +161,27 @@        <scope>test</scope>      </dependency>      <dependency> +      <groupId>com.squareup.okhttp3</groupId> +      <artifactId>mockwebserver</artifactId> +      <scope>test</scope> +    </dependency> +     +    <dependency>        <groupId>com.github.skjolber</groupId>        <artifactId>mockito-soap-cxf</artifactId> -      <scope>test</scope> -      <!--exclusions> -        <exclusion> -          <groupId>org.apache.cxf</groupId> -          <artifactId>cxf-rt-wsdl</artifactId> -        </exclusion> -        <exclusion> -          <groupId>org.apache.cxf</groupId> -          <artifactId>cxf-rt-bindings-soap</artifactId> -        </exclusion> -        <exclusion> -          <groupId>org.apache.cxf</groupId> -          <artifactId>cxf-core</artifactId> -        </exclusion> -      </exclusions--> +      <scope>test</scope>            </dependency> +          <dependency> -      <groupId>com.squareup.okhttp3</groupId> -      <artifactId>mockwebserver</artifactId> +      <groupId>org.powermock</groupId> +      <artifactId>powermock-module-junit4</artifactId>        <scope>test</scope>      </dependency> +    <dependency> +      <groupId>org.powermock</groupId> +      <artifactId>powermock-api-mockito2</artifactId> +      <scope>test</scope> +    </dependency>            </dependencies>    <profiles> | 
