Skip to content

Commit

Permalink
build: jitpack 배포구성 설정 (#6)
Browse files Browse the repository at this point in the history
* build: jitpack 배포구성을 설정한다

* build: sonarProjectKey가 잘못 설정 되어있는버그수정

* build: sonarProjectKey 수정
  • Loading branch information
devxb authored Feb 4, 2024
1 parent ac28e4f commit 6ad7ac5
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
8 changes: 8 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ plugins {
group = "${group}"
version = "${version}"

sourceCompatibility = "${compatibility}"
targetCompatibility = "${compatibility}"

repositories {
mavenCentral()
}
Expand All @@ -39,3 +42,8 @@ apply from: "gradle/sonar.gradle"
apply from: "gradle/kotlin.gradle"
apply from: "gradle/spring.gradle"
apply from: "gradle/protobuf.gradle"

wrapper {
gradleVersion = "7.6.1"
distributionType = Wrapper.DistributionType.ALL
}
3 changes: 2 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@ kotlin.code.style=official
### Project ###
group=org.rooftop.netx
version=0.1.0
compatibility=17

### Protobuf ###
protobufPluginVersion=0.9.4
protobufVersion=3.25.0

### Sonarcloud ###
sonarcloudVersion=4.4.1.3373
sonarProjectKey=rooftop-MSA_pay-server
sonarProjectKey=rooftop-MSA_Netx
sonarOrganization=rooftop-msa
sonarHostUrl=https://sonarcloud.io

Expand Down
5 changes: 5 additions & 0 deletions jitpack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
jdk:
- openjdk17
before_install:
- sdk install java 17.0.1-open
- sdk use java 17.0.1-open

0 comments on commit 6ad7ac5

Please sign in to comment.