Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
wrapperVersion=3.3.4
distributionType=only-script
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.11/apache-maven-3.9.11-bin.zip
distributionSha256Sum=0d7125e8c91097b36edb990ea5934e6c68b4440eef4ea96510a0f6815e7eeadb
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.16/apache-maven-3.9.16-bin.zip
distributionSha256Sum=5af3b743dd8b876b5c45da33b676251e5f1687712644abb4ee519ca56e1d89ce
2 changes: 1 addition & 1 deletion mvnw

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion mvnw.cmd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 16 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,18 @@ under the License.
<release>21</release>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<version>0.18</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.14.1</version>
<version>3.15.0</version>
<configuration>
<release>21</release>
<compilerArgs>
Expand All @@ -108,24 +113,24 @@ under the License.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.4</version>
<version>3.5.5</version>
</plugin>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<configuration>
<excludes>
<inputExcludes>
<!-- exclude template files - no creativity; currently no way to filter out license -->
<exclude>**/*.template</exclude>
<inputExclude>**/*.template</inputExclude>
<!-- exclude Apache NetBeans SVG - license header causes display issues on certain OS -->
<exclude>**/apache-netbeans.svg</exclude>
<inputExclude>**/apache-netbeans.svg</inputExclude>
<!-- exclude NetBeans configuration files, not in source bundle -->
<exclude>nbactions.xml</exclude>
<exclude>nb-configuration.xml</exclude>
<inputExclude>nbactions.xml</inputExclude>
<inputExclude>nb-configuration.xml</inputExclude>
<!-- misc excludes -->
<exclude>README.md</exclude>
<exclude>src/assembly/bin/BINARY_NOTICE</exclude>
</excludes>
<inputExclude>README.md</inputExclude>
<inputExclude>src/assembly/bin/BINARY_NOTICE</inputExclude>
</inputExcludes>
</configuration>
<executions>
<execution>
Expand Down Expand Up @@ -243,7 +248,7 @@ under the License.

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.jupiter.version>6.0.2</junit.jupiter.version>
<junit.jupiter.version>6.0.3</junit.jupiter.version>
<skin.groupId>org.apache.maven.skins</skin.groupId>
<skin.artifactId>maven-fluido-skin</skin.artifactId>
<skin.version>2.0.0-M8</skin.version>
Expand Down