Skip to content

Commit

Permalink
Merge pull request #406 from jQAssistant/405-merge-repositories-into-…
Browse files Browse the repository at this point in the history
…jqassistant

405 merge repositories into jqassistant
  • Loading branch information
DirkMahler authored Jul 10, 2024
2 parents 9c0f14e + 493355b commit 8f4735d
Show file tree
Hide file tree
Showing 1,928 changed files with 86,199 additions and 154 deletions.
12 changes: 12 additions & 0 deletions .editorconfig
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
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
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 }}
37 changes: 37 additions & 0 deletions .github/workflows/release.yml
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 }}
38 changes: 23 additions & 15 deletions .gitignore
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
63 changes: 0 additions & 63 deletions .gitmodules

This file was deleted.

Loading

0 comments on commit 8f4735d

Please sign in to comment.