DBFReader
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.zazalng</groupId>
<artifactId>DBFReader</artifactId>
<version>2.0.0-rc2</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.zazalng</groupId>
<artifactId>DBFReader</artifactId>
<version>2.0.0-rc2</version>
<name>DBFReader</name>
<description>Library for Reading DBF file as snapshot</description>
<url>https://github.com/Zazalng/DBFReader</url>
<distributionManagement>
<relocation>
<groupId>io.github.zazalng</groupId>
<artifactId>dbf-reader</artifactId>
<version>2.0.0-rc2</version>
<message>This artifact has been permanently relocated to the lowercase artifactId 'dbf-reader'.</message>
</relocation>
</distributionManagement>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<id>zazalng</id>
<name>Napapon Kamanee</name>
<email>kenghide@hotmail.com</email>
<organization>World Standard Group</organization>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/Zazalng/DBFReader.git</connection>
<developerConnection>scm:git:ssh://github.com:Zazalng/DBFReader.git</developerConnection>
<url>https://github.com/Zazalng/DBFReader</url>
</scm>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.deploy.skip>false</maven.deploy.skip>
</properties>
<!-- Testing -->
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>6.1.0-M1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>6.1.0-M1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Ensure JUnit5 runs -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M7</version>
</plugin>
<!-- Attach sources -->
<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>
<!-- Javadoc (Central requirement) -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.12.0</version>
<configuration>
<failOnError>false</failOnError>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
<goal>javadoc</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<!-- SNAPSHOT → GitHub Packages -->
<profile>
<id>github</id>
<properties>
<uniqueVersion>false</uniqueVersion>
</properties>
<distributionManagement>
<snapshotRepository>
<id>github</id>
<url>https://maven.pkg.github.com/zazalng/DBFReader</url>
</snapshotRepository>
<repository>
<id>github</id>
<url>https://maven.pkg.github.com/zazalng/DBFReader</url>
</repository>
</distributionManagement>
</profile>
<!-- RELEASE → Maven Central -->
<profile>
<id>central</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.8</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals><goal>sign</goal></goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.9.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>