You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2021/03/13 22:03:04 UTC

[httpcomponents-website] branch master updated: Moved sample code module into a separate profile disabled by default

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

olegk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/httpcomponents-website.git


The following commit(s) were added to refs/heads/master by this push:
     new 68dd7b7  Moved sample code module into a separate profile disabled by default
68dd7b7 is described below

commit 68dd7b7ef6f952769203c5d9e08a95a7ab624a96
Author: Oleg Kalnichevski <ol...@apache.org>
AuthorDate: Sat Mar 13 23:02:50 2021 +0100

    Moved sample code module into a separate profile disabled by default
---
 pom.xml | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/pom.xml b/pom.xml
index 109e4b0..85d9fe9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -54,10 +54,6 @@
     </site>
   </distributionManagement>
 
-  <modules>
-    <module>samples</module>
-  </modules>
-
   <reporting>
     <plugins>
         <plugin>
@@ -148,4 +144,13 @@
     </plugins>
   </build>
 
+  <profiles>
+    <profile>
+      <id>sample-code</id>
+      <modules>
+        <module>samples</module>
+      </modules>
+    </profile>
+  </profiles>
+
 </project>