From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from MTA-15-3.privateemail.com (MTA-15-3.privateemail.com [198.54.122.111]) by sourceware.org (Postfix) with ESMTPS id 860DE3858424 for ; Thu, 5 Aug 2021 00:21:26 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 860DE3858424 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=eatonphil.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=eatonphil.com Received: from mta-15.privateemail.com (localhost [127.0.0.1]) by mta-15.privateemail.com (Postfix) with ESMTP id 7809D18001AA for ; Wed, 4 Aug 2021 20:21:25 -0400 (EDT) Received: from mail-vs1-f41.google.com (unknown [10.20.151.235]) by mta-15.privateemail.com (Postfix) with ESMTPA id 5F16718001A1 for ; Wed, 4 Aug 2021 20:21:25 -0400 (EDT) Received: by mail-vs1-f41.google.com with SMTP id j10so2062149vsl.10 for ; Wed, 04 Aug 2021 17:21:25 -0700 (PDT) X-Gm-Message-State: AOAM5304bjpK95oKXuSLzWMeimuWTZn/AtbJfOHvCTJpy7uWx3MqpzAv tbndO5wEfXHEUOi7uDtP/XgJ/hCszZBIKnOAfTA= X-Google-Smtp-Source: ABdhPJyqTcfxqcY6MTSw6yzHKlKCipbEArXEKxClIEBP/Cad3orCJw0ApoWClOxaG5TOS4vo4fhieMx3NakuJ8uePOA= X-Received: by 2002:a67:fa84:: with SMTP id f4mr2530708vsq.59.1628122884643; Wed, 04 Aug 2021 17:21:24 -0700 (PDT) MIME-Version: 1.0 From: Phil Eaton Date: Wed, 4 Aug 2021 20:21:07 -0400 X-Gmail-Original-Message-ID: Message-ID: Subject: Example of importing a jar (from ~/.m2/repository) To: kawa@sourceware.org X-Virus-Scanned: ClamAV using ClamSMTP X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_40, HTML_MESSAGE, KAM_DMARC_STATUS, RCVD_IN_MSPIKE_H2, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: kawa@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Kawa mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Aug 2021 00:21:28 -0000 Hey folks, New to Java and Kawa. I'm trying to import a web server library that I installed through maven. The minimal program I'm running is this (test.scm): (import (class io.jooby Context)) And I run it by making all maven jars available in the CLASSPATH: CLASSPATH="$(find ~/.m2/repository -name '*.jar' | paste -sd ';');." kawa test.scm But I get: test.scm:2:16: no class found named io.jooby.Context The io.jooby:jooby jar is at ~/.m2/repository/io/jooby/jooby/2.10.0/jooby-2.10.0.jar. What more should I do for Kawa to find the class? Thanks! Phil