Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: P4ADEV-1779 create api get installments by organization id and nav #30

Merged
Merged
Changes from 1 commit
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
Next Next commit
P4ADEV-1779 create api getInstallmentsByOrganizationIdAndNav
serdimic committed Jan 27, 2025
commit 485d9a7f982e7a0a908a85081c0777d9af38c7fa
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -2,7 +2,8 @@ HELP.md
!**/src/main/**/target/
!**/src/test/**/target/

#**/src/main/resources/application-local*.properties
### Local development resources ###
local-*.env

### STS ###
.apt_generated
2 changes: 2 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -42,6 +42,7 @@ val micrometerVersion = "1.4.1"
val postgresJdbcVersion = "42.7.4"
val bouncycastleVersion = "1.79"
val mapStructVersion = "1.6.3"
val podamVersion = "8.0.2.RELEASE"

dependencies {
implementation("org.springframework.boot:spring-boot-starter")
@@ -82,6 +83,7 @@ dependencies {
testImplementation ("org.projectlombok:lombok")
testAnnotationProcessor("org.projectlombok:lombok")
testImplementation("com.h2database:h2")
testImplementation("uk.co.jemos.podam:podam:$podamVersion")
}

tasks.withType<Test> {
Loading