aboutsummaryrefslogtreecommitdiffstats
path: root/sonar/scratchpad/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'sonar/scratchpad/pom.xml')
-rw-r--r--sonar/scratchpad/pom.xml40
1 files changed, 40 insertions, 0 deletions
diff --git a/sonar/scratchpad/pom.xml b/sonar/scratchpad/pom.xml
new file mode 100644
index 0000000000..3824eeaace
--- /dev/null
+++ b/sonar/scratchpad/pom.xml
@@ -0,0 +1,40 @@
+<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>