<?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/xsd/maven-4.0.0.xsd">
    <parent>
        <groupId>de.xwic.cube</groupId>
        <artifactId>cube</artifactId>
        <version>5.2.2</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <name>CUBE::WEB::CORE</name>

    <groupId>de.xwic.cube</groupId>
    <artifactId>cube-webui-core</artifactId>
    <version>5.2.2</version>
    <packaging>jar</packaging>

    <dependencies>
		<!-- Related projects -->
        <dependency>
            <groupId>de.xwic.cube</groupId>
            <artifactId>cube-core</artifactId>
            <version>5.2.2</version>
        </dependency>
		
		<!-- jWic dependencies -->
		<dependency>
			<groupId>de.xwic.jwic</groupId>
			<artifactId>jwic-core</artifactId>
		</dependency>
		<dependency>
			<groupId>de.xwic.jwic</groupId>
			<artifactId>jwic-controls</artifactId>
		</dependency>
		
		<!-- General dependencies -->
        <dependency>
            <groupId>commons-logging</groupId>
            <artifactId>commons-logging</artifactId>
        </dependency>
		<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
		</dependency>
	
        <dependency>
        	<groupId>com.google.code.gson</groupId>
        	<artifactId>gson</artifactId>
        	<version>2.2.4</version>
        </dependency>

		<!-- Test dependencies -->
        <dependency>
            <!-- Common Public License 1.0 -->
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>

    </dependencies>

</project>