You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ts...@apache.org on 2020/08/08 09:39:45 UTC

[logging-log4cxx] branch gphr_30_docs created (now 102e77e)

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

tschoening pushed a change to branch gphr_30_docs
in repository https://gitbox.apache.org/repos/asf/logging-log4cxx.git.


      at 102e77e  Added a PoC to model necessary bins for tests using a local MVN-repo.

This branch includes the following new commits:

     new 55ff966  Merge commit 'refs/pull/30/head' of https://github.com/apache/logging-log4cxx into gphr_30_docs
     new bc4679e  Keep the dependencies, but try to make more use of them regarding necessary binaries to test with.
     new ac9305f  A PoC of adding depenencies like GREP etc. using Maven and public repos.
     new 102e77e  Added a PoC to model necessary bins for tests using a local MVN-repo.

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[logging-log4cxx] 02/04: Keep the dependencies, but try to make more use of them regarding necessary binaries to test with.

Posted by ts...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tschoening pushed a commit to branch gphr_30_docs
in repository https://gitbox.apache.org/repos/asf/logging-log4cxx.git

commit bc4679e44e94d4d621a975f1f2ec03ac3b0f39db
Author: Thorsten Schöning <ts...@am-soft.de>
AuthorDate: Sat Aug 8 10:59:38 2020 +0200

    Keep the dependencies, but try to make more use of them regarding necessary binaries to test with.
    
    This reverts commit b42df2f2a6f8b1eafc6ad36b222c2a0edf8a7244.
---
 pom.xml           | 1 +
 src/site/site.xml | 3 +++
 2 files changed, 4 insertions(+)

diff --git a/pom.xml b/pom.xml
index b77bfce..fe1cccc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -372,6 +372,7 @@
 					<reportSet>
 						<reports>
 							<report>scm</report>
+							<report>dependencies</report>
 							<report>mailing-list</report>
 							<report>license</report>
 						</reports>
diff --git a/src/site/site.xml b/src/site/site.xml
index 1a9c6f8..c19d505 100644
--- a/src/site/site.xml
+++ b/src/site/site.xml
@@ -103,6 +103,9 @@
 			<item	name="Repository"
 					href="/source-repository.html"
 			/>
+			<item	name="Dependencies"
+					href="dependencies.html"
+			/>
 			<item	name="Building"
 					href="/building/index.html">
 				<item	name="Apache Maven 2"


[logging-log4cxx] 03/04: A PoC of adding depenencies like GREP etc. using Maven and public repos.

Posted by ts...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tschoening pushed a commit to branch gphr_30_docs
in repository https://gitbox.apache.org/repos/asf/logging-log4cxx.git

commit ac9305f2b619835749beb0db57342f7e464cfc2d
Author: Thorsten Schöning <ts...@am-soft.de>
AuthorDate: Sat Aug 8 11:04:54 2020 +0200

    A PoC of adding depenencies like GREP etc. using Maven and public repos.
---
 pom.xml | 45 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)

diff --git a/pom.xml b/pom.xml
index fe1cccc..e8a639b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -9,6 +9,22 @@
 	<url>http://logging.apache.org/log4cxx</url>
 	<inceptionYear>2003</inceptionYear>
 
+	<repositories>
+		<!-- Apache APR -->
+		<repository>
+			<id>mvn_tmatesoft_com</id>
+			<name>maven.tmatesoft.com</name>
+			<url>https://maven.tmatesoft.com/content/repositories/releases</url>
+		</repository>
+
+		<!-- SED, GREP -->
+		<repository>
+			<id>mvn_bintray_com</id>
+			<name>dl.bintray.com</name>
+			<url>https://dl.bintray.com/jfrog/jfrog-jars/</url>
+		</repository>
+	</repositories>
+
 	<issueManagement>
 		<system>JIRA</system>
 		<url>https://issues.apache.org/jira/browse/LOGCXX</url>
@@ -355,11 +371,40 @@
 
 	<dependencies>
 		<dependency>
