Skip to content

Commit

Permalink
tax module
Browse files Browse the repository at this point in the history
  • Loading branch information
kjozsa committed Nov 14, 2024
1 parent bf47af0 commit 0fc51a6
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 2 deletions.
23 changes: 22 additions & 1 deletion fineract-savings/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,32 @@
* specific language governing permissions and limitations
* under the License.
*/
description = 'Fineract Savings'
description = 'Fineract Savings Module'

apply plugin: 'java'
apply plugin: 'io.freefair.lombok'
apply plugin: 'org.springframework.boot'

bootJar {
enabled = false
}

jar {
enabled = true
}

dependencies {
implementation(
project(':fineract-core')
)

testImplementation(
'org.junit.jupiter:junit-jupiter',
'org.mockito:mockito-core',
'org.mockito:mockito-junit-jupiter'
)
}

compileJava.doLast {
def mainSS = sourceSets.main
def source = mainSS.java.classesDirectory.get()
Expand Down
23 changes: 22 additions & 1 deletion fineract-tax/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,20 @@
* specific language governing permissions and limitations
* under the License.
*/
description = 'Fineract Tax'
description = 'Fineract Tax Module'

apply plugin: 'java'
apply plugin: 'io.freefair.lombok'
apply plugin: 'org.springframework.boot'

bootJar {
enabled = false
}

jar {
enabled = true
}

compileJava.doLast {
def mainSS = sourceSets.main
def source = mainSS.java.classesDirectory.get()
Expand Down Expand Up @@ -70,6 +79,18 @@ configurations {
runtime
}

dependencies {
implementation(
project(':fineract-core')
)

testImplementation(
'org.junit.jupiter:junit-jupiter',
'org.mockito:mockito-core',
'org.mockito:mockito-junit-jupiter'
)
}

apply from: 'dependencies.gradle'

// Configuration for the modernizer plugin
Expand Down

0 comments on commit 0fc51a6

Please sign in to comment.