41 lines
1.2 KiB
XML
41 lines
1.2 KiB
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/maven-v4_0_0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<parent>
|
||
|
<groupId>org.apache.poi</groupId>
|
||
|
<artifactId>poi-parent</artifactId>
|
||
|
<version>3.11-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
<artifactId>poi-scratchpad</artifactId>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<name>Apache POI Scratchpad package</name>
|
||
|
|
||
|
<build>
|
||
|
<sourceDirectory>../../src/scratchpad/src</sourceDirectory>
|
||
|
<testSourceDirectory>../../src/scratchpad/testcases</testSourceDirectory>
|
||
|
<resources>
|
||
|
<resource>
|
||
|
<directory>../../src/resources/scratchpad</directory>
|
||
|
</resource>
|
||
|
</resources>
|
||
|
</build>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>${project.groupId}</groupId>
|
||
|
<artifactId>poi-main</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>${project.groupId}</groupId>
|
||
|
<artifactId>poi-main</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
<type>test-jar</type>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|