+			<groupId>org.apache.apr</groupId>
+			<artifactId>apr</artifactId>
+			<version>1.5.2</version>
+			<scope>compile</scope>
+			<type>pom</type>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.apr</groupId>
+			<artifactId>apr-util</artifactId>
+			<version>1.5.4</version>
+			<scope>compile</scope>
+			<type>pom</type>
+		</dependency>
+
+		<dependency>
 			<groupId>log4j</groupId>
 			<artifactId>log4j</artifactId>
 			<version>1.2.14</version>
 			<scope>test</scope>
 		</dependency>
+		<dependency>
+			<groupId>grep</groupId>
+			<artifactId>grep</artifactId>
+			<version>2.5.4</version>
+			<scope>test</scope>
+			<type>pom</type>
+		</dependency>
+		<dependency>
+			<groupId>sed</groupId>
+			<artifactId>sed</artifactId>
+			<version>4.2.1</version>
+			<scope>test</scope>
+			<type>pom</type>
+		</dependency>
 	</dependencies>
 
 	<reporting>


[logging-log4cxx] 01/04: Merge commit 'refs/pull/30/head' of https://github.com/apache/logging-log4cxx into gphr_30_docs

Posted by ts...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tschoening pushed a commit to branch gphr_30_docs
in repository https://gitbox.apache.org/repos/asf/logging-log4cxx.git

commit 55ff966a916ffa19e3790f61e4e70a2b1171ee8a
Merge: e27b494 6a4901d
Author: Thorsten Schöning <ts...@am-soft.de>
AuthorDate: Sat Aug 8 10:56:27 2020 +0200

    Merge commit 'refs/pull/30/head' of https://github.com/apache/logging-log4cxx into gphr_30_docs

 INSTALL                           | 26 +++++-------
 pom.xml                           |  1 -
 src/site/apt/building/vstudio.apt | 86 ---------------------------------------
 src/site/site.xml                 |  3 --
 src/site/xdoc/building/index.xml  | 65 +++++++++++++++++++++--------
 5 files changed, 59 insertions(+), 122 deletions(-)

diff --cc src/site/site.xml
index c19d505,e4ce6db..1a9c6f8
--- a/src/site/site.xml
+++ b/src/site/site.xml
@@@ -103,11 -103,11 +103,8 @@@
  			<item	name="Repository"
  					href="/source-repository.html"
  			/>
- 			<item	name="Dependencies"
- 					href="dependencies.html"
- 			/>
  			<item	name="Building"
  					href="/building/index.html">
 -				<item	name="autotools"
 -						href="/building/autotools.html"
 -				/>
  				<item	name="Apache Maven 2"
  						href="/building/maven.html"
  				/>


[logging-log4cxx] 04/04: Added a PoC to model necessary bins for tests using a local MVN-repo.

Posted by ts...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tschoening pushed a commit to branch gphr_30_docs
in repository https://gitbox.apache.org/repos/asf/logging-log4cxx.git

commit 102e77e9c323d421a3303e24fd2fe5aee2ee0f34
Author: Thorsten Schöning <ts...@am-soft.de>
AuthorDate: Sat Aug 8 11:39:25 2020 +0200

    Added a PoC to model necessary bins for tests using a local MVN-repo.
---
 pom.xml                                            | 31 +++++++++++++---------
 .../log4cxx/test-bins/grep/3.1.0/grep-3.1.0.pom    | 10 +++++++
 .../log4cxx/test-bins/gzip/1.10.0/gzip-1.10.0.pom  | 10 +++++++
 .../log4cxx/test-bins/sed/4.8.0/sed-4.8.0.pom      | 10 +++++++
 4 files changed, 49 insertions(+), 12 deletions(-)

diff --git a/pom.xml b/pom.xml
index e8a639b..26c0e4b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -17,11 +17,10 @@
 			<url>https://maven.tmatesoft.com/content/repositories/releases</url>
 		</repository>
 
-		<!-- SED, GREP -->
+		<!-- Local repos to model non-public dependencies for different purposes. -->
 		<repository>
