any2json-examples
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.romualdrousseau</groupId>
<artifactId>any2json-examples</artifactId>
<version>2.44.9</version>
</dependency><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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.romualdrousseau</groupId>
<artifactId>any2json-monorepo</artifactId>
<version>2.44.9</version>
</parent>
<groupId>com.github.romualdrousseau</groupId>
<artifactId>any2json-examples</artifactId>
<version>2.44.9</version>
<packaging>jar</packaging>
<name>Any2Json Examples</name>
<description>
This package contains a number of examples that demonstrates how you can use the Any2Json to load documents from
"real life".
</description>
<url>https://github.com/romualdrousseau/any2json-examples</url>
<dependencies>
<!-- ShuJu Framework -->
<dependency>
<groupId>com.github.romualdrousseau</groupId>
<artifactId>shuju</artifactId>
<version>${shuju.version}</version>
</dependency>
<dependency>
<groupId>com.github.romualdrousseau</groupId>
<artifactId>shuju-jackson-json</artifactId>
<version>${shuju.version}</version>
</dependency>
<!-- Any2Json Framework -->
<dependency>
<groupId>com.github.romualdrousseau</groupId>
<artifactId>any2json</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.github.romualdrousseau</groupId>
<artifactId>any2json-layex-parser</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.github.romualdrousseau</groupId>
<artifactId>any2json-net-classifier</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.github.romualdrousseau</groupId>
<artifactId>any2json-csv</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.github.romualdrousseau</groupId>
<artifactId>any2json-excel</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.github.romualdrousseau</groupId>
<artifactId>any2json-pdf</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>3.1.3</version>
<executions>
<execution>
<?m2e ignore?>
<id>xelem</id>
<phase>initialize</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<file>libs/xelem-3.1/xelem-3.1.jar</file>
<groupId>nl.fountain</groupId>
<artifactId>xelem</artifactId>
<version>3.1</version>
<packaging>jar</packaging>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.8.0</version>
<executions>
<execution>
<?m2e ignore?>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>