-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FINERACT-1932: Fineract modularization - fineract-bulkimport
- Loading branch information
Jose Alberto Hernandez
committed
Dec 1, 2024
1 parent
f63df47
commit 0d175ba
Showing
38 changed files
with
405 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
description = 'Fineract Bulkimport' | ||
|
||
apply plugin: 'java' | ||
apply plugin: 'eclipse' | ||
|
||
compileJava.doLast { | ||
def mainSS = sourceSets.main | ||
def source = mainSS.java.classesDirectory.get() | ||
copy { | ||
from file("src/main/resources/jpa/bulkimport/persistence.xml") | ||
into "${source}/META-INF/" | ||
} | ||
javaexec { | ||
description = 'Performs EclipseLink static weaving of entity classes' | ||
def target = source | ||
main 'org.eclipse.persistence.tools.weaving.jpa.StaticWeave' | ||
args '-persistenceinfo', source, source, target | ||
classpath sourceSets.main.runtimeClasspath | ||
} | ||
delete { | ||
delete "${source}/META-INF/persistence.xml" | ||
} | ||
} | ||
|
||
// Configuration for Swagger documentation generation task | ||
// https://github.com/swagger-api/swagger-core/tree/master/modules/swagger-gradle-plugin | ||
import org.apache.tools.ant.filters.ReplaceTokens | ||
|
||
|
||
|
||
configurations { | ||
providedRuntime // needed for Spring Boot executable WAR | ||
providedCompile | ||
compile() { | ||
exclude module: 'hibernate-entitymanager' | ||
exclude module: 'hibernate-validator' | ||
exclude module: 'activation' | ||
exclude module: 'bcmail-jdk14' | ||
exclude module: 'bcprov-jdk14' | ||
exclude module: 'bctsp-jdk14' | ||
exclude module: 'c3p0' | ||
exclude module: 'stax-api' | ||
exclude module: 'jaxb-api' | ||
exclude module: 'jaxb-impl' | ||
exclude module: 'jboss-logging' | ||
exclude module: 'itext-rtf' | ||
exclude module: 'classworlds' | ||
} | ||
runtime | ||
} | ||
|
||
apply from: 'dependencies.gradle' | ||
|
||
// Configuration for the modernizer plugin | ||
// https://github.com/andygoossens/gradle-modernizer-plugin | ||
modernizer { | ||
ignoreClassNamePatterns = [ | ||
'.*AbstractPersistableCustom', | ||
'.*EntityTables', | ||
'.*domain.*' | ||
] | ||
} | ||
|
||
// If we are running Gradle within Eclipse to enhance classes with OpenJPA, | ||
// set the classes directory to point to Eclipse's default build directory | ||
if (project.hasProperty('env') && project.getProperty('env') == 'eclipse') { | ||
sourceSets.main.java.outputDir = new File(rootProject.projectDir, "fineract-bulkimport/bin/main") | ||
} | ||
|
||
eclipse { | ||
project { | ||
buildCommand([ LaunchConfigHandle: "<project>/.externalToolBuilders/OpenJPA Enhance Builder.launch" ], 'org.eclipse.ui.externaltools.ExternalToolBuilder') | ||
} | ||
} | ||
|
||
/* http://stackoverflow.com/questions/19653311/jpa-repository-works-in-idea-and-production-but-not-in-gradle */ | ||
sourceSets.main.output.resourcesDir = sourceSets.main.java.classesDirectory | ||
sourceSets.test.output.resourcesDir = sourceSets.test.java.classesDirectory | ||
|
||
if (!(project.hasProperty('env') && project.getProperty('env') == 'dev')) { | ||
sourceSets { | ||
test { | ||
java { | ||
exclude '**/core/boot/tests/**' | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
dependencies { | ||
// Never use "compile" scope, but make all dependencies either 'implementation', 'runtimeOnly' or 'testCompile'. | ||
// Note that we never use 'api', because Fineract at least currently is a simple monolithic application ("WAR"), not a library. | ||
// We also (normally should have) no need to ever use 'compileOnly'. | ||
|
||
// implementation dependencies are directly used (compiled against) in src/main (and src/test) | ||
// | ||
implementation(project(path: ':fineract-core')) | ||
implementation(project(path: ':fineract-document')) | ||
implementation(project(path: ':fineract-rates')) | ||
|
||
implementation( | ||
'org.springframework.boot:spring-boot-starter-web', | ||
'org.springframework.boot:spring-boot-starter-security', | ||
'jakarta.ws.rs:jakarta.ws.rs-api', | ||
'org.glassfish.jersey.media:jersey-media-multipart', | ||
|
||
'com.google.guava:guava', | ||
'com.google.code.gson:gson', | ||
|
||
'org.apache.commons:commons-lang3', | ||
|
||
'com.jayway.jsonpath:json-path', | ||
|
||
'com.github.spotbugs:spotbugs-annotations', | ||
'io.swagger.core.v3:swagger-annotations-jakarta', | ||
|
||
'com.squareup.retrofit2:converter-gson', | ||
|
||
'org.springdoc:springdoc-openapi-starter-webmvc-ui', | ||
'org.mapstruct:mapstruct', | ||
|
||
'io.github.resilience4j:resilience4j-spring-boot3', | ||
'org.apache.httpcomponents:httpcore', | ||
'org.apache.poi:poi', | ||
'org.apache.poi:poi-ooxml-full:5.2.5', | ||
) | ||
compileOnly 'org.projectlombok:lombok' | ||
annotationProcessor 'org.projectlombok:lombok' | ||
annotationProcessor 'org.mapstruct:mapstruct-processor' | ||
implementation ('org.springframework.boot:spring-boot-starter-data-jpa') { | ||
exclude group: 'org.hibernate' | ||
} | ||
implementation('org.eclipse.persistence:org.eclipse.persistence.jpa') { | ||
exclude group: 'org.eclipse.persistence', module: 'jakarta.persistence' | ||
} | ||
// testCompile dependencies are ONLY used in src/test, not src/main. | ||
// Do NOT repeat dependencies which are ALREADY in implementation or runtimeOnly! | ||
// | ||
testImplementation( 'io.github.classgraph:classgraph' ) | ||
testImplementation ('org.springframework.boot:spring-boot-starter-test') { | ||
exclude group: 'com.jayway.jsonpath', module: 'json-path' | ||
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine' | ||
exclude group: 'jakarta.activation' | ||
exclude group: 'javax.activation' | ||
exclude group: 'org.skyscreamer' | ||
} | ||
testImplementation ('org.mockito:mockito-inline') | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.