Skip to content

Commit

Permalink
fixed docs & pom
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Pletnev committed Sep 9, 2021
1 parent dce1c75 commit 1fa4e63
Show file tree
Hide file tree
Showing 9 changed files with 99 additions and 10 deletions.
48 changes: 48 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Bug Report
description: File a bug report
title: "[Bug]: "
labels: [bug, triage]
assignees:
- bespaltovyj
body:
- type: checkboxes
attributes:
label: Is there an existing issue for this?
description: Please search to see if an issue already exists for the bug you encountered.
options:
- label: I have searched the existing issues
required: true
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: textarea
id: camunda-version
attributes:
label: camunda-version
value: "7.13.0"
validations:
required: true
- type: textarea
id: camunda-delegator-version
attributes:
label: camunda-delegator-version
value: "5.0.3"
validations:
required: true
- type: textarea
id: spring-boot-version
attributes:
label: spring-boot-version
value: "2.4.2"
validations:
required: true
- type: textarea
id: what-happened
attributes:
label: What happened?
description: Also tell us, what did you expect to happen?
placeholder: Tell us what you see!
value: "A bug happened!"
validations:
required: true
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: true
26 changes: 26 additions & 0 deletions .github/ISSUE_TEMPLATE/feature.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Feature request
description: File a feature request
title: "[Feature]: "
labels: [ feature ]
assignees:
- bespaltovyj
body:
- type: checkboxes
attributes:
label: Is there an existing issue for this?
description: Please search to see if an issue already exists.
options:
- label: I have searched the existing issues
required: true
- type: textarea
attributes:
label: Current Behavior
description: A concise description of what you're experiencing.
validations:
required: false
- type: textarea
attributes:
label: Expected Behavior
description: A concise description of what you expected to happen.
validations:
required: false
4 changes: 4 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
A similar PR may already be submitted!
Please search among the [Pull requests](https://github.com/TinkoffCreditSystems/camunda-delegator-lib/pulls) before creating one.

Thanks for submitting a pull request! Please provide enough information so that others can review your pull request. Link to relevant issues if possible.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Publish Plugin
on:
release:
types:
- created
- published

jobs:
publish-plugin:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: Java CI
name: Verify PR

on:
pull_request:
paths-ignore:
- '*.md'

jobs:
publish-plugin:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
15 changes: 10 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
id("io.spring.dependency-management") version "1.0.11.RELEASE"

id("com.github.jk1.dependency-license-report") version "1.17"
id("org.jmailen.kotlinter") version "3.5.1"
id("org.jmailen.kotlinter") version "3.6.0"
id("org.jetbrains.dokka") version "1.5.0"
}

Expand Down Expand Up @@ -108,9 +108,6 @@ subprojects {
from("${project.rootDir}/LICENSE")
}
)

// https://youtrack.jetbrains.com/issue/KT-46165
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
Expand Down Expand Up @@ -143,6 +140,13 @@ subprojects {
pom {
name.set("Camunda delegator lib")
description.set("This project provides declarative camunda delegates for Spring based application")
url.set("https://github.com/TinkoffCreditSystems/camunda-delegator-lib")

scm {
connection.set("scm:git:https://www.github.com/TinkoffCreditSystems/camunda-delegator-lib")
developerConnection.set("scm:git:https://github.com/TinkoffCreditSystems/camunda-delegator-lib")
url.set("https://github.com/TinkoffCreditSystems/camunda-delegator-lib")
}

licenses {
license {
Expand All @@ -153,6 +157,7 @@ subprojects {
}
developers {
developer {
id.set("bespaltovyj")
name.set("Pavel Pletnev")
email.set("p.pletnev@tinkoff.ru")
}
Expand Down Expand Up @@ -203,7 +208,7 @@ subprojects {
// kotlin
api("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
api("org.jetbrains.kotlin:kotlin-reflect")
api("io.github.microutils:kotlin-logging:2.0.10")
api("io.github.microutils:kotlin-logging:2.0.11")

// camunda
api("org.camunda.bpm:camunda-engine:$camundaVersion")
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
object Versions {
const val KOTLIN = "1.5.21"
const val KOTLIN = "1.5.30"
const val CAMUNDA = "7.13.0"
const val DETEKT = "1.18.0"
const val DETEKT = "1.18.1"
}
5 changes: 5 additions & 0 deletions camunda-delegator-docs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# camunda-delegator-docs

This module provide autogenerated delegates documentation and templates.

**THIS MODULE NOT PRODUCTION READY AND BACKWARD COMPATIBILITY NOT SUPPORTED**

0 comments on commit 1fa4e63

Please sign in to comment.