- install-package
- This goal is used to install CQ Packages into CQ Repositories.
- install-bundle
- This gloal is used to install bundles into CQ Repositories. This goal is different from the Maven Sling Plugin's deploy method. Whereas the Maven Sling Plugin installs the bundle directly into the Felix application, the CQ Deploy plugin is used to upload the JAR into the CQ Application install folder and the path thereof can be configured.
As the CQ Deploy plugin has been deployed into the Maven Central Repository, it can be used on projects, by simply invoking the plugin in your POM. To use the CQ Deploy Plugin in a bundle project add the following into your POM file. This will install the primary JAR file generated in the build process into a CQ Server running on http://localhost:4502, using the username/password combination admin/admin under the path: /apps/bundles/install.
<build>
<plugins>
<plugin>
<groupId>com.sixdimensions.wcm.cq</groupId>
<artifactId>cq-deploy-plugin</artifactId>
<version>0.0.4</version>
<executions>
<execution>
<id>install-bundle</id>
<goals>
<goal>install-bundle</goal>
</goals>
</execution>
</executions>
<configuration>
[...]
</configuration>
</plugin>
To use the CQ Deploy Plugin in a packaging project add the following into your POM file. This will install the primary JAR file generated in the build process into the CQ Package Manager of a CQ Server running on http://localhost:4502, using the username/password combination admin/admin.
The CQ Deploy plugin offers a number of configuration values to change where the files are deployed and by what user. To read more about the CQ Deploy plugin, consult the CQ Deploy Plugin Documentation Site.
To report any issues, or ask any questions, please create an issue.
<plugins>
<plugin>
<groupId>com.sixdimensions.wcm.cq</groupId>
<artifactId>cq-deploy-plugin</artifactId>
<version>0.0.4</version>
<executions>
<execution>
<id>install-bundle</id>
<goals>
<goal>install-bundle</goal>
</goals>
</execution>
</executions>
<configuration>
[...]
</configuration>
</plugin>
To use the CQ Deploy Plugin in a packaging project add the following into your POM file. This will install the primary JAR file generated in the build process into the CQ Package Manager of a CQ Server running on http://localhost:4502, using the username/password combination admin/admin.
<build>
<plugins>
<plugin>
<groupId>com.sixdimensions.wcm.cq</groupId>
<artifactId>cq-deploy-plugin</artifactId>
<version>0.0.4</version>
<executions>
<execution>
<id>install-package</id>
<goals>
<goal>install-package</goal>
</goals>
</execution>
</executions>
<configuration>
[...]
</configuration>
</plugin>
The CQ Deploy plugin offers a number of configuration values to change where the files are deployed and by what user. To read more about the CQ Deploy plugin, consult the CQ Deploy Plugin Documentation Site.
To report any issues, or ask any questions, please create an issue.
No comments:
Post a Comment
If you have any doubts or questions, please let us know.