-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #406 from jQAssistant/405-merge-repositories-into-…
…jqassistant 405 merge repositories into jqassistant
- Loading branch information
Showing
1,928 changed files
with
86,199 additions
and
154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# top-most EditorConfig file | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
indent_style = space | ||
|
||
[*.{java,xml}] | ||
indent_size = 4 | ||
trim_trailing_whitespace = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
tags-ignore: | ||
- "*" | ||
pull_request: | ||
branches: | ||
- master | ||
workflow_dispatch: {} | ||
|
||
concurrency: | ||
group: build-java-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
uses: jqassistant-tooling/jqassistant-github-actions/.github/workflows/ci.yml@main | ||
with: | ||
publish_snapshots: true | ||
secrets: | ||
ossrh_username: ${{ secrets.OSSRH_USERNAME }} | ||
ossrh_password: ${{ secrets.OSSRH_PASSWORD }} | ||
ossrh_signing_key: ${{ secrets.OSSRH_SIGNING_KEY }} | ||
ossrh_signing_password: ${{ secrets.OSSRH_SIGNING_PASSWORD }} | ||
sonar_token: ${{ secrets.SONAR_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
name: Release | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
java_version: | ||
description: Java version to use | ||
type: string | ||
required: false | ||
default: 17 | ||
branch: | ||
description: "The branch to checkout when cutting the release." | ||
required: true | ||
default: "master" | ||
releaseVersion: | ||
description: "Default version to use when preparing a release." | ||
required: true | ||
default: "X.Y.Z" | ||
developmentVersion: | ||
description: "Default version to use for new local working copy." | ||
required: true | ||
default: "X.Y.Z-SNAPSHOT" | ||
|
||
jobs: | ||
build: | ||
uses: jqassistant-tooling/jqassistant-github-actions/.github/workflows/release.yml@main | ||
with: | ||
branch: ${{ github.event.inputs.branch }} | ||
releaseVersion: ${{ github.event.inputs.releaseVersion }} | ||
developmentVersion: ${{ github.event.inputs.developmentVersion }} | ||
secrets: | ||
ossrh_username: ${{ secrets.OSSRH_USERNAME }} | ||
ossrh_password: ${{ secrets.OSSRH_PASSWORD }} | ||
ossrh_signing_key: ${{ secrets.OSSRH_SIGNING_KEY }} | ||
ossrh_signing_password: ${{ secrets.OSSRH_SIGNING_PASSWORD }} | ||
sonar_token: ${{ secrets.SONAR_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,23 @@ | ||
.DS_Store | ||
target | ||
.settings | ||
.shell_history | ||
.project | ||
.classpath | ||
jqassistant.datastore | ||
/.idea | ||
/neo4j-home/ | ||
/scm/neo4jserver/neo4j-home/ | ||
*~ | ||
*.iml | ||
*.eml | ||
*.log | ||
*.userlibraries | ||
/.idea | ||
*.iml | ||
*.ipr | ||
*~ | ||
*.log | ||
.DS_Store | ||
# Files we would like to have in our local repository, but not in the remote repository | ||
*.ignore | ||
release.properties | ||
pom.xml.releaseBackup | ||
.java-version | ||
*.backup | ||
|
||
# Files generated by the release tooling of jQAssistant | ||
pom.xml.updatetorelease | ||
pom.xml.updatetonextdevversion | ||
|
||
# Ignore temporary shell scripts used to script small tasks | ||
*.sh.ignore | ||
|
||
# Maven related files and directories | ||
target | ||
/.mvn |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.