adobe / aem-htl-repl

Read–Eval–Print Loop environment for HTL.
https://docs.adobe.com/docs/en/htl.html
Apache License 2.0
152 stars 63 forks source link

install ends up with a zip instead of a jar #2

Closed wvdb closed 9 years ago

wvdb commented 9 years ago

Hi, I'm facing some time constraints and I haven't been able to verify this problem in detail but when I run an install from maven I always end up with a zip file and not wit a jar (and I'm not able to install the component as an OSGI bundle). Am I missing something (this component is not supposed to be installed as an OSGI bundle)?

Installing aem-sightly-repl\target\com.adobe.granite.sightly.repl-0.0.1-SNAPSHOT.zip to ...

thanks for letting met know, Wim

madnl commented 9 years ago

Hello,

The REPL is content only, so the result is a content package, not a bundle. You install it with

mvn clean install content-package:install
wvdb commented 9 years ago

Ok thanks. Point taken and install instructions work indeed.