diff options
Diffstat (limited to 'sonar/main/pom.xml')
-rw-r--r-- | sonar/main/pom.xml | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/sonar/main/pom.xml b/sonar/main/pom.xml new file mode 100644 index 0000000000..81e87aa168 --- /dev/null +++ b/sonar/main/pom.xml @@ -0,0 +1,54 @@ +<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-main</artifactId> + <packaging>jar</packaging> + + <name>Apache POI Main package</name> + + <build> + <sourceDirectory>../../src/java</sourceDirectory> + <testSourceDirectory>../../src/testcases</testSourceDirectory> + <resources> + <resource> + <directory>../../src/resources/main</directory> + </resource> + </resources> + + <plugins> + <!-- provide the test-jar for other modules --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <version>2.4</version> + <executions> + <execution> + <goals> + <goal>test-jar</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + + <dependencies> + <dependency> + <groupId>commons-codec</groupId> + <artifactId>commons-codec</artifactId> + <version>1.9</version> + </dependency> + <dependency> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + <version>1.1.3</version> + </dependency> + </dependencies> +</project> |