Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,17 @@ repositories {
}

dependencies {
implementation 'com.github.Miche-Let:common:main-SNAPSHOT'
implementation 'com.github.Miche-Let:common:<TAG-or-COMMIT>'
}
```

> `<TAG-or-COMMIT>` 는 깃 태그(`v0.0.1` 등), 브랜치(`main-SNAPSHOT`), 또는 커밋 해시.
>
> ex )
>
> dependencies {
implementation 'com.github.Miche-Let:common:dev-SNAPSHOT'
}
Comment on lines +52 to +57

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

예제 코드 블록 포맷팅이 깨져 있습니다.

예제 코드가 코드 블록 내에 포함되어 있지 않아 마크다운 렌더링 시 가독성이 떨어집니다.

📝 포맷팅 수정 제안
 > `<TAG-or-COMMIT>` 는 깃 태그(`v0.0.1` 등), 브랜치(`main-SNAPSHOT`), 또는 커밋 해시.
->
-> ex )
-> 
-> dependencies {
-implementation 'com.github.Miche-Let:common:dev-SNAPSHOT'
-}
+>
+> 예시:
+> ```gradle
+> dependencies {
+>     implementation 'com.github.Miche-Let:common:dev-SNAPSHOT'
+> }
+> ```
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@README.md` around lines 52 - 57, 예제 코드 블록의 마크다운 포맷이 깨져 있으니 해당 텍스트(예: the
dependencies block containing "dependencies {" and "implementation
'com.github.Miche-Let:common:dev-SNAPSHOT'")를 ```gradle 코드 펜스로 감싸서 시작과 끝에 각각
```를 추가하고 들여쓰기 및 줄바꿈을 정리하여 코드 블록으로 렌더링되게 수정하세요; 즉, wrap the "dependencies { ...
}" snippet in a fenced code block with the language tag `gradle` and ensure the
closing fence is present.


### 2. `AuditorAware<UUID>` Bean 등록 (필수)

Expand Down
23 changes: 17 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ plugins {
id 'java-library'
id 'org.springframework.boot' version '3.5.14' apply false
id 'io.spring.dependency-management' version '1.1.6'
id 'maven-publish'
}

group = 'com.michelet'
Expand Down Expand Up @@ -31,13 +32,10 @@ dependencyManagement {
}

dependencies {
// 공통 모듈이 제공하는 기능들에 필요한 최소 의존성
// api 로 노출해서 서비스가 별도 선언 없이 바로 쓸 수 있게 함
api 'org.springframework.boot:spring-boot-starter-web'
api 'org.springframework.boot:spring-boot-starter-validation'
api 'org.springframework.boot:spring-boot-starter-data-jpa'

// Lombok
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'

Expand All @@ -58,3 +56,16 @@ javadoc {
options.addStringOption('Xdoclint:none', '-quiet')
}

publishing {
publications {
common(MavenPublication) {
from components.java
}
}
}

tasks.withType(GenerateModuleMetadata).configureEach {
suppressedValidationErrors.add('dependencies-without-versions')
}


Loading