Skip to content

Commit

Permalink
Merge pull request #213 from TEAM-SAMSION/PET-310
Browse files Browse the repository at this point in the history
  • Loading branch information
tlarbals824 authored Mar 11, 2024
2 parents e683d37 + ff0e818 commit 70bdf8a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions Api-Module/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ dependencies {

implementation project(':Alarm-Module')

implementation project(':Batch-Module')

implementation project(':Event')

getProjectsEndsWith("Domain-Module", "Presentation").forEach { module ->
Expand Down
1 change: 1 addition & 0 deletions Batch-Module/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ dependencies {
getProjectsEndsWith("Domain-Module", "Domain").forEach { module ->
implementation project(module.path)
}
implementation project(":Common-Module")
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,12 @@
import com.pawith.commonmodule.annotation.DomainService;
import com.pawith.userdomain.entity.WithdrawReason;
import com.pawith.userdomain.repository.WithdrawReasonRepository;
import jakarta.transaction.Transactional;
import lombok.RequiredArgsConstructor;

@DomainService
@RequiredArgsConstructor
public class WithDrawSaveService {
private final WithdrawReasonRepository withdrawReasonRepository;
@Transactional
public void save(WithdrawReason reason) {
withdrawReasonRepository.save(reason);
}
Expand Down
3 changes: 1 addition & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
networkTimeout=10000
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
4 changes: 3 additions & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,6 @@ include 'Common-Module'
include 'Image-Module'
include 'Alarm-Module'

include 'Event'
include 'Event'

include 'Batch-Module'

0 comments on commit 70bdf8a

Please sign in to comment.