This repository has been archived by the owner on May 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #27: Added bindings for EDIFACT releases D15A-D16A.
- Loading branch information
1 parent
8cfd961
commit 6f61f86
Showing
12 changed files
with
282 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |