blob: 7ff6c392fc7f2836a49d69a0afcd64f01e917616 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>${groupId}</groupId>
<artifactId>${rootArtifactId}</artifactId>
<version>${version}</version>
<relativePath>../${rootArtifactId}</relativePath>
</parent>
<artifactId>${rootArtifactId}.ui</artifactId>
<properties>
<!-- No build required. webpack.config.js in this module only exists for the Jasmine tests -->
<master_skip_npm_build_dev>true</master_skip_npm_build_dev>
<master_skip_npm_build_prod>true</master_skip_npm_build_prod>
<master_skip_copy_webpack_build_output>true</master_skip_copy_webpack_build_output>
</properties>
<dependencies>
<dependency>
<groupId>org.eclipse.scout.rt</groupId>
<artifactId>org.eclipse.scout.rt.ui.html</artifactId>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.scout.rt</groupId>
<artifactId>org.eclipse.scout.rt.ui.html.test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>