edireader
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.berryworks</groupId>
<artifactId>edireader</artifactId>
<version>6.0.1</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.berryworks</groupId>
<artifactId>edireader</artifactId>
<version>6.0.1</version>
<packaging>jar</packaging>
<name>EDIReader Core EDI Parser</name>
<description>
EDIReader is a flexible and lightweight EDI parser, written in pure Java with many integration options.
It has handled millions of transactions in a wide variety of products, services, industries, platforms,
and custom integrations. This EDI parser serves as the underlying core for the
EDIReader Framework providing EDIWriter and other added-value modules.
</description>
<url>https://github.com/BerryWorksSoftware/edireader</url>
<licenses>
<license>
<name>GNU General Public License (GPL) version 3.0</name>
<url>https://www.gnu.org/licenses/gpl-3.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>R. Scott Mayberry</name>
<email>scott@canabrook.org</email>
<organization>BerryWorks Software</organization>
<organizationUrl>http://berryworkssoftware.net</organizationUrl>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.plugin.version>3.14.1</maven.compiler.plugin.version>
<maven.jar.plugin.version>3.5.0</maven.jar.plugin.version>
<maven.source.plugin.version>3.4.0</maven.source.plugin.version>
<maven.javadoc.plugin.version>3.12.0</maven.javadoc.plugin.version>
<maven.gpg.plugin.version>3.2.8</maven.gpg.plugin.version>
<dependency.check.version>11.1.0</dependency.check.version>
<slf4j.version>2.0.17</slf4j.version>
<junit.version>4.13.2</junit.version>
<gpg.keyname>0xC8794862</gpg.keyname>
<core.project.url>https://github.com/BerryWorksSoftware/edireader.git</core.project.url>
<core.project.ssh.url>git@github.com:BerryWorksSoftware/edireader.git</core.project.ssh.url>
</properties>
<scm>
<connection>scm:git:${core.project.url}</connection>
<url>${core.project.url}</url>
<developerConnection>scm:git:${core.project.ssh.url}</developerConnection>
<tag>HEAD</tag>
</scm>
<dependencies>
<!-- This is the thin logging facade, with no implementation beyond the no-logging default. -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<!-- Use java.util.logging for unit tests -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>${slf4j.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.plugin.version}</version>
<configuration>
<source>21</source>
<target>21</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${maven.jar.plugin.version}</version>
<configuration>
<archive>
<manifest>
<addClasspath>false</addClasspath>
<mainClass>com.berryworks.edireader.demo.EDItoXML</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven.source.plugin.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven.javadoc.plugin.version}</version>
<configuration>
<source>17</source>
<doclint>all,-missing</doclint>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.11.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven.gpg.plugin.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<useAgent>true</useAgent>
<keyname>${gpg.keyname}</keyname>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<!-- "This product uses the NVD API but is not endorsed or certified by the NVD." -->
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>${dependency.check.version}</version>
<configuration>
<nvdApiKey>${nvdApiKey}</nvdApiKey>
<ossindexAnalyzerEnabled>false</ossindexAnalyzerEnabled>
</configuration>
</plugin>
</plugins>
</build>
</project>