Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thesurenk/practicalaem
https://github.com/thesurenk/practicalaem
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/thesurenk/practicalaem
- Owner: thesurenk
- Created: 2016-12-02T22:44:09.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-02T22:45:05.000Z (about 8 years ago)
- Last Synced: 2024-12-15T01:02:25.748Z (14 days ago)
- Language: Java
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Practical AEM
This a content package project generated using the AEM Multimodule Lazybones template.
## Building
This project uses Maven for building. Common commands:
From the root directory, run ``mvn -PautoInstallPackage clean install`` to build the bundle and content package and install to a CQ instance.
From the bundle directory, run ``mvn -PautoInstallBundle clean install`` to build *just* the bundle and install to a CQ instance.
## Using with AEM Developer Tools for Eclipse
To use this project with the AEM Developer Tools for Eclipse, import the generated Maven projects via the Import:Maven:Existing Maven Projects wizard. Then enable the Content Package facet on the _content_ project by right-clicking on the project, then select Configure, then Convert to Content Package... In the resulting dialog, select _src/main/content_ as the Content Sync Root.
## Using with VLT
To use vlt with this project, first build and install the package to your local CQ instance as described above. Then cd to `content/src/main/content/jcr_root` and run
vlt --credentials admin:admin checkout -f ../META-INF/vault/filter.xml --force http://localhost:4502/crx
Once the working copy is created, you can use the normal ``vlt up`` and ``vlt ci`` commands.
## Specifying CRX Host/Port
The CRX host and port can be specified on the command line with:
mvn -Dcrx.host=otherhost -Dcrx.port=5502