Skip to content

Commit

Permalink
Merge pull request #27 from codef-io/develop
Browse files Browse the repository at this point in the history
release: v2.0.0-beta-002
  • Loading branch information
h-beeen authored Nov 21, 2024
2 parents 77fa06c + 6aae189 commit e2c492e
Show file tree
Hide file tree
Showing 8 changed files with 121 additions and 27 deletions.
40 changes: 40 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Bug Report
description: Report a bug
labels: [bug]
title: '[Bug]: '
body:
- type: textarea
id: description
attributes:
description: 버그에 대해서 설명해주세요.
label: Bug description
validations:
required: true

- type: textarea
id: expected
attributes:
label: Expected behavior

- type: textarea
id: reproduction-steps
attributes:
label: To Reproduce
description: 재현 방법을 자세히 알려주세요. 특정 환경에서만 발생하는 것 같다면, JDK와 실행 환경에 대한 정보도 함께 제공해주세요.
placeholder: |
최소한으로 재현 가능한 코드 또는 재현 단계를 설명해주세요. 선택 사항이지만 권장됩니다.
- type: textarea
id: possible-solution
attributes:
label: Possible Solution
placeholder: I think this is probably...
validations:
required: false

- type: textarea
id: etc
attributes:
label: etc.
validations:
required: false
27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Feature Request
description: Suggest an idea
labels: [feat]
title: '[Feat]: '
body:
- type: textarea
id: description
attributes:
description: 원하시는 기능을 설명해주세요.
label: Description
validations:
required: true

- type: textarea
id: possible-solution
attributes:
label: Possible Solution
placeholder: I think this is probably...
validations:
required: false

- type: textarea
id: etc
attributes:
label: etc.
validations:
required: false
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "gradle"
directory: "/"
schedule:
interval: "weekly"
33 changes: 33 additions & 0 deletions .github/release-drafter-config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name-template: 'v$RESOLVED_VERSION'
tag-template: 'v$RESOLVED_VERSION'
categories:
- title: '🚀 Features'
label: 'feat'
- title: '🐛 fixes'
labels:
- 'bug'
- 'fix'
- 'hotfix'
- title: '🔧 Refactors'
label: 'refactor'
- title: '📃 Docs'
label: 'docs'
- title: '📦 Chore'
label: 'chore'
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
change-title-escapes: '\<*_&'
version-resolver:
major:
labels:
- 'major'
minor:
labels:
- 'minor'
patch:
labels:
- 'patch'
default: patch
template: |
## Describe changes
$CHANGES
9 changes: 8 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,11 @@ jobs:
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
GPG_KEY_ID: ${{ secrets.GPG_KEY_ID }}
run: |
./gradlew publishAllPublicationsToMavenCentralRepository
./gradlew publishAllPublicationsToMavenCentralRepository
- name: Release Drafter
uses: release-drafter/release-drafter@v5
with:
config-name: release-drafter-config.yml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1 change: 1 addition & 0 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- master
- develop
pull_request:
branches:
- develop
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
<a title="코드에프" href="https://codef.io/">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/user-attachments/assets/d83f0450-d84e-4594-8fc0-ed08a1d05390">
<img alt="코드에프" src="https://github.com/user-attachments/assets/d83f0450-d84e-4594-8fc0-ed08a1d05390" width="250">
<img alt="코드에프" src="https://github.com/user-attachments/assets/cd2e9709-742f-4e27-b695-4515bdbb7cc0" width="250">
</picture>
</a>
</p>
</p>

<br>

Expand Down
29 changes: 4 additions & 25 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -65,37 +65,16 @@ mavenPublishing {


dependencies {

/**
* 2024-10-29 Latest
* https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind
*/
implementation("com.fasterxml.jackson.core:jackson-databind:2.18.1")

/**
* 2024-10-17 Latest
*/
implementation("com.alibaba:fastjson:2.0.53")

/**
* 2024-06-12 Latest
* https://mvnrepository.com/artifact/commons-codec/commons-codec
*/
implementation("commons-codec:commons-codec:1.17.1")

/**
* 2024-10-28 Latest
* https://mvnrepository.com/artifact/org.apache.httpcomponents.client5/httpclient5/5.4.1
* https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j2-impl
*/

implementation("org.apache.httpcomponents.client5:httpclient5:5.4.1")
implementation("org.apache.logging.log4j:log4j-slf4j2-impl:2.24.1")
implementation("ch.qos.logback:logback-classic:1.5.12")
implementation("ch.qos.logback:logback-core:1.5.12")
implementation("org.slf4j:slf4j-api:2.0.16")

/**
* 2024-10-21 Latest
* https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-engine
* https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api
*/
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.3")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.3")
}
Expand Down

0 comments on commit e2c492e

Please sign in to comment.