Skip to content
This repository has been archived by the owner on May 26, 2020. It is now read-only.

Commit

Permalink
Fixes #27: Added bindings for EDIFACT releases D15A-D16A.
Browse files Browse the repository at this point in the history
  • Loading branch information
manish-in-java committed Oct 16, 2018
1 parent 8cfd961 commit 6f61f86
Show file tree
Hide file tree
Showing 12 changed files with 282 additions and 0 deletions.
43 changes: 43 additions & 0 deletions d15a/binding/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<?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>
<parent>
<groupId>org.milyn.edi.unedifact</groupId>
<artifactId>d15a-aggregator</artifactId>
<version>1.7.0</version>
</parent>

<artifactId>d15a-binding</artifactId>
<name>Smooks EDI - UN/EDIFACT - D15A - Bindings</name>

<dependencies>
<dependency>
<groupId>org.milyn.edi.unedifact</groupId>
<artifactId>d15a-mapping</artifactId>
<version>${project.version}</version>
<optional>true</optional>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.milyn</groupId>
<artifactId>maven-ejc-plugin</artifactId>
<configuration>
<ediMappingFile>urn:org.milyn.edi.unedifact:d15a-mapping:${project.version}</ediMappingFile>
</configuration>
<dependencies>
<dependency>
<groupId>org.milyn.edi.unedifact</groupId>
<artifactId>d15a-mapping</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>
Binary file added d15a/mapping/d15a.zip
Binary file not shown.
28 changes: 28 additions & 0 deletions d15a/mapping/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?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>
<parent>
<groupId>org.milyn.edi.unedifact</groupId>
<artifactId>d15a-aggregator</artifactId>
<version>1.7.0</version>
</parent>

<artifactId>d15a-mapping</artifactId>
<name>Smooks EDI - UN/EDIFACT - D15A - Mapping Model</name>

<build>
<plugins>
<plugin>
<groupId>org.milyn</groupId>
<artifactId>maven-ect-plugin</artifactId>
<configuration>
<src>d15a.zip</src>
<srcType>UNEDIFACT</srcType>
</configuration>
</plugin>
</plugins>
</build>
</project>
23 changes: 23 additions & 0 deletions d15a/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?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>

<parent>
<groupId>org.milyn.edi</groupId>
<artifactId>unedifact-gen</artifactId>
<version>1.7.0</version>
</parent>

<groupId>org.milyn.edi.unedifact</groupId>
<artifactId>d15a-aggregator</artifactId>
<packaging>pom</packaging>
<name>Smooks EDI - UN/EDIFACT - D15A - Aggregator</name>

<modules>
<module>mapping</module>
<module>binding</module>
</modules>
</project>
43 changes: 43 additions & 0 deletions d15b/binding/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<?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>
<parent>
<groupId>org.milyn.edi.unedifact</groupId>
<artifactId>d15b-aggregator</artifactId>
<version>1.7.0</version>
</parent>

<artifactId>d15b-binding</artifactId>
<name>Smooks EDI - UN/EDIFACT - D15B - Bindings</name>

<dependencies>
<dependency>
<groupId>org.milyn.edi.unedifact</groupId>
<artifactId>d15b-mapping</artifactId>
<version>${project.version}</version>
<optional>true</optional>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.milyn</groupId>
<artifactId>maven-ejc-plugin</artifactId>
<configuration>
<ediMappingFile>urn:org.milyn.edi.unedifact:d15b-mapping:${project.version}</ediMappingFile>
</configuration>
<dependencies>
<dependency>
<groupId>org.milyn.edi.unedifact</groupId>
<artifactId>d15b-mapping</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>
Binary file added d15b/mapping/d15b.zip
Binary file not shown.
28 changes: 28 additions & 0 deletions d15b/mapping/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?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>
<parent>
<groupId>org.milyn.edi.unedifact</groupId>
<artifactId>d15b-aggregator</artifactId>
<version>1.7.0</version>
</parent>

<artifactId>d15b-mapping</artifactId>
<name>Smooks EDI - UN/EDIFACT - D15B - Mapping Model</name>

<build>
<plugins>
<plugin>
<groupId>org.milyn</groupId>
<artifactId>maven-ect-plugin</artifactId>
<configuration>
<src>d15b.zip</src>
<srcType>UNEDIFACT</srcType>
</configuration>
</plugin>
</plugins>
</build>
</project>
23 changes: 23 additions & 0 deletions d15b/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?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>

<parent>
<groupId>org.milyn.edi</groupId>
<artifactId>unedifact-gen</artifactId>
<version>1.7.0</version>
</parent>

<groupId>org.milyn.edi.unedifact</groupId>
<artifactId>d15b-aggregator</artifactId>
<packaging>pom</packaging>
<name>Smooks EDI - UN/EDIFACT - D15B - Aggregator</name>

<modules>
<module>mapping</module>
<module>binding</module>
</modules>
</project>
43 changes: 43 additions & 0 deletions d16a/binding/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<?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>
<parent>
<groupId>org.milyn.edi.unedifact</groupId>
<artifactId>d16a-aggregator</artifactId>
<version>1.7.0</version>
</parent>

<artifactId>d16a-binding</artifactId>
<name>Smooks EDI - UN/EDIFACT - D16A - Bindings</name>

<dependencies>
<dependency>
<groupId>org.milyn.edi.unedifact</groupId>
<artifactId>d16a-mapping</artifactId>
<version>${project.version}</version>
<optional>true</optional>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.milyn</groupId>
<artifactId>maven-ejc-plugin</artifactId>
<configuration>
<ediMappingFile>urn:org.milyn.edi.unedifact:d16a-mapping:${project.version}</ediMappingFile>
</configuration>
<dependencies>
<dependency>
<groupId>org.milyn.edi.unedifact</groupId>
<artifactId>d16a-mapping</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>
Binary file added d16a/mapping/d16a.zip
Binary file not shown.
28 changes: 28 additions & 0 deletions d16a/mapping/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?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>
<parent>
<groupId>org.milyn.edi.unedifact</groupId>
<artifactId>d16a-aggregator</artifactId>
<version>1.7.0</version>
</parent>

<artifactId>d16a-mapping</artifactId>
<name>Smooks EDI - UN/EDIFACT - D16A - Mapping Model</name>

<build>
<plugins>
<plugin>
<groupId>org.milyn</groupId>
<artifactId>maven-ect-plugin</artifactId>
<configuration>
<src>d16a.zip</src>
<srcType>UNEDIFACT</srcType>
</configuration>
</plugin>
</plugins>
</build>
</project>
23 changes: 23 additions & 0 deletions d16a/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?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>

<parent>
<groupId>org.milyn.edi</groupId>
<artifactId>unedifact-gen</artifactId>
<version>1.7.0</version>
</parent>

<groupId>org.milyn.edi.unedifact</groupId>
<artifactId>d16a-aggregator</artifactId>
<packaging>pom</packaging>
<name>Smooks EDI - UN/EDIFACT - D16A - Aggregator</name>

<modules>
<module>mapping</module>
<module>binding</module>
</modules>
</project>

0 comments on commit 6f61f86

Please sign in to comment.