26 lines
762 B
XML
26 lines
762 B
XML
|
|
||
|
<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>fr.pandacube.pandacube</groupId>
|
||
|
<artifactId>pandacube-parent</artifactId>
|
||
|
<version>1.0-beta4</version>
|
||
|
</parent>
|
||
|
|
||
|
<artifactId>pandacube-logviewer</artifactId>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<name>LogViewer</name>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-collections4</artifactId>
|
||
|
<version>4.1</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|