Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BACKLOG-22212 Make module compatible with 8.1.5 #13

Merged
merged 10 commits into from
Jan 18, 2024
20 changes: 6 additions & 14 deletions .github/maven.settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<repository>
<id>jahia-internal</id>
<name>Jahia Internal Repository</name>
<url>${env.NEXUS_INTERNAL_URL}</url>
<url>https://devtools.jahia.com/nexus/content/groups/internal/</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
Expand All @@ -41,15 +41,14 @@

<activeProfiles>
<activeProfile>jahia-internal-repository</activeProfile>
<activeProfile>unit-tests</activeProfile>
</activeProfiles>

<servers>
<server>
<id>jahia-releases</id>
<id>jahia-public</id>
<username>${env.NEXUS_USERNAME}</username>
<password>${env.NEXUS_PASSWORD}</password>
</server>
</server>
<server>
<id>jahia-enterprise</id>
<username>${env.NEXUS_USERNAME}</username>
Expand All @@ -65,20 +64,13 @@
<username>${env.NEXUS_USERNAME}</username>
<password>${env.NEXUS_PASSWORD}</password>
</server>
<server>
<id>jahia-enterprise-snapshots</id>
<username>${env.NEXUS_USERNAME}</username>
<password>${env.NEXUS_PASSWORD}</password>
</server>
<server>
<id>jahia-enterprise-releases</id>
<username>${env.NEXUS_USERNAME}</username>
<password>${env.NEXUS_PASSWORD}</password>
</server>
<server>
<id>staging-repository</id>
<username>${env.NEXUS_USERNAME}</username>
<password>${env.NEXUS_PASSWORD}</password>
</server>
</servers>
<pluginGroups>
<pluginGroup>org.owasp</pluginGroup>
</pluginGroups>
</settings>
4 changes: 4 additions & 0 deletions .github/workflows/on-code-change.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
build:
name: Build Module
runs-on: ubuntu-latest
env:
NEXUS_INTERNAL_URL: https://devtools.jahia.com/nexus/content/groups/internal/
container:
image: jahia/cimg-mvn-cache:ga_cimg_openjdk_11.0.20-node
credentials:
Expand All @@ -33,6 +35,8 @@ jobs:
- uses: jahia/jahia-modules-action/build@v2
with:
module_id: richtext-configuration
nexus_username: ${{ secrets.NEXUS_USERNAME }}
nexus_password: ${{ secrets.NEXUS_PASSWORD }}

integration-tests:
name: Integration Tests
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/on-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ jobs:
name: Build Module
needs: update-signature
runs-on: ubuntu-latest
env:
NEXUS_INTERNAL_URL: https://devtools.jahia.com/nexus/content/groups/internal/
container:
image: jahia/cimg-mvn-cache:ga_cimg_openjdk_11.0.20-node
credentials:
Expand All @@ -38,6 +40,8 @@ jobs:
- uses: jahia/jahia-modules-action/build@v2
with:
module_id: richtext-configuration
nexus_username: ${{ secrets.NEXUS_USERNAME }}
nexus_password: ${{ secrets.NEXUS_PASSWORD }}

# sbom:
# name: SBOM processing
Expand Down
21 changes: 19 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<parent>
<artifactId>jahia-modules</artifactId>
<groupId>org.jahia.modules</groupId>
<version>8.2.0.0-SNAPSHOT</version>
<version>8.1.5.0</version>
</parent>

<artifactId>richtext-configuration</artifactId>
Expand All @@ -68,11 +68,23 @@
</scm>

<properties>
<jahia.plugin.version>6.9</jahia.plugin.version>
<jahia-depends>graphql-dxm-provider</jahia-depends>
<jahia-module-signature>MC0CFHH5gM/Zpl8kOBTjCGqH1xA5pqdaAhUAlUgJeofDw/DfOp6piIOe9St+y+U=</jahia-module-signature>
<export-package>
org.jahia.modules.richtext
</export-package>
<import-package>
graphql.annotations.annotationTypes;version="[6.5,99)",
javax.jcr;version="[2.0,3)",
org.jahia.modules.graphql.provider.dxm;version="[2.7,3)",
org.jahia.modules.graphql.provider.dxm.osgi.annotations;version="[2.7,3)",
org.jahia.osgi,
org.jahia.services.content,
org.osgi.framework;version="[1.8,2)",
org.slf4j;version="[1.7,2)",
org.jahia.services
</import-package>
</properties>

<repositories>
Expand All @@ -94,7 +106,7 @@
<dependency>
<groupId>org.jahia.modules</groupId>
<artifactId>graphql-dxm-provider</artifactId>
<version>2.20.0-SNAPSHOT</version>
<version>2.19.0</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand All @@ -108,6 +120,11 @@
<artifactId>owasp-java-html-sanitizer</artifactId>
<version>20220608.1</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20231013</version>
</dependency>
</dependencies>

<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,10 @@
import org.jahia.services.sites.JahiaSitesService;
import org.json.JSONArray;
import org.json.JSONObject;
import org.owasp.html.HtmlChangeListener;
import org.owasp.html.PolicyFactory;

import javax.annotation.Nullable;

import javax.jcr.RepositoryException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Optional;

Expand Down
Loading