| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 | <?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">    <modelVersion>4.0.0</modelVersion>    <parent>        <groupId>com.scytl.products.ov.channel</groupId>        <artifactId>ov-channel</artifactId>        <version>2.1.7</version>    </parent>    <groupId>com.scytl.products.ov.channel.au</groupId>    <artifactId>authentication</artifactId>    <packaging>pom</packaging>    <name>Online Voting Authentication</name>    <properties>        <org.apache.geronimo.specs.version>1.1</org.apache.geronimo.specs.version>    </properties>    <dependencyManagement>        <dependencies>            <dependency>                <groupId>com.scytl.products.ov.channel.commons</groupId>                <artifactId>ov-commons-logging</artifactId>                <version>${project.version}</version>            </dependency>            <dependency>                <groupId>com.scytl.products.ov.channel.commons</groupId>                <artifactId>ov-commons-sign</artifactId>                <version>${project.version}</version>            </dependency>            <dependency>                <groupId>com.scytl.products.ov.channel.commons.lib</groupId>                <artifactId>ov-commons-lib-persistence</artifactId>                <version>${project.version}</version>            </dependency>            <dependency>                <groupId>com.scytl.products.ov.channel.commons</groupId>                <artifactId>ov-commons-beans</artifactId>                <version>${project.version}</version>            </dependency>            <dependency>                <groupId>com.scytl.products.ov.channel.commons</groupId>                <artifactId>ov-commons-infrastructure</artifactId>                <version>${project.version}</version>            </dependency>            <dependency>                <groupId>com.scytl.products.ov.channel.commons.lib</groupId>                <artifactId>ov-commons-lib-persistence</artifactId>                <version>${project.version}</version>                <type>test-jar</type>                <scope>test</scope>            </dependency>            <dependency>                <groupId>com.scytl.products.ov.channel.commons.lib</groupId>                <artifactId>ov-commons-lib</artifactId>                <version>${project.version}</version>            </dependency>            <dependency>                <groupId>com.scytl.products.ov.channel.commons.lib</groupId>                <artifactId>ov-commons-lib</artifactId>                <scope>test</scope>                <type>test-jar</type>                <version>${project.version}</version>            </dependency>        </dependencies>    </dependencyManagement>    <dependencies>        <dependency>            <groupId>org.apache.openejb</groupId>            <artifactId>javaee-api</artifactId>            <scope>provided</scope>        </dependency>        <!-- Bouncy Castle -->        <dependency>            <groupId>org.bouncycastle</groupId>            <artifactId>bcprov-jdk15on</artifactId>            <scope>provided</scope>        </dependency>        <dependency>            <groupId>org.bouncycastle</groupId>            <artifactId>bcpkix-jdk15on</artifactId>        </dependency>        <!-- Logging -->        <dependency>            <groupId>org.slf4j</groupId>            <artifactId>slf4j-api</artifactId>        </dependency>        <dependency>            <groupId>com.scytl.products.oscore</groupId>            <artifactId>logging-core</artifactId>        </dependency>        <dependency>            <groupId>com.scytl.products.ov.channel.commons</groupId>            <artifactId>libs-config</artifactId>            <version>${project.version}</version>        </dependency>        <!-- Testing -->        <dependency>            <groupId>junit</groupId>            <artifactId>junit</artifactId>            <version>${junit.version}</version>            <scope>test</scope>        </dependency>        <dependency>            <groupId>org.mockito</groupId>            <artifactId>mockito-core</artifactId>            <version>${mockito.version}</version>            <scope>test</scope>        </dependency>        <!-- jackson for json processing (this is used for annotations in DTOs) -->        <dependency>            <groupId>com.fasterxml.jackson.core</groupId>            <artifactId>jackson-annotations</artifactId>        </dependency>        <dependency>            <groupId>com.fasterxml.jackson.core</groupId>            <artifactId>jackson-databind</artifactId>        </dependency>        <dependency>            <groupId>com.fasterxml.jackson.jaxrs</groupId>            <artifactId>jackson-jaxrs-json-provider</artifactId>        </dependency>    </dependencies>    <modules>        <module>authentication-services</module>        <module>au-ws-rest</module>        <module>assembly</module>    </modules></project>
 |