dataShepherd
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.geminit-it</groupId> <artifactId>dataShepherd</artifactId> <version>1.0.2</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 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.geminit-it</groupId> <artifactId>dataShepherd</artifactId> <name>dataShepherd</name> <version>1.0.2</version> <description>A Java library to simplify writing and reading Excel files using annotations, supporting styles, images, relationships between sheets, and templates.</description> <url>https://github.com/geminit-it</url> <developers> <developer> <id>geminit-it</id> <name>Mohamed Zarrouki</name> <email>zarrouki1991@gmail.com</email> <url>https://github.com/geminit-it</url> </developer> </developers> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://github.com/Geminit-IT/dataShepherd.git/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com/Geminit-IT/dataShepherd.git</connection> <developerConnection>scm:git:ssh://git@github.com:Geminit-IT/dataShepherd.git</developerConnection> <url>https://github.com/Geminit-IT/dataShepherd</url> </scm> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.3</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.6.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.8.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <failOnError>false</failOnError> <additionalJOptions>-Xdoclint:none</additionalJOptions> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.6.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <relocations> <relocation> <pattern>org.apache.logging.log4j</pattern> <shadedPattern>io.github.geminit-it.log4j</shadedPattern> </relocation> <relocation> <pattern>org.apache.poi</pattern> <shadedPattern>io.github.geminit-it.poi</shadedPattern> </relocation> <relocation> <pattern>org.apache.commons.compress</pattern> <shadedPattern>io.github.geminit-it.commons.compress</shadedPattern> </relocation> <relocation> <pattern>org.apache.commons.io</pattern> <shadedPattern>io.github.geminit-it.commons.io</shadedPattern> </relocation> </relocations> <minimizeJar>true</minimizeJar> </configuration> </execution> </executions> </plugin> </plugins> </build> <properties> <maven.compiler.target>17</maven.compiler.target> <maven.compiler.source>17</maven.compiler.source> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>