diff options
author | PJ Fanning <fanningpj@apache.org> | 2020-12-17 20:00:55 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2020-12-17 20:00:55 +0000 |
commit | 7408516467c4bd9dc421a0181787028b7770b288 (patch) | |
tree | 270025ab5f1071b274a600f95c7b4e247482fdb4 | |
parent | e1b0bc6e1db18aa9fe0314ee77559c116742f3cd (diff) | |
download | poi-7408516467c4bd9dc421a0181787028b7770b288.tar.gz poi-7408516467c4bd9dc421a0181787028b7770b288.zip |
[github-207] add SLF4JLogger
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1884569 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | sonar/main/pom.xml | 145 |
1 files changed, 75 insertions, 70 deletions
diff --git a/sonar/main/pom.xml b/sonar/main/pom.xml index b2a7da5992..18469315f2 100644 --- a/sonar/main/pom.xml +++ b/sonar/main/pom.xml @@ -14,63 +14,63 @@ <name>Apache POI Main 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> - <phase>generate-sources</phase> - <goals> - <goal>copy-resources</goal> - </goals> - <configuration> - <outputDirectory>${basedir}/src/main/java</outputDirectory> - <resources> - <resource> - <directory>../../src/java</directory> - </resource> - </resources> - </configuration> - </execution> - <execution> - <id>copy-resources</id> - <phase>generate-resources</phase> - <goals> - <goal>copy-resources</goal> - </goals> - <configuration> - <outputDirectory>${basedir}/src/main/resources</outputDirectory> - <resources> - <resource> - <directory>../../src/resources/main</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/testcases</directory> - </resource> - </resources> - </configuration> - </execution> - </executions> - </plugin> + <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> + <phase>generate-sources</phase> + <goals> + <goal>copy-resources</goal> + </goals> + <configuration> + <outputDirectory>${basedir}/src/main/java</outputDirectory> + <resources> + <resource> + <directory>../../src/java</directory> + </resource> + </resources> + </configuration> + </execution> + <execution> + <id>copy-resources</id> + <phase>generate-resources</phase> + <goals> + <goal>copy-resources</goal> + </goals> + <configuration> + <outputDirectory>${basedir}/src/main/resources</outputDirectory> + <resources> + <resource> + <directory>../../src/resources/main</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/testcases</directory> + </resource> + </resources> + </configuration> + </execution> + </executions> + </plugin> - <!-- clean copied sources afterwards --> - <plugin> + <!-- clean copied sources afterwards --> + <plugin> <artifactId>maven-clean-plugin</artifactId> <version>${maven.plugin.clean.version}</version> <configuration> @@ -83,20 +83,20 @@ </configuration> </plugin> - <!-- provide the test-jar for other modules --> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-jar-plugin</artifactId> - <version>${maven.plugin.jar.version}</version> - <executions> - <execution> - <goals> - <goal>test-jar</goal> - </goals> - </execution> - </executions> - </plugin> - </plugins> + <!-- provide the test-jar for other modules --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <version>${maven.plugin.jar.version}</version> + <executions> + <execution> + <goals> + <goal>test-jar</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> </build> <dependencies> @@ -125,5 +125,10 @@ <artifactId>commons-logging</artifactId> <version>1.2</version> </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + <version>1.7.30</version> + </dependency> </dependencies> </project> |