aboutsummaryrefslogtreecommitdiffstats
path: root/sonar/ooxml/pom.xml
diff options
context:
space:
mode:
authorDominik Stadler <centic@apache.org>2015-08-16 20:51:40 +0000
committerDominik Stadler <centic@apache.org>2015-08-16 20:51:40 +0000
commitb49c01c35595a4b51af8e70fbd57d0b78167f61a (patch)
tree5d118662f55a82fae6c50409cbe454a4ac75db5b /sonar/ooxml/pom.xml
parentf39dc1387ffc611aac0f093bdbf212e77baa9661 (diff)
downloadpoi-b49c01c35595a4b51af8e70fbd57d0b78167f61a.tar.gz
poi-b49c01c35595a4b51af8e70fbd57d0b78167f61a.zip
Try to make Sonar builds run again: add missing dependency, add ooxml-schema-security, don't depend on dir test-data and build-directory directly, don't override a POILogger that is set via System Properties
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1696165 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sonar/ooxml/pom.xml')
-rw-r--r--sonar/ooxml/pom.xml24
1 files changed, 21 insertions, 3 deletions
diff --git a/sonar/ooxml/pom.xml b/sonar/ooxml/pom.xml
index 994b232ea1..4df81fe121 100644
--- a/sonar/ooxml/pom.xml
+++ b/sonar/ooxml/pom.xml
@@ -22,7 +22,6 @@
<executions>
<execution>
<id>copy-sources</id>
- <!-- here the phase you need -->
<phase>generate-sources</phase>
<goals>
<goal>copy-resources</goal>
@@ -38,7 +37,6 @@
</execution>
<execution>
<id>copy-resources</id>
- <!-- here the phase you need -->
<phase>generate-resources</phase>
<goals>
<goal>copy-resources</goal>
@@ -54,7 +52,6 @@
</execution>
<execution>
<id>copy-tests</id>
- <!-- here the phase you need -->
<phase>generate-test-sources</phase>
<goals>
<goal>copy-resources</goal>
@@ -98,6 +95,11 @@
<version>${project.version}</version>
</dependency>
<dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>poi-ooxml-schema-security</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
<groupId>${project.groupId}</groupId>
<artifactId>poi-main</artifactId>
<version>${project.version}</version>
@@ -116,6 +118,22 @@
<version>2.6.0</version>
</dependency>
+ <dependency>
+ <groupId>org.bouncycastle</groupId>
+ <artifactId>bcpkix-jdk15on</artifactId>
+ <version>1.51</version>
+ </dependency>
+ <dependency>
+ <groupId>org.bouncycastle</groupId>
+ <artifactId>bcprov-jdk15on</artifactId>
+ <version>1.51</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.santuario</groupId>
+ <artifactId>xmlsec</artifactId>
+ <version>2.0.1</version>
+ </dependency>
+
<!-- non-test dependency for OOXMLLite -->
<dependency>
<groupId>junit</groupId>