aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCédric Walter <cedricwalter@apache.org>2014-04-02 07:26:59 +0000
committerCédric Walter <cedricwalter@apache.org>2014-04-02 07:26:59 +0000
commit22710d154bf07c6199fae02b53fed928bac53061 (patch)
tree938ebc8cceec3b9ffad77540b0dd22e72e1879b5
parentd9a03b14b04ad5715b3f87b989f2826e10caadef (diff)
downloadpoi-22710d154bf07c6199fae02b53fed928bac53061.tar.gz
poi-22710d154bf07c6199fae02b53fed928bac53061.zip
removed uneeded config in poi-ooxml module
git-svn-id: https://svn.apache.org/repos/asf/poi/branches/maven@1583911 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--poi-ooxml/pom.xml77
1 files changed, 1 insertions, 76 deletions
diff --git a/poi-ooxml/pom.xml b/poi-ooxml/pom.xml
index 5406b7f401..87375fcd85 100644
--- a/poi-ooxml/pom.xml
+++ b/poi-ooxml/pom.xml
@@ -28,84 +28,9 @@
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>poi-ooxml</artifactId>
- <packaging>pom</packaging>
<name>Apache POI OOXML package</name>
- <url>http://poi.apache.org/</url>
<description>Apache POI - Java API To Access Microsoft Format Files</description>
-
-
- <build>
- <plugins>
- <!-- copy sources, resources and tests in place as otherwise Sonar does not pick them up correctly! -->
- <plugin>
- <artifactId>maven-resources-plugin</artifactId>
- <version>2.6</version>
- <executions>
- <execution>
- <id>copy-sources</id>
- <!-- here the phase you need -->
- <phase>generate-sources</phase>
- <goals>
- <goal>copy-resources</goal>
- </goals>
- <configuration>
- <outputDirectory>${basedir}/src/main/java</outputDirectory>
- <resources>
- <resource>
- <directory>../../src/ooxml/java</directory>
- </resource>
- </resources>
- </configuration>
- </execution>
- <execution>
- <id>copy-resources</id>
- <!-- here the phase you need -->
- <phase>generate-resources</phase>
- <goals>
- <goal>copy-resources</goal>
- </goals>
- <configuration>
- <outputDirectory>${basedir}/src/main/resources</outputDirectory>
- <resources>
- <resource>
- <directory>../../src/resources/ooxml</directory>
- </resource>
- </resources>
- </configuration>
- </execution>
- <execution>
- <id>copy-tests</id>
- <!-- here the phase you need -->
- <phase>generate-test-sources</phase>
- <goals>
- <goal>copy-resources</goal>
- </goals>
- <configuration>
- <outputDirectory>${basedir}/src/test/java</outputDirectory>
- <resources>
- <resource>
- <directory>../../src/ooxml/testcases</directory>
- </resource>
- </resources>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <!-- clean copied sources afterwards -->
- <plugin>
- <artifactId>maven-clean-plugin</artifactId>
- <version>2.5</version>
- <configuration>
- <filesets>
- <fileset>
- <directory>src</directory>
- <followSymlinks>false</followSymlinks>
- </fileset>
- </filesets>
- </configuration>
- </plugin>
- </plugins>
- </build>
+ <url>http://poi.apache.org/</url>
<dependencies>
<dependency>