You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jspwiki.apache.org by ju...@apache.org on 2018/10/28 23:26:16 UTC

[jspwiki] 01/17: bring down configuration for java modules to parent pom

This is an automated email from the ASF dual-hosted git repository.

juanpablo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jspwiki.git

commit 2ed0b0df8cb8720ca68680e04a0f98303b571a4b
Author: juanpablo <ju...@apache.org>
AuthorDate: Sun Oct 28 15:14:52 2018 +0100

    bring down configuration for java modules to parent pom
---
 pom.xml | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index eb582e5..db79277 100644
--- a/pom.xml
+++ b/pom.xml
@@ -47,7 +47,7 @@
     <lucene.version>4.7.0</lucene.version>
     <selenium.version>2.42.0</selenium.version>
     <slf4j.version>1.7.25</slf4j.version>
-	<tomcat.version>8.5.34</tomcat.version>
+    <tomcat.version>8.5.34</tomcat.version>
     <wro4j.version>1.8.0</wro4j.version>
     <minimize>true</minimize> <!-- wro4j compression -->
   </properties>
@@ -360,6 +360,16 @@
           <configuration>
             <downloadSources>true</downloadSources>
             <downloadJavadocs>true</downloadJavadocs>
+            <additionalConfig>
+              <file>
+                <name>.checkstyle</name>
+                <location>./src/main/config/dev/jspwiki-checkstyle.xml</location>
+              </file>
+              <file>
+                <name>.settings/org.eclipse.jdt.core.prefs</name>
+                <location>./src/main/config/dev/jspwiki-eclipse-codestyle.xml</location>
+              </file>
+            </additionalConfig>
             <additionalProjectnatures>
               <projectnature>net.sourceforge.metrics.nature</projectnature>
               <projectnature>net.sf.eclipsecs.core.CheckstyleNature</projectnature>
@@ -488,6 +498,11 @@
         <plugin>
           <artifactId>maven-surefire-plugin</artifactId>
           <version>2.22.0</version>
+          <configuration>
+            <systemPropertyVariables>
+              <java.io.tmpdir>${project.build.directory}</java.io.tmpdir>
+            </systemPropertyVariables>
+          </configuration>
         </plugin>
 
         <plugin>