source: trunk/abcl/contrib/abcl-build/build/t/maven.lisp

Last change on this file was 15230, checked in by Mark Evenson, 4 years ago

abcl-build: remove test package in lieu of CL-USER

File size: 605 bytes
Line 
1(in-package :cl-user)
2
3(prove:plan 1)
4(prove:ok
5 (abcl/build:mvn/install)
6 "Testing ABCL-specific Ant installation of Maven into XDG hierarchy
")
7
8(if (not (ignore-errors (asdf:find-system :abcl)))
9    (prove:diag "Unable to find 'abcl.asd'.~&Enable ASDF to find 'abcl.asd' by adding symlink to ~~/common-lisp/ to ABCL source directory.")
10    (let ((pom (asdf:system-relative-pathname :abcl "pom.xml")))
11      (prove:ok (abcl/build:mvn/call pom "install")
12                (format nil "Testing invocation of private Maven on root ABCL POM at~&~2,t~a
"
13                        pom))))
14
15(prove:finalize)
Note: See TracBrowser for help on using the repository browser.