From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 37D3E138334 for ; Wed, 30 Oct 2019 17:35:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4A756E0849; Wed, 30 Oct 2019 17:35:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 317B4E0849 for ; Wed, 30 Oct 2019 17:35:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E68E234C5B3 for ; Wed, 30 Oct 2019 17:35:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B317F8A1 for ; Wed, 30 Oct 2019 17:35:15 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1473405040.5efa2cb1e7912a64fca08378ba6426eb88c36766.mgorny@gentoo> Subject: [gentoo-commits] proj/java-ebuilder:master commit in: src/main/java/org/gentoo/java/ebuilder/maven/ X-VCS-Repository: proj/java-ebuilder X-VCS-Files: src/main/java/org/gentoo/java/ebuilder/maven/MavenEbuilder.java X-VCS-Directories: src/main/java/org/gentoo/java/ebuilder/maven/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 5efa2cb1e7912a64fca08378ba6426eb88c36766 X-VCS-Branch: master Date: Wed, 30 Oct 2019 17:35:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c18670d3-ac62-449e-add0-58fe98acad1c X-Archives-Hash: 7fc1ba1b55a6f1e93cca4a5aeb8997e0 commit: 5efa2cb1e7912a64fca08378ba6426eb88c36766 Author: Miroslav Šulc fordfrog com> AuthorDate: Fri Sep 9 07:10:40 2016 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Sep 9 07:10:40 2016 +0000 URL: https://gitweb.gentoo.org/proj/java-ebuilder.git/commit/?id=5efa2cb1 added some comments useful for generation of ebuild from multiple projects .../org/gentoo/java/ebuilder/maven/MavenEbuilder.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/main/java/org/gentoo/java/ebuilder/maven/MavenEbuilder.java b/src/main/java/org/gentoo/java/ebuilder/maven/MavenEbuilder.java index f717d9b..c6e18bd 100644 --- a/src/main/java/org/gentoo/java/ebuilder/maven/MavenEbuilder.java +++ b/src/main/java/org/gentoo/java/ebuilder/maven/MavenEbuilder.java @@ -489,6 +489,22 @@ public class MavenEbuilder { final List mavenProjects, final PrintWriter writer) { // TODO: implement multiple-project script throw new UnsupportedOperationException("Not implemented yet."); + + // Global: + // JAVA_GENTOO_CLASSPATH + // JAVA_CLASSPATH_EXTRA + // JAVA_GENTOO_TEST_CLASSPATH + // JAVA_ENCODING (unless it differs in projects) + // Compile (jars, doc): + // JAVA_SRC_DIR + // JAVA_RESOURCE_DIRS + // JAVA_ENCODING (in case project encodings are different) + // Test: + // JAVA_TESTING_FRAMEWORK + // JAVA_TEST_SRC_DIR + // JAVA_TEST_RESOURCE_DIRS + // Install (jars, doc, sources): + // JAVA_MAIN_CLASS } /**