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:48 UTC

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

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>