From b3d0580439b9a00c7eb918085de1694151066004 Mon Sep 17 00:00:00 2001 From: Kenmegne <stephanie.kenmegne@gmail.com> Date: Thu, 18 Jun 2026 16:02:49 +0000 Subject: [PATCH] rename packages --- fdx_convert/pom.xml | 195 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 195 insertions(+), 0 deletions(-) diff --git a/fdx_convert/pom.xml b/fdx_convert/pom.xml new file mode 100644 index 0000000..31e5e35 --- /dev/null +++ b/fdx_convert/pom.xml @@ -0,0 +1,195 @@ +<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + + <modelVersion>4.0.0</modelVersion> + + <groupId>com.megatim.importation.validation.data.client</groupId> + <artifactId>fdx-convert-client</artifactId> + <version>1.0</version> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <maven.compiler.source>1.8</maven.compiler.source> + <maven.compiler.target>1.8</maven.compiler.target> + <exec.mainClass>importation.validation.data.client.App</exec.mainClass> + </properties> + + <build> + + <plugins> + + <plugin> + <artifactId>maven-assembly-plugin</artifactId> + <configuration> + <archive> + <manifest> + <mainClass>importation.validation.data.client.App</mainClass> + </manifest> + </archive> + <descriptorRefs> + <descriptorRef>jar-with-dependencies</descriptorRef> + </descriptorRefs> + </configuration> + <executions> + <execution> + <id>make-assembly</id> <!-- this is used for inheritance merges --> + <phase>package</phase> <!-- bind to the packaging phase --> + <goals> + <goal>single</goal> + </goals> + </execution> + </executions> + </plugin> + + </plugins> + </build> + + <dependencies> + <dependency> + <groupId>com.megatim</groupId> + <artifactId>dynamicjsonparser</artifactId> + <version>1.0</version> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.dataformat</groupId> + <artifactId>jackson-dataformat-xml</artifactId> + <version>2.15.2</version> + </dependency> + <dependency> + <groupId>com.megatim</groupId> + <artifactId>fdx-datafile-converter</artifactId> + <version>1.0</version> + </dependency> + + <dependency> + <groupId>com.h2database</groupId> + <artifactId>h2</artifactId> + <scope>runtime</scope> + <version>2.1.214</version> + </dependency> + + <dependency> + <groupId>org.projectlombok</groupId> + <artifactId>lombok</artifactId> + <version>1.18.20</version> + <scope>provided</scope> + </dependency> + + <dependency> + <groupId>org.hibernate</groupId> + <artifactId>hibernate-core</artifactId> + <version>5.3.0.Final</version> + <scope>compile</scope> + </dependency> + + <dependency> + <groupId>javax.validation</groupId> + <artifactId>validation-api</artifactId> + <version>2.0.0.Final</version> + </dependency> + + + <dependency> + <groupId>org.hibernate.validator</groupId> + <artifactId>hibernate-validator</artifactId> + <version>6.0.13.Final</version> + </dependency> + + <dependency> + <groupId>com.megatimfx.common</groupId> + <artifactId>megatimfx-common</artifactId> + <version>1.0</version> + </dependency> + + <dependency> + <groupId>com.megatim.typefichier.validator</groupId> + <artifactId>typefichier-validator</artifactId> + <version>1.0</version> + </dependency> + + <dependency> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + <version>2.11.0</version> + </dependency> + <dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + <version>1.2.17</version> + </dependency> + <dependency> + <groupId>com.megatim</groupId> + <artifactId>module.encryption</artifactId> + <version>1.0-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>com.megatim</groupId> + <artifactId>module-compression</artifactId> + <version>0.0.1-SNAPSHOT</version> + </dependency> + + <dependency> + <groupId>org.apache.poi</groupId> + <artifactId>poi</artifactId> + <version>3.17</version> + </dependency> + + <dependency> + <groupId>org.apache.poi</groupId> + <artifactId>poi-ooxml</artifactId> + <version>3.17</version> + </dependency> + + <dependency> + <groupId>org.dhatim</groupId> + <artifactId>fastexcel</artifactId> + <version>0.14.0</version> + </dependency> + + <!-- https://mvnrepository.com/artifact/org.dhatim/fastexcel-reader --> + <dependency> + <groupId>org.dhatim</groupId> + <artifactId>fastexcel-reader</artifactId> + <version>0.15.7</version> + </dependency> + + + <dependency> + <groupId>com.megatim</groupId> + <artifactId>customview</artifactId> + <version>1.0-SNAPSHOT</version> + </dependency> + + <dependency> + <groupId>com.opencsv</groupId> + <artifactId>opencsv</artifactId> + <version>4.1</version> + </dependency> + + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-csv</artifactId> + <version>1.10.0</version> + </dependency> + + <dependency> + <groupId>org.apache.tika</groupId> + <artifactId>tika-core</artifactId> + <version>2.9.0</version> + </dependency> + + <dependency> + <groupId>org.apache.tika</groupId> + <artifactId>tika-parsers</artifactId> + <version>2.9.0</version> + <type>pom</type> + </dependency> + + <dependency> + <groupId>org.apache.tika</groupId> + <artifactId>tika-parser-text-module</artifactId> + <version>2.9.0</version> + </dependency> + + </dependencies> +</project> \ No newline at end of file -- Gitblit v1.10.0