Skip to content

Commit

Permalink
Merge branch 'feature/move_to_java11_#296' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
bsorrentino committed Oct 16, 2023
2 parents b3b6e96 + 20a8d9f commit 6eb2b8a
Show file tree
Hide file tree
Showing 35 changed files with 1,236 additions and 688 deletions.
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-SNAPSHOT</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 6eb2b8a

Please sign in to comment.