Skip to content

Commit

Permalink
Merge branch 'release/8.0-beta1'
Browse files Browse the repository at this point in the history
  • Loading branch information
bsorrentino committed Feb 29, 2024
2 parents b3b6e96 + 08e11cf commit 249a5ce
Show file tree
Hide file tree
Showing 142 changed files with 1,465 additions and 854 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
- name: Deploy site to Github pages
run: |
mvn -B install --file pom.xml -s settings-template.xml
mvn -B --projects plugin-reporting site --file pom.xml -s settings-template.xml
cp -R core/target/site plugin-reporting/target/site/core
mvn -B --projects mojo site --file pom.xml -s settings-template.xml
cp -R core/target/site mojo/target/site/core
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-snapshot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
- uses: actions/checkout@v2
with:
ref: develop
- name: Set up JDK 9
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 9
java-version: 11

- name: Build with Maven
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
- uses: actions/checkout@v2
with:
ref: master
- name: Set up JDK 9
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 9
java-version: 11
- name: GPG Setup
env:
GPG_KEY_BASE64: ${{ secrets.GPG_KEY_BASE64 }}
Expand Down
28 changes: 27 additions & 1 deletion addon-scrollversions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>maven-confluence-parent</artifactId>
<groupId>org.bsc.maven</groupId>
<version>7.13</version>
<version>8.0-beta1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -28,6 +28,13 @@
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.16</version>
<scope>provided</scope>
</dependency>

</dependencies>

<build>
Expand All @@ -42,6 +49,25 @@
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArgs>
<arg>-Xlint:unchecked</arg>
<arg>-Xlint:deprecation</arg>
</compilerArgs>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.22</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>


</plugins>

</build>
Expand Down
Loading

0 comments on commit 249a5ce

Please sign in to comment.