Skip to content

Commit fffbcee

Browse files
committed
resolving conflict
2 parents 8409f5a + f6a96c4 commit fffbcee

File tree

4 files changed

+71
-2
lines changed

4 files changed

+71
-2
lines changed

.github/workflows/ci.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout code
17+
uses: actions/checkout@v2
18+
19+
- name: Build with Maven
20+
run: mvn clean install
21+
22+
- name: Quality Monitor
23+
uses: uhafner/quality-monitor@v1.14.0

SECURITY.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Security Policy
2+
3+
## Supported Versions
4+
5+
Use this section to tell people about which versions of your project are
6+
currently being supported with security updates.
7+
8+
| Version | Supported |
9+
| ------- | ------------------ |
10+
| 5.1.x | :white_check_mark: |
11+
| 5.0.x | :x: |
12+
| 4.0.x | :white_check_mark: |
13+
| < 4.0 | :x: |
14+
15+
## Reporting a Vulnerability
16+
17+
Use this section to tell people how to report a vulnerability.
18+
19+
Tell them where to go, how often they can expect to get an update on a
20+
reported vulnerability, what to expect if the vulnerability is accepted or
21+
declined, etc.

pom.xml

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@
4545
<vault.user>admin</vault.user>
4646
<vault.password>admin</vault.password>
4747
<core.wcm.components.version>2.23.4</core.wcm.components.version>
48-
4948
<bnd.version>5.1.2</bnd.version>
5049
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5150
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
@@ -116,6 +115,32 @@
116115
</compilerArgs>
117116
</configuration>
118117
</plugin>
118+
<plugin>
119+
<groupId>org.jacoco</groupId>
120+
<artifactId>jacoco-maven-plugin</artifactId>
121+
<version>${jacoco.version}</version>
122+
<executions>
123+
<execution>
124+
<id>default-prepare-agent</id>
125+
<goals>
126+
<goal>prepare-agent</goal>
127+
</goals>
128+
</execution>
129+
<execution>
130+
<id>default-report</id>
131+
<phase>prepare-package</phase>
132+
<goals>
133+
<goal>report</goal>
134+
</goals>
135+
</execution>
136+
<execution>
137+
<id>default-check</id>
138+
<goals>
139+
<goal>check</goal>
140+
</goals>
141+
</execution>
142+
</executions>
143+
</plugin>
119144
</plugins>
120145
<pluginManagement>
121146
<plugins>

ui.apps/src/main/content/jcr_root/apps/demo/components/multifield/.content.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
<jcr:root xmlns:cq="http://www.day.com/jcr/cq/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0"
33
jcr:primaryType="cq:Component"
44
jcr:title="Multifield Component"
5-
componentGroup="Demo Project - Content"/>
5+
componentGroup="Demo Project - Content "/>

0 commit comments

Comments
 (0)