-
Notifications
You must be signed in to change notification settings - Fork 12
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
1 parent
97ff431
commit 411660a
Showing
1 changed file
with
41 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,41 @@ | ||
# Brightcove Maven Embedding and Deployment Steps | ||
|
||
## Add the repository to the main `POM.xml` file (either a private repository or a public one depending upon where the connector package is hosted). | ||
|
||
'''xml | ||
|
||
''' | ||
|
||
## Add a dependency on the connector package in the main `POM.xml`. | ||
|
||
'''xml | ||
<dependency> | ||
<groupId>com.brightcove</groupId> | ||
<artifactId>com.brightcove.connector</artifactId> | ||
<version>5.7.0</version> | ||
<type>zip</type> | ||
</dependency> | ||
''' | ||
|
||
## Add a dependency to the connector package in the `ALL` project’s `POM.xml`. | ||
|
||
'''xml | ||
<dependency> | ||
<groupId>com.brightcove</groupId> | ||
<artifactId>com.brightcove.connector</artifactId> | ||
<type>zip</type> | ||
</dependency> | ||
''' | ||
|
||
## The connector package should be embedded in the deployment. Add the package as an embedded dependency to the `ALL` project package. | ||
|
||
'''xml | ||
<embedded> | ||
<groupId>com.brightcove</groupId> | ||
<artifactId>com.brightcove.connector</artifactId> | ||
<type>zip</type> | ||
<target>/apps/brightcove-vendor-packages/application/install</target> | ||
</embedded> | ||
''' | ||
|
||
### The connector will be installed on AEM Cloud with the next AEM Cloud Pipeline Build. |