Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
137 changes: 8 additions & 129 deletions Batch/org.egovframe.rte.bat.core/pom.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">

<parent>
<groupId>org.egovframe.rte</groupId>
<artifactId>egovframe-rte-root</artifactId>
<version>5.0.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>org.egovframe.rte</groupId>
<artifactId>egovframe-rte-bat-core</artifactId>
<version>5.0.0</version>
<packaging>jar</packaging>
<name>org.egovframe.rte.bat.core</name>
<description>The eGovernment Standard Framework</description>
Expand All @@ -18,11 +24,7 @@
</licenses>

<properties>
<java.version>17</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<org.egovframe.rte.version>5.0.0</org.egovframe.rte.version>
<spring.framework.version>6.2.11</spring.framework.version>
<spring.batch.version>5.2.3</spring.batch.version>
<jakarta.annotation.version>3.0.0</jakarta.annotation.version>
<jakarta.persistence.version>3.2.0</jakarta.persistence.version>
Expand All @@ -36,16 +38,6 @@
<quartz.version>2.5.0</quartz.version>
<hsqldb.version>2.7.4</hsqldb.version>
<log4jdbc.version>1.2</log4jdbc.version>
<junit.jupiter.version>5.12.1</junit.jupiter.version>
<maven.compiler.plugins.version>3.14.0</maven.compiler.plugins.version>
<maven.pmd.plugins.version>3.26.0</maven.pmd.plugins.version>
<maven.source.plugins.version>3.3.1</maven.source.plugins.version>
<maven.javadoc.plugins.version>3.11.2</maven.javadoc.plugins.version>
<maven.install.plugins.version>3.1.4</maven.install.plugins.version>
<maven.surefire.plugins.version>3.5.2</maven.surefire.plugins.version>
<maven.project.info.report.plugins.version>3.6.2</maven.project.info.report.plugins.version>
<maven.surefire.report.plugins.version>3.5.3</maven.surefire.report.plugins.version>
<maven.jxr.plugins.version>3.6.0</maven.jxr.plugins.version>
</properties>

<repositories>
Expand Down Expand Up @@ -407,117 +399,4 @@
<scope>test</scope>
</dependency>
</dependencies>

<build>
<defaultGoal>install</defaultGoal>
<directory>${basedir}/target</directory>
<finalName>${project.artifactId}-${project.version}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.plugins.version}</version>
<configuration>
<release>${java.version}</release>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>${maven.pmd.plugins.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven.source.plugins.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- JavaDoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven.javadoc.plugins.version}</version>
<configuration>
<doclint>none</doclint>
</configuration>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>${maven.install.plugins.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven.surefire.plugins.version}</version>
<configuration>
<skipTests>false</skipTests>
<reportFormat>xml</reportFormat>
<excludes>
<exclude>**/Abstract*.java</exclude>
<exclude>**/*Suite.java</exclude>
</excludes>
<includes>
<include>**/*Test.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>

<reporting>
<outputDirectory>${basedir}/target/site</outputDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>${maven.project.info.report.plugins.version}</version>
<reportSets>
<reportSet>
<reports>
<report>dependencies</report>
<report>dependency-management</report>
<report>plugins</report>
<report>summary</report>
<report>team</report>
<report>scm</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>${maven.surefire.report.plugins.version}</version>
<reportSets>
<reportSet>
<reports>
<report>report-only</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<!-- Generating Java Source in HTML -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>${maven.jxr.plugins.version}</version>
</plugin>
</plugins>
</reporting>
</project>
137 changes: 8 additions & 129 deletions Foundation/org.egovframe.rte.fdl.access/pom.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">

<parent>
<groupId>org.egovframe.rte</groupId>
<artifactId>egovframe-rte-root</artifactId>
<version>5.0.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>org.egovframe.rte</groupId>
<artifactId>egovframe-rte-fdl-access</artifactId>
<version>5.0.0</version>
<packaging>jar</packaging>
<name>org.egovframe.rte.fdl.access</name>
<description>The eGovernment Standard Framework</description>
Expand All @@ -18,28 +24,14 @@
</licenses>

<properties>
<java.version>17</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<org.egovframe.rte.version>5.0.0</org.egovframe.rte.version>
<spring.framework.version>6.2.11</spring.framework.version>
<jakarta.annotation.version>3.0.0</jakarta.annotation.version>
<jakarta.persistence.version>3.2.0</jakarta.persistence.version>
<jakarta.servlet.version>6.0.0</jakarta.servlet.version>
<jackson.version>2.18.2</jackson.version>
<commons.dbcp2.version>2.13.0</commons.dbcp2.version>
<hsqldb.version>2.7.4</hsqldb.version>
<log4jdbc.version>1.2</log4jdbc.version>
<junit.jupiter.version>5.12.1</junit.jupiter.version>
<maven.compiler.plugins.version>3.14.0</maven.compiler.plugins.version>
<maven.pmd.plugins.version>3.26.0</maven.pmd.plugins.version>
<maven.source.plugins.version>3.3.1</maven.source.plugins.version>
<maven.javadoc.plugins.version>3.11.2</maven.javadoc.plugins.version>
<maven.install.plugins.version>3.1.4</maven.install.plugins.version>
<maven.surefire.plugins.version>3.5.2</maven.surefire.plugins.version>
<maven.project.info.report.plugins.version>3.6.2</maven.project.info.report.plugins.version>
<maven.surefire.report.plugins.version>3.5.3</maven.surefire.report.plugins.version>
<maven.jxr.plugins.version>3.6.0</maven.jxr.plugins.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -138,117 +130,4 @@
<scope>test</scope>
</dependency>
</dependencies>

<build>
<defaultGoal>install</defaultGoal>
<directory>${basedir}/target</directory>
<finalName>${project.artifactId}-${project.version}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.plugins.version}</version>
<configuration>
<release>${java.version}</release>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>${maven.pmd.plugins.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven.source.plugins.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- JavaDoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven.javadoc.plugins.version}</version>
<configuration>
<doclint>none</doclint>
</configuration>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>${maven.install.plugins.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven.surefire.plugins.version}</version>
<configuration>
<skipTests>false</skipTests>
<reportFormat>xml</reportFormat>
<excludes>
<exclude>**/Abstract*.java</exclude>
<exclude>**/*Suite.java</exclude>
</excludes>
<includes>
<include>**/*Test.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>

<reporting>
<outputDirectory>${basedir}/target/site</outputDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>${maven.project.info.report.plugins.version}</version>
<reportSets>
<reportSet>
<reports>
<report>dependencies</report>
<report>dependency-management</report>
<report>plugins</report>
<report>summary</report>
<report>team</report>
<report>scm</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>${maven.surefire.report.plugins.version}</version>
<reportSets>
<reportSet>
<reports>
<report>report-only</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<!-- Generating Java Source in HTML -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>${maven.jxr.plugins.version}</version>
</plugin>
</plugins>
</reporting>
</project>
Loading