From mboxrd@z Thu Jan 1 00:00:00 1970 From: Danny Milosavljevic Subject: Specifying Java version when using ant-build-system Date: Mon, 15 Aug 2016 16:17:34 +0200 Message-ID: <20160815161734.43f11abd@scratchpost.org> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34132) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bZIhy-0001L7-Jq for guix-devel@gnu.org; Mon, 15 Aug 2016 10:17:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bZIhv-0007Sj-Cw for guix-devel@gnu.org; Mon, 15 Aug 2016 10:17:42 -0400 Received: from dd1012.kasserver.com ([85.13.128.8]:50104) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bZIhv-0007Sd-5w for guix-devel@gnu.org; Mon, 15 Aug 2016 10:17:39 -0400 Received: from localhost (77.116.250.13.wireless.dyn.drei.com [77.116.250.13]) by dd1012.kasserver.com (Postfix) with ESMTPSA id CC07F1CA00E7 for ; Mon, 15 Aug 2016 16:17:37 +0200 (CEST) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org Hi, how can I specify that I need a Java 1.8 compiler and source level when using ant-build-system? Also, guix/build-system/ant.scm says: (define* (ant-build store name inputs #:key (tests? #t) (test-target "tests") (configure-flags ''()) (make-flags ''()) (build-target "jar") (jar-name #f) (phases '(@ (guix build ant-build-system) %standard-phases)) (outputs '("out")) (search-paths '()) (system (%current-system)) (guile #f)p ^^^ what does this mean? (imported-modules %ant-build-system-modules) (modules '((guix build ant-build-system) (guix build utils))))