Skip to content

Update from template #151

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 18 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
307e818
Improve bug report template
AB-xdev May 21, 2025
4efdbac
Merge branch 'master' into update-from-template-merged
xdev-gh-bot May 22, 2025
2e6baf7
Merge branch 'master' into update-from-template-merged
xdev-gh-bot May 22, 2025
0f72ad3
Update dependency com.puppycrawl.tools:checkstyle to v10.24.0
xdev-renovate May 22, 2025
3967f51
Merge pull request #157 from xdev-software/renovate/com.puppycrawl.to…
AB-xdev May 22, 2025
709995c
Update net.sourceforge.pmd to v7.14.0
xdev-renovate May 31, 2025
4a35b83
Update dependency com.puppycrawl.tools:checkstyle to v10.25.0
xdev-renovate Jun 1, 2025
ba44b1f
Merge pull request #158 from xdev-software/renovate/net.sourceforge.pmd
AB-xdev Jun 2, 2025
883fc4c
Merge pull request #159 from xdev-software/renovate/com.puppycrawl.to…
AB-xdev Jun 2, 2025
7b2210a
Move PMD to java subfolder
AB-xdev Jun 3, 2025
788923c
Merge branch 'master' into update-from-template-merged
xdev-gh-bot Jun 3, 2025
9c3732a
Update pmd location
AB-xdev Jun 3, 2025
ff7d918
Fix maven wrapper not working correctly on Windows Docker in non root…
AB-xdev Jun 5, 2025
c5ee7c7
Update dependency maven to v3.9.10
xdev-renovate Jun 6, 2025
0c2ce02
Merge pull request #161 from xdev-software/renovate/maven-3.x
AB-xdev Jun 6, 2025
1038c78
Correct pmd ruleset location
AB-xdev Jun 10, 2025
a830f31
Update shogo82148/actions-create-release digest to 4661dc5
xdev-renovate Jun 12, 2025
7ad06ee
Merge pull request #162 from xdev-software/renovate/shogo82148-action…
AB-xdev Jun 12, 2025
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
23 changes: 9 additions & 14 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,15 @@ body:
validations:
required: true

- type: textarea
id: description
attributes:
label: Description of the problem
description: |
Describe as exactly as possible what is not working.
validations:
required: true

- type: textarea
id: steps-to-reproduce
attributes:
Expand All @@ -47,20 +56,6 @@ body:
validations:
required: true

- type: textarea
id: expected-behavior
attributes:
label: Expected behavior
description: |
Tell us what you expect to happen.
- type: textarea
id: actual-behavior
attributes:
label: Actual behavior
description: |
Tell us what happens with the steps given above.
- type: textarea
id: additional-information
attributes:
Expand Down
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 @@ -45,7 +45,7 @@
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>10.23.1</version>
<version>10.25.0</version>
</dependency>
</dependencies>
<configuration>
Expand Down Expand Up @@ -75,19 +75,19 @@
<includeTests>true</includeTests>
<printFailingErrors>true</printFailingErrors>
<rulesets>
<ruleset>.config/pmd/ruleset.xml</ruleset>
<ruleset>.config/pmd/java/ruleset.xml</ruleset>
</rulesets>
</configuration>
<dependencies>
<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 template-placeholder/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>10.23.1</version>
<version>10.25.0</version>
</dependency>
</dependencies>
<configuration>
Expand Down Expand Up @@ -239,19 +239,19 @@
<includeTests>true</includeTests>
<printFailingErrors>true</printFailingErrors>
<rulesets>
<ruleset>../.config/pmd/ruleset.xml</ruleset>
<ruleset>../.config/pmd/java/ruleset.xml</ruleset>
</rulesets>
</configuration>
<dependencies>
<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