-			<id>mvn_bintray_com</id>
-			<name>dl.bintray.com</name>
-			<url>https://dl.bintray.com/jfrog/jfrog-jars/</url>
+			<id>log4cxx_test_bins</id>
+			<url>file:///${project.basedir}/src/test/mvn_repo</url>
 		</repository>
 	</repositories>
 
@@ -386,25 +385,33 @@
 		</dependency>
 
 		<dependency>
-			<groupId>log4j</groupId>
-			<artifactId>log4j</artifactId>
-			<version>1.2.14</version>
+			<groupId>org.apache.logging.log4cxx.test-bins</groupId>
+			<artifactId>grep</artifactId>
+			<version>3.1.0</version>
 			<scope>test</scope>
+			<type>pom</type>
 		</dependency>
 		<dependency>
-			<groupId>grep</groupId>
-			<artifactId>grep</artifactId>
-			<version>2.5.4</version>
+			<groupId>org.apache.logging.log4cxx.test-bins</groupId>
+			<artifactId>gzip</artifactId>
+			<version>1.10.0</version>
 			<scope>test</scope>
 			<type>pom</type>
 		</dependency>
 		<dependency>
-			<groupId>sed</groupId>
+			<groupId>org.apache.logging.log4cxx.test-bins</groupId>
 			<artifactId>sed</artifactId>
-			<version>4.2.1</version>
+			<version>4.8.0</version>
 			<scope>test</scope>
 			<type>pom</type>
 		</dependency>
+
+		<dependency>
+			<groupId>log4j</groupId>
+			<artifactId>log4j</artifactId>
+			<version>1.2.14</version>
+			<scope>test</scope>
+		</dependency>
 	</dependencies>
 
 	<reporting>
diff --git a/src/test/mvn_repo/org/apache/logging/log4cxx/test-bins/grep/3.1.0/grep-3.1.0.pom b/src/test/mvn_repo/org/apache/logging/log4cxx/test-bins/grep/3.1.0/grep-3.1.0.pom
new file mode 100644
index 0000000..cb2203b
--- /dev/null
+++ b/src/test/mvn_repo/org/apache/logging/log4cxx/test-bins/grep/3.1.0/grep-3.1.0.pom
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+			xmlns="http://maven.apache.org/POM/4.0.0"
+			xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+	<modelVersion>4.0.0</modelVersion>
+	<groupId>org.apache.logging.log4cxx.test-bins</groupId>
+	<artifactId>grep</artifactId>
+	<version>3.1.0</version>
+	<packaging>zip</packaging>
+</project>
diff --git a/src/test/mvn_repo/org/apache/logging/log4cxx/test-bins/gzip/1.10.0/gzip-1.10.0.pom b/src/test/mvn_repo/org/apache/logging/log4cxx/test-bins/gzip/1.10.0/gzip-1.10.0.pom
new file mode 100644
index 0000000..bb7193a
--- /dev/null
+++ b/src/test/mvn_repo/org/apache/logging/log4cxx/test-bins/gzip/1.10.0/gzip-1.10.0.pom
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+			xmlns="http://maven.apache.org/POM/4.0.0"
+			xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+	<modelVersion>4.0.0</modelVersion>
+	<groupId>org.apache.logging.log4cxx.test-bins</groupId>
+	<artifactId>gzip</artifactId>
+	<version>1.10.0</version>
+	<packaging>zip</packaging>
+</project>
diff --git a/src/test/mvn_repo/org/apache/logging/log4cxx/test-bins/sed/4.8.0/sed-4.8.0.pom b/src/test/mvn_repo/org/apache/logging/log4cxx/test-bins/sed/4.8.0/sed-4.8.0.pom
new file mode 100644
index 0000000..3bb3d3a
--- /dev/null
+++ b/src/test/mvn_repo/org/apache/logging/log4cxx/test-bins/sed/4.8.0/sed-4.8.0.pom
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+			xmlns="http://maven.apache.org/POM/4.0.0"
+			xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+	<modelVersion>4.0.0</modelVersion>
+	<groupId>org.apache.logging.log4cxx.test-bins</groupId>
+	<artifactId>sed</artifactId>
+	<version>4.8.0</version>
+	<packaging>zip</packaging>
+</project>