aboutsummaryrefslogtreecommitdiffstats
path: root/sonar/excelant
diff options
context:
space:
mode:
authorAndreas Beeker <kiwiwings@apache.org>2021-09-12 20:31:43 +0000
committerAndreas Beeker <kiwiwings@apache.org>2021-09-12 20:31:43 +0000
commit596db3117021cea11793fff2d3018e5e2907a2c9 (patch)
tree2af7961416ce3c30cc037de1a62c7b58783faae4 /sonar/excelant
parent99047b5245ea588419cd45b8a8ac3a1ca15494ea (diff)
downloadpoi-596db3117021cea11793fff2d3018e5e2907a2c9.tar.gz
poi-596db3117021cea11793fff2d3018e5e2907a2c9.zip
XmlSec/BouncyCastle and Batik are now optional
disable SonarQube build based on ant remove sonar and maven directory, because POMs are now created via Gradle remove maven section from seed-build fix duplicated maven dependencies on POM export git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1893289 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sonar/excelant')
-rw-r--r--sonar/excelant/pom.xml117
1 files changed, 0 insertions, 117 deletions
diff --git a/sonar/excelant/pom.xml b/sonar/excelant/pom.xml
deleted file mode 100644
index f54c92222e..0000000000
--- a/sonar/excelant/pom.xml
+++ /dev/null
@@ -1,117 +0,0 @@
-<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>5.1.1-SNAPSHOT</version>
- </parent>
- <artifactId>poi-excelant</artifactId>
- <packaging>jar</packaging>
-
- <name>Apache POI ExcelAnt package</name>
-
- <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>${maven.plugin.resources.version}</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>../../poi-excelant/src/main/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>../../poi-excelant/src/main/resources</directory>
- </resource>
- <resource>
- <directory>../../poi-excelant/src/test/resources</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>../../poi-excelant/src/test/java</directory>
- </resource>
- </resources>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <!-- clean copied sources afterwards -->
- <plugin>
- <artifactId>maven-clean-plugin</artifactId>
- <version>${maven.plugin.clean.version}</version>
- <configuration>
- <filesets>
- <fileset>
- <directory>src</directory>
- <followSymlinks>false</followSymlinks>
- </fileset>
- </filesets>
- </configuration>
- </plugin>
- </plugins>
- </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>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>poi-ooxml</artifactId>
- <version>${project.version}</version>
- </dependency>
-
- <dependency>
- <groupId>org.apache.ant</groupId>
- <artifactId>ant</artifactId>
- <version>1.10.9</version>
- </dependency>
- </dependencies>
-</project>