Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanseifert committed Dec 13, 2023
2 parents 5fc8b05 + 13ebddc commit 6fcd159
Show file tree
Hide file tree
Showing 24 changed files with 290 additions and 277 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/maven-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
java: [8, 11, 17]
java: [11, 17, 21]
os: [ubuntu-latest]
distribution: [temurin]

Expand All @@ -32,6 +32,6 @@ jobs:
java-version: ${{ matrix.java }}
maven-executable: ./mvnw
sonar-run-on-os: ubuntu-latest
sonar-run-on-java-version: 11
sonar-run-on-java-version: 17
sonar-token: ${{ secrets.SONAR_TOKEN }}
github-token: ${{ secrets.GITHUB_TOKEN }}
12 changes: 7 additions & 5 deletions .github/workflows/maven-deploy.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Deploy snapshots to Sonatpe OSS repository and deploy site to GitHub Pages
# Deploy snapshots to Sonatype OSS repository and deploy site to GitHub Pages

name: Deploy

concurrency: ${{ github.workflow }}

on:
push:
branches:
Expand All @@ -15,19 +17,19 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Configure GIT
run: |
git config --global user.email "${{ secrets.GH_SITE_DEPLOY_EMAIL }}"
git config --global user.name "${{ secrets.GH_SITE_DEPLOY_NAME }}"
- name: Setup JDK
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 8
cache: 'maven'
java-version: 11
cache: maven

- name: Build, verify, deploy, generate site
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-from-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ncipollo/release-action@v1
with:
body: 'Changes: https://wcm.io/tooling/commons/content-package-builder/changes-report.html'
Expand Down
Binary file modified .mvn/wrapper/maven-wrapper.jar
Binary file not shown.
8 changes: 4 additions & 4 deletions .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
#
# http://www.apache.org/licenses/LICENSE-2.0
#
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.4/apache-maven-3.8.4-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.4/apache-maven-3.9.4-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<img src="https://wcm.io/images/[email protected]"/> AEM Content Package Builder
======
[![Build](https://github.com/wcm-io/io.wcm.tooling.commons.content-package-builder/workflows/Build/badge.svg?branch=develop)](https://github.com/wcm-io/io.wcm.tooling.commons.content-package-builder/actions?query=workflow%3ABuild+branch%3Adevelop)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.wcm.tooling.commons/io.wcm.tooling.commons.content-package-builder/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.wcm.tooling.commons/io.wcm.tooling.commons.content-package-builder)
[![Maven Central](https://img.shields.io/maven-central/v/io.wcm.tooling.commons/io.wcm.tooling.commons.content-package-builder)](https://repo1.maven.org/maven2/io/wcm/tooling/commons/io.wcm.tooling.commons.content-package-builder)
[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=wcm-io_io.wcm.tooling.commons.content-package-builder&metric=coverage)](https://sonarcloud.io/summary/new_code?id=wcm-io_io.wcm.tooling.commons.content-package-builder)

Java Library for building AEM Content Packages with content pages and binary files.

Documentation: https://wcm.io/tooling/commons/content-package-builder/<br/>
Issues: https://wcm-io.atlassian.net/browse/WTOOL<br/>
Issues: https://github.com/wcm-io/io.wcm.tooling.commons.content-package-builder/issues<br/>
Wiki: https://wcm-io.atlassian.net/wiki/<br/>
Continuous Integration: https://github.com/wcm-io/io.wcm.tooling.commons.content-package-builder/actions<br/>
Commercial support: https://wcm.io/commercial-support.html
15 changes: 15 additions & 0 deletions changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,21 @@
xsi:schemaLocation="http://maven.apache.org/changes/1.0.0 https://maven.apache.org/plugins/maven-changes-plugin/xsd/changes-1.0.0.xsd">
<body>

<release version="1.7.2" date="2023-12-13">
<action type="update" dev="sseifert">
Switch to Java 11 as minimum version.
</action>
<action type="update" dev="sseifert">
Switch to AEM 6.5.7 as minimum version.
</action>
<action type="update" dev="sseifert">
Eliminate dependency to Guava.
</action>
<action type="fix" dev="sseifert" issue="1"><![CDATA[
Ensure element order is kept intact when using <code>ContentPackage.addContent(String, ContentElement)</code> method.
]]></action>
</release>

<release version="1.7.0" date="2022-01-26">
<action type="update" dev="sseifert">
Switch to AEM 6.5 as minimum version.
Expand Down
Loading

0 comments on commit 6fcd159

Please sign in to comment.