-
-
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.
Release version, AEM 6.5 stability and general updates
- Switched from automatic versioning to semantic versioning - Implemented a custom `AttrBuilder` class which uses the non-deprecated XSS api - Fixed a few bugs in the Vue model and restructed it
- Loading branch information
Showing
16 changed files
with
407 additions
and
504 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 |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
<parent> | ||
<groupId>design.aem</groupId> | ||
<artifactId>aemdesign-aem-core</artifactId> | ||
<version>2.0.680</version> | ||
<version>2.1.0-SNAPSHOT</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
|
||
|
@@ -17,7 +17,7 @@ | |
<!-- ====================================================================== --> | ||
|
||
<artifactId>aemdesign-aem-author</artifactId> | ||
<version>2.0.680</version> | ||
<version>2.1.0-SNAPSHOT</version> | ||
<packaging>content-package</packaging> | ||
<name>AEM Design - Core - AEM Author UI Updates</name> | ||
<description>Updates to OOTB AEM</description> | ||
|
@@ -28,6 +28,10 @@ | |
<email>[email protected]</email> | ||
<name>Max Barrass</name> | ||
</developer> | ||
<developer> | ||
<email>[email protected]</email> | ||
<name>Chris Shaw</name> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
|
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
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
<?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"> | ||
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>design.aem</groupId> | ||
<artifactId>aemdesign-aem-core</artifactId> | ||
<version>2.0.680</version> | ||
<version>2.1.0-SNAPSHOT</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
|
||
|
@@ -20,14 +20,18 @@ | |
<packaging>content-package</packaging> | ||
<name>AEM Design - Core - Deployment Package</name> | ||
<description>AEM package for deploying all packages as one</description> | ||
<version>2.0.680</version> | ||
<version>2.1.0-SNAPSHOT</version> | ||
<url>http://aem.design</url> | ||
|
||
<developers> | ||
<developer> | ||
<email>[email protected]</email> | ||
<name>Max Barrass</name> | ||
</developer> | ||
<developer> | ||
<email>[email protected]</email> | ||
<name>Chris Shaw</name> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
|
@@ -186,7 +190,6 @@ | |
</subPackages> | ||
</configuration> | ||
</plugin> | ||
|
||
</plugins> | ||
</build> | ||
|
||
|
@@ -209,7 +212,9 @@ | |
<goal>install</goal> | ||
</goals> | ||
<configuration> | ||
<targetURL>${package.uploadProtocol}://${crx.host}:${crx.port}/crx/packmgr/service.jsp</targetURL> | ||
<targetURL> | ||
${package.uploadProtocol}://${crx.host}:${crx.port}/crx/packmgr/service.jsp | ||
</targetURL> | ||
<userId>${crx.username}</userId> | ||
<password>${crx.password}</password> | ||
</configuration> | ||
|
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/bash | ||
|
||
./deploy -Dcrx.host=localhost | ||
./deploy -Dcrx.host=localhost "$@" | ||
|
Oops, something went wrong.