This repository has been archived by the owner on Feb 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
692 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
This comment has been minimized.
Sorry, something went wrong. |
||
<module type="JAVA_MODULE" version="4"> | ||
<component name="NewModuleRootManager" inherit-compiler-output="true"> | ||
<exclude-output /> | ||
<content url="file://$MODULE_DIR$"> | ||
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" /> | ||
</content> | ||
<orderEntry type="inheritedJdk" /> | ||
<orderEntry type="sourceFolder" forTests="false" /> | ||
</component> | ||
</module> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# ${projectName} | ||
|
||
This a content package project generated using the EAEM Simple 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 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 <goals> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.0.1-SNAPSHOT |
111 changes: 111 additions & 0 deletions
111
templates/eaem-simple-multimodule-project/bundle/pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd "> | ||
<modelVersion>4.0.0</modelVersion> | ||
<!-- ====================================================================== --> | ||
<!-- P A R E N T P R O J E C T D E S C R I P T I O N --> | ||
<!-- ====================================================================== --> | ||
<parent> | ||
<groupId>${groupId}</groupId> | ||
<artifactId>${artifactId}</artifactId> | ||
<version>1.0-SNAPSHOT</version> | ||
</parent> | ||
|
||
<!-- ====================================================================== --> | ||
<!-- P R O J E C T D E S C R I P T I O N --> | ||
<!-- ====================================================================== --> | ||
|
||
<artifactId>${artifactId}-bundle</artifactId> | ||
<packaging>bundle</packaging> | ||
<name>${projectName} Bundle</name> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.osgi</groupId> | ||
<artifactId>org.osgi.compendium</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.osgi</groupId> | ||
<artifactId>org.osgi.core</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.felix</groupId> | ||
<artifactId>org.apache.felix.scr.annotations</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>biz.aQute</groupId> | ||
<artifactId>bndlib</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>javax.servlet</groupId> | ||
<artifactId>servlet-api</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>javax.jcr</groupId> | ||
<artifactId>jcr</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.sling</groupId> | ||
<artifactId>org.apache.sling.api</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.sling</groupId> | ||
<artifactId>org.apache.sling.jcr.api</artifactId> | ||
</dependency> | ||
</dependencies> | ||
|
||
<!-- ====================================================================== --> | ||
<!-- B U I L D D E F I N I T I O N --> | ||
<!-- ====================================================================== --> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.felix</groupId> | ||
<artifactId>maven-scr-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>generate-scr-descriptor</id> | ||
<goals> | ||
<goal>scr</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.felix</groupId> | ||
<artifactId>maven-bundle-plugin</artifactId> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<instructions> | ||
<Bundle-SymbolicName>${groupId}.${artifactId}-bundle</Bundle-SymbolicName> | ||
</instructions> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.sling</groupId> | ||
<artifactId>maven-sling-plugin</artifactId> | ||
<configuration> | ||
<slingUrl>http://\${crx.host}:\${crx.port}/apps/${appsFolderName}/install</slingUrl> | ||
<usePut>true</usePut> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<configuration> | ||
<excludePackageNames> | ||
*.impl | ||
</excludePackageNames> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
Empty file.
116 changes: 116 additions & 0 deletions
116
templates/eaem-simple-multimodule-project/content/pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<!-- ====================================================================== --> | ||
<!-- P A R E N T P R O J E C T D E S C R I P T I O N --> | ||
<!-- ====================================================================== --> | ||
<parent> | ||
<groupId>${groupId}</groupId> | ||
<artifactId>${artifactId}</artifactId> | ||
<version>1.0-SNAPSHOT</version> | ||
</parent> | ||
|
||
<!-- ====================================================================== --> | ||
<!-- P R O J E C T D E S C R I P T I O N --> | ||
<!-- ====================================================================== --> | ||
|
||
<artifactId>${artifactId}-content</artifactId> | ||
<packaging>content-package</packaging> | ||
<name>${projectName} Content Package</name> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>${artifactId}-bundle</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<resources> | ||
<resource> | ||
<directory>src/main/content/jcr_root</directory> | ||
<filtering>false</filtering> | ||
<excludes> | ||
<exclude>**/.vlt</exclude> | ||
<exclude>**/.vltignore</exclude> | ||
</excludes> | ||
</resource> | ||
</resources> | ||
|
||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-resources-plugin</artifactId> | ||
<configuration> | ||
<includeEmptyDirs>true</includeEmptyDirs> | ||
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>com.day.jcr.vault</groupId> | ||
<artifactId>content-package-maven-plugin</artifactId> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<group>Experience AEM</group> | ||
<filterSource>src/main/content/META-INF/vault/filter.xml</filterSource> | ||
<embeddeds> | ||
<embedded> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>${artifactId}-bundle</artifactId> | ||
<target>/apps/${appsFolderName}/install</target> | ||
</embedded> | ||
</embeddeds> | ||
<targetURL>http://${crx.host}:${crx.port}/crx/packmgr/service.jsp</targetURL> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<profiles> | ||
<profile> | ||
<id>autoInstallPackage</id> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>com.day.jcr.vault</groupId> | ||
<artifactId>content-package-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>install-content-package</id> | ||
<phase>install</phase> | ||
<goals> | ||
<goal>install</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
<profile> | ||
<id>autoInstallPackagePublish</id> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>com.day.jcr.vault</groupId> | ||
<artifactId>content-package-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>install-content-package-publish</id> | ||
<phase>install</phase> | ||
<goals> | ||
<goal>install</goal> | ||
</goals> | ||
<configuration> | ||
<targetURL>http://${publish.crx.host}:${publish.crx.port}/crx/packmgr/service.jsp</targetURL> | ||
<username>${publish.crx.username}</username> | ||
<password>${publish.crx.password}</password> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
</profiles> | ||
</project> |
77 changes: 77 additions & 0 deletions
77
templates/eaem-simple-multimodule-project/content/src/main/content/META-INF/vault/config.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
<vaultfs version="1.1"> | ||
<!-- | ||
Defines the content aggregation. The order of the defined aggregates | ||
is important for finding the correct aggregator. | ||
--> | ||
<aggregates> | ||
<!-- | ||
Defines an aggregate that handles nt:file and nt:resource nodes. | ||
--> | ||
<aggregate type="file" title="File Aggregate"/> | ||
|
||
<!-- | ||
Defines an aggregate that handles file/folder like nodes. It matches | ||
all nt:hierarchyNode nodes that have or define a jcr:content | ||
child node and excludes child nodes that are nt:hierarchyNodes. | ||
--> | ||
<aggregate type="filefolder" title="File/Folder Aggregate"/> | ||
|
||
<!-- | ||
Defines an aggregate that handles nt:nodeType nodes and serializes | ||
them into .cnd notation. | ||
--> | ||
<aggregate type="nodetype" title="Node Type Aggregate" /> | ||
|
||
<!-- | ||
Defines an aggregate that defines full coverage for certain node | ||
types that cannot be covered by the default aggregator. | ||
--> | ||
<aggregate type="full" title="Full Coverage Aggregate"> | ||
<matches> | ||
<include nodeType="rep:AccessControl" respectSupertype="true" /> | ||
<include nodeType="rep:Policy" respectSupertype="true" /> | ||
<include nodeType="cq:Widget" respectSupertype="true" /> | ||
<include nodeType="cq:EditConfig" respectSupertype="true" /> | ||
<include nodeType="cq:WorkflowModel" respectSupertype="true" /> | ||
<include nodeType="vlt:FullCoverage" respectSupertype="true" /> | ||
<include nodeType="mix:language" respectSupertype="true" /> | ||
<include nodeType="sling:OsgiConfig" respectSupertype="true" /> | ||
</matches> | ||
</aggregate> | ||
|
||
<!-- | ||
Defines an aggregate that handles nt:folder like nodes. | ||
--> | ||
<aggregate type="generic" title="Folder Aggregate"> | ||
<matches> | ||
<include nodeType="nt:folder" respectSupertype="true" /> | ||
</matches> | ||
<contains> | ||
<exclude isNode="true" /> | ||
</contains> | ||
</aggregate> | ||
|
||
<!-- | ||
Defines the default aggregate | ||
--> | ||
<aggregate type="generic" title="Default Aggregator" isDefault="true"> | ||
<matches> | ||
<!-- all --> | ||
</matches> | ||
<contains> | ||
<exclude nodeType="nt:hierarchyNode" respectSupertype="true" /> | ||
</contains> | ||
</aggregate> | ||
|
||
</aggregates> | ||
|
||
<!-- | ||
defines the input handlers | ||
--> | ||
<handlers> | ||
<handler type="folder"/> | ||
<handler type="file"/> | ||
<handler type="nodetype"/> | ||
<handler type="generic"/> | ||
</handlers> | ||
</vaultfs> |
19 changes: 19 additions & 0 deletions
19
...imple-multimodule-project/content/src/main/content/META-INF/vault/definition/.content.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:vlt="http://www.day.com/jcr/vault/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0" xmlns:nt="http://www.jcp.org/jcr/nt/1.0" | ||
jcr:description="Experience AEM ARTIFACT_NAME_PLACE_HOLDER Pacakge" | ||
jcr:primaryType="vlt:PackageDefinition" | ||
sling:resourceType="cq/packaging/components/pack/definition" | ||
buildCount="1" | ||
cqVersion="6.3" | ||
group="Experience AEM" | ||
name="${artifactId}-content" | ||
path="/etc/packages/Experience AEM/${artifactId}-1.0-SNAPSHOT" | ||
version="1.0-SNAPSHOT"> | ||
<filter jcr:primaryType="nt:unstructured"> | ||
<f0 | ||
jcr:primaryType="nt:unstructured" | ||
mode="replace" | ||
root="/apps/${appsFolderName}" | ||
rules="[]"/> | ||
</filter> | ||
</jcr:root> |
4 changes: 4 additions & 0 deletions
4
templates/eaem-simple-multimodule-project/content/src/main/content/META-INF/vault/filter.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<workspaceFilter version="1.0"> | ||
<filter root="/apps/${appsFolderName}"/> | ||
</workspaceFilter> |
20 changes: 20 additions & 0 deletions
20
...tes/eaem-simple-multimodule-project/content/src/main/content/META-INF/vault/nodetypes.cnd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<'cq'='http://www.day.com/jcr/cq/1.0'> | ||
<'nt'='http://www.jcp.org/jcr/nt/1.0'> | ||
<'jcr'='http://www.jcp.org/jcr/1.0'> | ||
<'sling'='http://sling.apache.org/jcr/sling/1.0'> | ||
<'rep'='internal'> | ||
|
||
[cq:Page] > nt:hierarchyNode | ||
orderable primaryitem jcr:content | ||
+ * (nt:base) = nt:base version | ||
+ jcr:content (nt:base) = nt:unstructured | ||
|
||
[sling:Folder] > nt:folder | ||
- * (undefined) multiple | ||
- * (undefined) | ||
+ * (nt:base) = sling:Folder version | ||
|
||
[rep:RepoAccessControllable] | ||
mixin | ||
+ rep:repoPolicy (rep:Policy) protected ignore | ||
|
Oops, something went wrong.
Please remove this file before merging to master and add *.iml to the .gitignore file (or, you know, add that to your global ignores)