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

Commit

Permalink
Fixes #25: Added bindings for EDIFACT releases D11B-D14B.
Browse files Browse the repository at this point in the history
  • Loading branch information
manish-in-java committed Oct 16, 2018
1 parent 5ddc8dc commit 1f396ea
Show file tree
Hide file tree
Showing 29 changed files with 673 additions and 0 deletions.
43 changes: 43 additions & 0 deletions d11b/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>d11b-aggregator</artifactId>
<version>1.6</version>
</parent>

<artifactId>d11b-binding</artifactId>
<name>Smooks EDI - UN/EDIFACT - D11B - Bindings</name>

<dependencies>
<dependency>
<groupId>org.milyn.edi.unedifact</groupId>
<artifactId>d11b-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:d11b-mapping:${project.version}</ediMappingFile>
</configuration>
<dependencies>
<dependency>
<groupId>org.milyn.edi.unedifact</groupId>
<artifactId>d11b-mapping</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>
Binary file added d11b/mapping/d11b.zip
Binary file not shown.
28 changes: 28 additions & 0 deletions d11b/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>d11b-aggregator</artifactId>
<version>1.6</version>
</parent>

<artifactId>d11b-mapping</artifactId>
<name>Smooks EDI - UN/EDIFACT - D11B - Mapping Model</name>

<build>
<plugins>
<plugin>
<groupId>org.milyn</groupId>
<artifactId>maven-ect-plugin</artifactId>
<configuration>
<src>d11b.zip</src>
<srcType>UNEDIFACT</srcType>
</configuration>
</plugin>
</plugins>
</build>
</project>
23 changes: 23 additions & 0 deletions d11b/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.6</version>
</parent>

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

<modules>
<module>mapping</module>
<module>binding</module>
</modules>
</project>
43 changes: 43 additions & 0 deletions d12a/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>d12a-aggregator</artifactId>
<version>1.6</version>
</parent>

<artifactId>d12a-binding</artifactId>
<name>Smooks EDI - UN/EDIFACT - D12A - Bindings</name>

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

<artifactId>d12a-mapping</artifactId>
<name>Smooks EDI - UN/EDIFACT - D12A - Mapping Model</name>

<dependencies>
<dependency>
<groupId>org.milyn</groupId>
<artifactId>milyn-smooks-ect</artifactId>
<version>${smooks.version}</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.milyn</groupId>
<artifactId>maven-ect-plugin</artifactId>
<configuration>
<src>d12a.zip</src>
<srcType>UNEDIFACT</srcType>
</configuration>
</plugin>
</plugins>
</build>
</project>
23 changes: 23 additions & 0 deletions d12a/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.6</version>
</parent>

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

<modules>
<module>mapping</module>
<module>binding</module>
</modules>
</project>
43 changes: 43 additions & 0 deletions d12b/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>d12b-aggregator</artifactId>
<version>1.6</version>
</parent>

<artifactId>d12b-binding</artifactId>
<name>Smooks EDI - UN/EDIFACT - D12B - Bindings</name>

<dependencies>
<dependency>
<groupId>org.milyn.edi.unedifact</groupId>
<artifactId>d12b-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:d12b-mapping:${project.version}</ediMappingFile>
</configuration>
<dependencies>
<dependency>
<groupId>org.milyn.edi.unedifact</groupId>
<artifactId>d12b-mapping</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>
Binary file added d12b/mapping/d12b.zip
Binary file not shown.
28 changes: 28 additions & 0 deletions d12b/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>d12b-aggregator</artifactId>
<version>1.6</version>
</parent>

<artifactId>d12b-mapping</artifactId>
<name>Smooks EDI - UN/EDIFACT - D12B - Mapping Model</name>

<build>
<plugins>
<plugin>
<groupId>org.milyn</groupId>
<artifactId>maven-ect-plugin</artifactId>
<configuration>
<src>d12b.zip</src>
<srcType>UNEDIFACT</srcType>
</configuration>
</plugin>
</plugins>
</build>
</project>
23 changes: 23 additions & 0 deletions d12b/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.6</version>
</parent>

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

<modules>
<module>mapping</module>
<module>binding</module>
</modules>
</project>
43 changes: 43 additions & 0 deletions d13a/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>d13a-aggregator</artifactId>
<version>1.6</version>
</parent>

<artifactId>d13a-binding</artifactId>
<name>Smooks EDI - UN/EDIFACT - D13A - Bindings</name>

<dependencies>
<dependency>
<groupId>org.milyn.edi.unedifact</groupId>
<artifactId>d13a-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:d13a-mapping:${project.version}</ediMappingFile>
</configuration>
<dependencies>
<dependency>
<groupId>org.milyn.edi.unedifact</groupId>
<artifactId>d13a-mapping</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>
Binary file added d13a/mapping/d13a.zip
Binary file not shown.
28 changes: 28 additions & 0 deletions d13a/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>d13a-aggregator</artifactId>
<version>1.6</version>
</parent>

<artifactId>d13a-mapping</artifactId>
<name>Smooks EDI - UN/EDIFACT - D13A - Mapping Model</name>

<build>
<plugins>
<plugin>
<groupId>org.milyn</groupId>
<artifactId>maven-ect-plugin</artifactId>
<configuration>
<src>d13a.zip</src>
<srcType>UNEDIFACT</srcType>
</configuration>
</plugin>
</plugins>
</build>
</project>
23 changes: 23 additions & 0 deletions d13a/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.6</version>
</parent>

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

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

0 comments on commit 1f396ea

Please sign in to comment.