edireader-framework-community
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.berryworks</groupId>
<artifactId>edireader-framework-community</artifactId>
<version>5.12.0</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>com.berryworks</groupId>
<artifactId>edireader-framework-community</artifactId>
<name>EDIReader Framework (Community Edition)</name>
<version>5.12.0</version>
<description>EDIReader Framework Community Edition provides EDI-to-JSON conversion
for Java applications, built on the BerryWorks EDIReader core EDI parser.
It exposes the EDIReader Framework's full EDI-to-JSON capabilities through
a straightforward Java API.</description>
<url>https://github.com/BerryWorksSoftware/edi-json</url>
<developers>
<developer>
<name>R. Scott Mayberry</name>
<email>scott@canabrook.org</email>
<organization>BerryWorks Software</organization>
</developer>
</developers>
<licenses>
<license>
<name>EDIReader Framework Community License</name>
<url>https://github.com/BerryWorksSoftware/edi-json/blob/master/LICENSE.md</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/BerryWorksSoftware/edi-json.git</connection>
<developerConnection>scm:git:ssh://github.com:BerryWorksSoftware/edi-json.git</developerConnection>
<url>https://github.com/BerryWorksSoftware/edi-json/tree/master</url>
</scm>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
<resource>
<targetPath>META-INF</targetPath>
<directory>${project.basedir}</directory>
<includes>
<include>LICENSE.md</include>
<include>README.md</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.4.2</version>
<configuration>
<forceCreation>true</forceCreation>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.6.2</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createDependencyReducedPom>true</createDependencyReducedPom>
<useDependencyReducedPomInJar>true</useDependencyReducedPomInJar>
<artifactSet>
<includes>
<include>com.berryworks:edireader-json</include>
<include>com.berryworks:edireader-extra</include>
<include>com.berryworks:esd-resources</include>
<include>com.berryworks:ediwriter</include>
</includes>
</artifactSet>
<promoteTransitiveDependencies>true</promoteTransitiveDependencies>
<minimizeJar>false</minimizeJar>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.RSA</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>module-info.class</exclude>
<exclude>META-INF/versions/**/module-info.class</exclude>
</excludes>
</filter>
</filters>
<transformers>
<transformer />
<transformer>
<mainClass>com.berryworks.edireader.community.CommunityCli</mainClass>
</transformer>
<transformer />
</transformers>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven.surefire.plugin.version}</version>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.8.1</version>
<executions>
<execution>
<id>proguard-library-inputs</id>
<phase>prepare-package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<includeArtifactIds>edireader,slf4j-api,snakeyaml</includeArtifactIds>
<includeScope>runtime</includeScope>
<outputDirectory>${project.build.directory}/proguard-libraries</outputDirectory>
</configuration>
</execution>
<execution>
<id>proguard-build-only-inputs</id>
<phase>prepare-package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<includeArtifactIds>jackson-core</includeArtifactIds>
<includeScope>test</includeScope>
<outputDirectory>${project.build.directory}/proguard-build-libraries</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>preserve-proguard-input</id>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<copy />
</target>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.6.3</version>
<executions>
<execution>
<id>obfuscate-community</id>
<phase>package</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>com.guardsquare</groupId>
<artifactId>proguard-base</artifactId>
<version>7.7.0</version>
<scope>runtime</scope>
</dependency>
</dependencies>
<configuration>
<executable>${java.home}/bin/java</executable>
<workingDirectory>${project.basedir}</workingDirectory>
<includePluginDependencies>true</includePluginDependencies>
<classpathScope>system</classpathScope>
<addOutputToClasspath>false</addOutputToClasspath>
<arguments>
<argument>-classpath</argument>
<classpath />
<argument>proguard.ProGuard</argument>
<argument>-injars</argument>
<argument>${project.build.directory}/${project.build.finalName}-unobfuscated.jar(!META-INF/maven/**)</argument>
<argument>-outjars</argument>
<argument>${project.build.directory}/${project.build.finalName}.jar</argument>
<argument>-include</argument>
<argument>${project.basedir}/proguard.pro</argument>
<argument>-libraryjars</argument>
<argument>${java.home}/jmods/java.base.jmod(!**.jar;!module-info.class)</argument>
<argument>-libraryjars</argument>
<argument>${java.home}/jmods/java.xml.jmod(!**.jar;!module-info.class)</argument>
<argument>-libraryjars</argument>
<argument>${java.home}/jmods/java.logging.jmod(!**.jar;!module-info.class)</argument>
<argument>-libraryjars</argument>
<argument>${java.home}/jmods/java.desktop.jmod(!**.jar;!module-info.class)</argument>
<argument>-libraryjars</argument>
<argument>${java.home}/jmods/java.sql.jmod(!**.jar;!module-info.class)</argument>
<argument>-libraryjars</argument>
<argument>${project.build.directory}/proguard-libraries</argument>
<argument>-libraryjars</argument>
<argument>${project.build.directory}/proguard-build-libraries</argument>
<argument>-printmapping</argument>
<argument>${project.build.directory}/proguard_map.txt</argument>
<argument>-printseeds</argument>
<argument>${project.build.directory}/proguard_seed.txt</argument>
</arguments>
</configuration>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${maven.surefire.plugin.version}</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
<configuration>
<classesDirectory>${project.build.outputDirectory}</classesDirectory>
<systemPropertyVariables>
<community.libraries>${project.build.directory}/proguard-libraries</community.libraries>
<community.jar>${project.build.directory}/${project.build.finalName}.jar</community.jar>
<framework.fixtures>${project.basedir}/../edireader-json/src/test/resources</framework.fixtures>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
<configuration>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
<includes>
<include>README.md</include>
<include>LICENSE.md</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.12.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<sourcepath>${project.basedir}/../edireader-json/src/main/java</sourcepath>
<sourceFileIncludes>
<sourceFileInclude>com/berryworks/edireader/json/fromedi/EdiToJson.java</sourceFileInclude>
</sourceFileIncludes>
<show>public</show>
<linksource>false</linksource>
<failOnError>true</failOnError>
</configuration>
</plugin>
<plugin>
<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>
<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>
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>2.3</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.berryworks</groupId>
<artifactId>edireader</artifactId>
<version>6.0.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.16</version>
<scope>compile</scope>
</dependency>
</dependencies>
<properties>
<maven.compiler.release>21</maven.compiler.release>
<gpg.keyname>0xC8794862</gpg.keyname>
<slf4j.version>2.0.16</slf4j.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.surefire.plugin.version>3.5.4</maven.surefire.plugin.version>
<maven.gpg.plugin.version>3.2.8</maven.gpg.plugin.version>
</properties>
</project>