Skip to content

Commit

Permalink
Fixed markdown code blocks in EMBED readme
Browse files Browse the repository at this point in the history
  • Loading branch information
hngrylobster committed Jun 14, 2021
1 parent 2387b3d commit 4a31f4e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions current/EMBED.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## 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
```xml
<repository>
<id>central</id>
<name>[[Central Repository]]</name>
Expand All @@ -12,38 +12,38 @@
<enabled>false</enabled>
</snapshots>
</repository>
'''
```

## Add a dependency on the connector package in the main `POM.xml`.

'''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
```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
```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.

0 comments on commit 4a31f4e

Please sign in to comment.