You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2021/12/31 19:43:55 UTC

[commons-configuration] branch master updated: Remove obsolete profile and documentation.

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

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-configuration.git


The following commit(s) were added to refs/heads/master by this push:
     new 11867b8  Remove obsolete profile and documentation.
11867b8 is described below

commit 11867b8397c2af62edcaa9f53b68659d4f71b805
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Dec 31 14:43:52 2021 -0500

    Remove obsolete profile and documentation.
---
 pom.xml                    | 32 --------------------------------
 src/site/xdoc/building.xml | 28 ----------------------------
 2 files changed, 60 deletions(-)

diff --git a/pom.xml b/pom.xml
index 6186dea..9e1ef20 100644
--- a/pom.xml
+++ b/pom.xml
@@ -778,38 +778,6 @@
   </build>
   <profiles>
     <profile>
-      <id>webdav</id>
-      <activation>
-        <activeByDefault>false</activeByDefault>
-      </activation>
-      <dependencies>
-        <dependency>
-          <groupId>org.apache.jackrabbit</groupId>
-          <artifactId>jackrabbit-webdav</artifactId>
-          <version>1.5.2</version>
-          <scope>test</scope>
-        </dependency>
-      </dependencies>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-surefire-plugin</artifactId>
-            <configuration>
-              <forkMode>once</forkMode>
-              <systemPropertyVariables>
-                <java.awt.headless>true</java.awt.headless>
-                <test.webdav.base>${test.webdav.base}</test.webdav.base>
-              </systemPropertyVariables>
-              <includes>
-                <include>**/TestWebdavConfigurationBuilder.java</include>
-              </includes>
-            </configuration>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-    <profile>
       <id>java9</id>
       <activation>
         <jdk>9</jdk>
diff --git a/src/site/xdoc/building.xml b/src/site/xdoc/building.xml
index 870bbb7..e07e6e8 100644
--- a/src/site/xdoc/building.xml
+++ b/src/site/xdoc/building.xml
@@ -43,33 +43,5 @@
             requires JDK 1.7 or higher.
           </p>
         </section>
-        <section name="Running Functional Tests">
-          <p>
-            <code>TestWebdavConfigurationBuilder</code> is a functional test that tests
-            DefaultConfigurationBuilder with the configuration files stored in a WebDAV
-            server. To run the test, execute the steps that follow
-            <ol>
-              <li>Copy all the files in the conf directory to the WebDAV server. Not all the
-              files are required but it is generally easier to use a tool like cadaver
-              and do an mput than try to copy the required files individually.</li>
-              <li>Add the following to the profiles section of settings.xml in the Maven home
-              directory. Modify the urls to match your setup.
-<source><![CDATA[
-   <profile>
-    <profile>
-      <id>webdav</id>
-      <activation>
-        <activeByDefault>false</activeByDefault>
-      </activation>
-      <properties>
-        <test.webdav.base>webdav://vfsusr:vfstest@192.168.10.133:80/conf</test.webdav.base>
-      </properties>
-    </profile>]]></source></li>
-              <li>run "mvn -P webdav test -Dtest=TestWebdavConfigurationBuilder". The test
-              can also be run using "mvn -P webdav test" but this will run all the unit tests
-              in addition to the WebDAV test.</li>
-            </ol>
-          </p>
-        </section>
     </body>
 </document>