Skip to content

Commit

Permalink
Merge branch 'main' into 1018-enabling-a-realm-clears-the-value-of-ev…
Browse files Browse the repository at this point in the history
…entsexpiration
  • Loading branch information
AssahBismarkabah authored Oct 15, 2024
2 parents 6cb2654 + d624925 commit e65b22a
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 1 deletion.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

- Fix enabling a realm clears the value of eventsExpiration

## [6.1.10] - 2024-10-14
## [6.1.11] - 2024-10-14

- Fix env.JAVA_HOME test failures by ensuring env is set before build

## [6.1.10] - 2024-10-04


- Fixed securityContext entries in job template

Expand Down
1 change: 1 addition & 0 deletions mvnw
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ fi

if [ -z "$JAVA_HOME" ] ; then
echo "Warning: JAVA_HOME environment variable is not set."
exit 1
fi

# traverses directory structure from process work directory to filesystem root
Expand Down
26 changes: 26 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,11 @@
<finalName>${project.artifactId}</finalName>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.4.1</version>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>${maven-release-plugin.version}</version>
Expand Down Expand Up @@ -372,6 +377,27 @@
</pluginManagement>

<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce-java-home</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireEnvironmentVariable>
<variableName>JAVA_HOME</variableName>
<message>JAVA_HOME environment variable must be set!</message>
</requireEnvironmentVariable>
</rules>
<fail>true</fail>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
Expand Down

0 comments on commit e65b22a

Please sign in to comment.