kftc-financial-institution-info
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.jinahya</groupId> <artifactId>kftc-financial-institution-info</artifactId> <version>0.1.0+20240923</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.github.jinahya</groupId> <artifactId>jinahya-parent</artifactId> <version>0.9.2</version> </parent> <artifactId>kftc-financial-institution-info</artifactId> <version>0.1.0+20240923</version> <packaging>jar</packaging> <name>${project.artifactId}</name> <description>Financial institution information provided by KFTC</description> <url>https://github.com/jinahya/$project.artifactId}</url> <inceptionYear>2024</inceptionYear> <organization> <name>Jinahya, Inc.</name> <url>https://jinahya.com</url> </organization> <scm> <connection>scm:git:git@github.com:jinahya/${project.artifactId}.git</connection> <developerConnection>scm:git:git@github.com:jinahya/${project.artifactId}.git</developerConnection> <url>https://github.com:jinahya/${project.artifactId}</url> <tag>0.1.0+20240923</tag> </scm> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/jinahya/${project.artifactId}/issues</url> </issueManagement> <ciManagement> <system>GitHub Actions</system> <url>https://github.com/jinahya/${project.artifactId}/actions/workflows/maven.yml</url> </ciManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>${maven.compiler.source}</maven.compiler.target> <maven.compiler.release>${maven.compiler.target}</maven.compiler.release> <maven.compiler.testSource>21</maven.compiler.testSource> <maven.compiler.testTarget>${maven.compiler.testSource}</maven.compiler.testTarget> <maven.compiler.testRelease>${maven.compiler.testTarget}</maven.compiler.testRelease> <sonar.host.url>https://sonarcloud.io</sonar.host.url> <sonar.organization>jinahya-github</sonar.organization> <sonar.projectKey>jinahya_kftc-financial-institution-info</sonar.projectKey> <sonar.coverage.jacoco.xmlReportPaths>${project.build.directory}/site/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths> <!-- https://search.maven.org/search?q=g:com.google.protobuf --> <!-- <version.com.google.protobuf>4.27.3</version.com.google.protobuf>--> <version.com.google.protobuf>4.28.2</version.com.google.protobuf> <version.lombok>1.18.34</version.lombok> <version.maven-failsafe>${version.maven-surefire}</version.maven-failsafe> <!-- <version.maven-surefire>3.4.0</version.maven-surefire>--> <version.maven-surefire>3.5.0</version.maven-surefire> <!-- https://search.maven.org/search?q=g:org.apache.pdfbox --> <!-- <version.org.apache.poi>5.2.5</version.org.apache.poi>--> <version.org.apache.poi>5.3.0</version.org.apache.poi> <!-- https://search.maven.org/search?q=g:org.hibernate.orm --> <version.org.hibernate.orm>7.0.0.Alpha3</version.org.hibernate.orm> <!-- https://search.maven.org/artifact/org.junit/junit-bom --> <version.org.junit.jupiter>5.11.0</version.org.junit.jupiter> <version.org.junit>${version.org.junit.jupiter}</version.org.junit> <version.org.mockito>5.13.0</version.org.mockito> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>com.fasterxml.jackson</groupId> <artifactId>jackson-bom</artifactId> <version>2.17.2</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> <version>${version.com.google.protobuf}</version> </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java-util</artifactId> <version>${version.com.google.protobuf}</version> </dependency> <dependency> <groupId>org.hibernate.orm</groupId> <artifactId>hibernate-platform</artifactId> <version>${version.org.hibernate.orm}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.junit</groupId> <artifactId>junit-bom</artifactId> <version>${version.org.junit}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.5.8</version> <scope>test</scope> </dependency> <dependency> <groupId>com.itextpdf</groupId> <artifactId>itextpdf</artifactId> <version>5.5.13.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>${version.org.apache.poi}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.26.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse</groupId> <artifactId>yasson</artifactId> <version>3.0.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <version>${version.org.mockito}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${version.lombok}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.xerial</groupId> <artifactId>sqlite-jdbc</artifactId> <version>3.46.1.0</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.4.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.10.0</version> <configuration> <additionalOptions> <additionalOption>-Xdoclint:none</additionalOption> <additionalOptions>-package</additionalOptions> </additionalOptions> <tags> <tag> <name>apiNote</name> <placement>a</placement> <head>API Note:</head> </tag> <tag> <name>implSpec</name> <placement>a</placement> <head>Implementation Requirements:</head> </tag> <tag> <name>implNote</name> <placement>a</placement> <head>Implementation Note:</head> </tag> </tags> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>3.7.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <!-- https://issues.apache.org/jira/browse/MRESOURCES-237 --> <!-- https://search.maven.org/artifact/org.apache.maven.plugins/maven-resources-plugin --> <!-- <version>3.3.1</version>--> <version>2.7</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>4.0.0-M16</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>3.6.0</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.17.2</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.12</version> </plugin> <plugin> <groupId>org.sonarsource.scanner.maven</groupId> <artifactId>sonar-maven-plugin</artifactId> <!--version>3.11.0.3922</version--> <version>4.0.0.4121</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <annotationProcessorPaths> <path> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${version.lombok}</version> </path> </annotationProcessorPaths> <compilerArgs> <arg>-Xlint</arg> </compilerArgs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.5.0</version> <executions> <execution> <id>enforce-dependency-convergence</id> <configuration> <skip>true</skip> <rules> <dependencyConvergence /> </rules> </configuration> <goals> <goal>enforce</goal> </goals> </execution> <execution> <id>enforce-require-java-version</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireJavaVersion> <version>[21.0.0,)</version> </requireJavaVersion> </rules> </configuration> </execution> <execution> <id>enforce-require-maven-version</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>[3.6.3,)</version> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${version.maven-surefire}</version> <configuration> <useModulePath>false</useModulePath> <excludes> <exclude>**/*IT.java</exclude> <!-- 이게 왜 필요한지 확인 필요 --> </excludes> <systemPropertyVariables> <!-- https://qiita.com/hanohrs/items/2bade076e38ce0844403 --> <org.jboss.logging.provider>slf4j</org.jboss.logging.provider> </systemPropertyVariables> <trimStackTrace>false</trimStackTrace> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <version>2.4.0</version> <configuration> <licenseName>apache_v2</licenseName> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <executions> <execution> <id>default-prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>default-report</id> <goals> <goal>report</goal> </goals> <phase>verify</phase> <configuration> <formats> <format>XML</format> </formats> </configuration> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> <version>4.8.6.4</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>3.5.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>3.5.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <show>package</show> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>3.25.0</version> <configuration> <!-- Unsupported targetJdk value '21'. --> <!-- <skip>true</skip>--> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <reportSets> <reportSet> <reports> <report>report</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> <profiles> <profile> <id>db</id> <activation> <activeByDefault>false</activeByDefault> </activation> <properties> <kftc-financial-institution-info.sqlite3.path>${project.basedir}/db/kftc-financial-institution-info.sqlite3</kftc-financial-institution-info.sqlite3.path> </properties> <dependencies> <dependency> <groupId>org.hibernate.orm</groupId> <artifactId>hibernate-community-dialects</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>add-test-resource-db</id> <phase>generate-test-resources</phase> <goals> <goal>add-test-resource</goal> </goals> <configuration> <resources> <resource> <directory>src/test/resources-db</directory> <filtering>true</filtering> </resource> </resources> </configuration> </execution> <execution> <id>add-test-source</id> <phase>generate-test-sources</phase> <goals> <goal>add-test-source</goal> </goals> <configuration> <sources> <source>${project.basedir}/src/test/java-db</source> </sources> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>json</id> <activation> <activeByDefault>false</activeByDefault> </activation> <dependencies> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>add-test-source-json</id> <phase>generate-test-sources</phase> <goals> <goal>add-test-source</goal> </goals> <configuration> <sources> <source>${project.basedir}/src/test/java-json</source> </sources> </configuration> </execution> <execution> <id>add-test-resource-json</id> <phase>generate-test-resources</phase> <goals> <goal>add-test-resource</goal> </goals> <configuration> <resources> <resource> <directory>src/test/resources-json</directory> </resource> </resources> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>ndjson</id> <activation> <activeByDefault>false</activeByDefault> </activation> <dependencies> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>add-test-source-ndjson</id> <phase>generate-test-sources</phase> <goals> <goal>add-test-source</goal> </goals> <configuration> <sources> <source>${project.basedir}/src/test/java-ndjson</source> </sources> </configuration> </execution> <execution> <id>add-test-resource-ndjson</id> <phase>generate-test-resources</phase> <goals> <goal>add-test-resource</goal> </goals> <configuration> <resources> <resource> <directory>src/test/resources-ndjson</directory> </resource> </resources> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>proto</id> <activation> <activeByDefault>false</activeByDefault> </activation> <dependencies> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java-util</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <executions> <execution> <id>protoc-branch-info</id> <phase>generate-test-sources</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>protoc</executable> <arguments> <argument>--java_out=src/test/java-proto</argument> <argument>src/test/resources-proto/KftcFinancialInstitutionBranchInfoProto.proto</argument> </arguments> </configuration> </execution> <execution> <id>protoc-info</id> <phase>generate-test-sources</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>protoc</executable> <arguments> <argument>--java_out=src/test/java-proto</argument> <argument>src/test/resources-proto/KftcFinancialInstitutionInfoProto.proto</argument> </arguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>add-test-source-proto</id> <phase>generate-test-sources</phase> <goals> <goal>add-test-source</goal> </goals> <configuration> <sources> <source>${project.basedir}/src/test/java-proto</source> </sources> </configuration> </execution> <execution> <id>add-test-resource-proto</id> <phase>generate-test-resources</phase> <goals> <goal>add-test-resource</goal> </goals> <configuration> <resources> <resource> <directory>src/test/resources-proto</directory> </resource> </resources> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>