Skip to content

Update from template (auto-merged) #274

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 14 commits into
base: develop
Choose a base branch
from
Open
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
File renamed without changes.
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@

# Force MVN Wrapper Linux files LF
mvnw text eol=lf
.mvn/wrapper/maven-wrapper.properties text eol=lf
maven-wrapper.properties text eol=lf
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:

- name: Create Release
id: create_release
uses: shogo82148/actions-create-release@e5f206451d4ace2da9916d01f1aef279997f8659 # v1
uses: shogo82148/actions-create-release@4661dc54f7b4b564074e9fbf73884d960de569a3 # v1
with:
tag_name: v${{ steps.version.outputs.release }}
release_name: v${{ steps.version.outputs.release }}
Expand Down
2 changes: 1 addition & 1 deletion .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.10/apache-maven-3.9.10-bin.zip
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>10.24.0</version>
<version>10.25.0</version>
</dependency>
</dependencies>
<configuration>
Expand Down Expand Up @@ -137,7 +137,7 @@
<includeTests>true</includeTests>
<printFailingErrors>true</printFailingErrors>
<rulesets>
<ruleset>.config/pmd/ruleset.xml</ruleset>
<ruleset>.config/pmd/java/ruleset.xml</ruleset>
</rulesets>
<excludes>
<exclude>**/benchmark/**/jmh_generated/**</exclude>
Expand All @@ -150,12 +150,12 @@
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-core</artifactId>
<version>7.13.0</version>
<version>7.14.0</version>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-java</artifactId>
<version>7.13.0</version>
<version>7.14.0</version>
</dependency>
</dependencies>
</plugin>
Expand Down
8 changes: 4 additions & 4 deletions spring-data-eclipse-store/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>10.24.0</version>
<version>10.25.0</version>
</dependency>
</dependencies>
<configuration>
Expand Down Expand Up @@ -435,7 +435,7 @@
<includeTests>true</includeTests>
<printFailingErrors>true</printFailingErrors>
<rulesets>
<ruleset>../.config/pmd/ruleset.xml</ruleset>
<ruleset>../.config/pmd/java/ruleset.xml</ruleset>
</rulesets>
<excludes>
<exclude>**/benchmark/**/jmh_generated/**</exclude>
Expand All @@ -447,12 +447,12 @@
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-core</artifactId>
<version>7.13.0</version>
<version>7.14.0</version>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-java</artifactId>
<version>7.13.0</version>
<version>7.14.0</version>
</dependency>
</dependencies>
</plugin>
Expand Down
Loading