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

Commit

Permalink
Merge pull request #12 from bhangun/master
Browse files Browse the repository at this point in the history
Add version 17A, 17B & 18A
  • Loading branch information
manish-in-java authored Oct 14, 2018
2 parents 74c7fc8 + de25b3c commit 70bd190
Show file tree
Hide file tree
Showing 311 changed files with 340,054 additions and 8 deletions.
Binary file added .DS_Store
Binary file not shown.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ target
logs
gradle.properties

.gradle
.gradle
.DS_Store
Binary file added d13b/.DS_Store
Binary file not shown.
Binary file added d13b/mapping/.DS_Store
Binary file not shown.
1 change: 0 additions & 1 deletion d13b/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,4 @@
<module>mapping</module>
<module>binding</module>
</modules>

</project>
Binary file added d14a/.DS_Store
Binary file not shown.
Binary file added d14a/mapping/.DS_Store
Binary file not shown.
1 change: 0 additions & 1 deletion d14a/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,4 @@
<module>mapping</module>
<module>binding</module>
</modules>

</project>
Binary file added d14b/.DS_Store
Binary file not shown.
Binary file added d14b/mapping/.DS_Store
Binary file not shown.
1 change: 0 additions & 1 deletion d14b/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,4 @@
<module>mapping</module>
<module>binding</module>
</modules>

</project>
Binary file added d15a/.DS_Store
Binary file not shown.
Binary file added d15a/mapping/.DS_Store
Binary file not shown.
Binary file added d15b/.DS_Store
Binary file not shown.
Binary file added d15b/mapping/.DS_Store
Binary file not shown.
1 change: 0 additions & 1 deletion d15b/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,4 @@
<module>mapping</module>
<module>binding</module>
</modules>

</project>
Binary file added d16a/.DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions d16a/.LCKpom.xml~
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/Users/bhangun/workexample/unedifact/d16/pom.xml
Binary file added d16a/mapping/.DS_Store
Binary file not shown.
1 change: 0 additions & 1 deletion d16a/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,4 @@
<module>mapping</module>
<module>binding</module>
</modules>

</project>
Binary file added d16b/.DS_Store
Binary file not shown.
Binary file added d16b/mapping/.DS_Store
Binary file not shown.
Binary file added d17a/.DS_Store
Binary file not shown.
46 changes: 46 additions & 0 deletions d17a/binding/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<?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-parent</artifactId>
<version>1.6</version> <!-- base pom version - do not remove this comment -->
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<name>Smooks EDI - UN/EDIFACT - D17A - Bindings</name>
<groupId>org.milyn.edi.unedifact</groupId>
<artifactId>d17a-binding</artifactId>

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

<build>
<plugins>
<plugin>
<groupId>org.milyn</groupId>
<artifactId>maven-ejc-plugin</artifactId>
<version>${project.version}</version>
<configuration>
<ediMappingFile>urn:org.milyn.edi.unedifact:d17a-mapping:${project.version}</ediMappingFile>
</configuration>
<executions>
<execution><goals><goal>generate</goal></goals></execution>
</executions>
<dependencies>
<dependency>
<groupId>org.milyn.edi.unedifact</groupId>
<artifactId>d17a-mapping</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>

</project>
Binary file added d17a/mapping/.DS_Store
Binary file not shown.
Binary file added d17a/mapping/d17a.zip
Binary file not shown.
32 changes: 32 additions & 0 deletions d17a/mapping/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?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-parent</artifactId>
<version>1.6</version> <!-- base pom version - do not remove this comment -->
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.milyn.edi.unedifact</groupId>
<artifactId>d17a-mapping</artifactId>
<name>Smooks EDI - UN/EDIFACT - D17A - Mapping Model</name>

<build>
<plugins>
<plugin>
<groupId>org.milyn</groupId>
<artifactId>maven-ect-plugin</artifactId>
<version>${project.version}</version> <!-- base pom version - do not remove this comment -->
<configuration>
<src>d17a.zip</src>
<srcType>UNEDIFACT</srcType>
</configuration>
<executions>
<execution><goals><goal>generate</goal></goals></execution>
</executions>
</plugin>
</plugins>
</build>

</project>
22 changes: 22 additions & 0 deletions d17a/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?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-aggregator</artifactId>
<version>1.6</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>unedifact-d17a-aggregator</artifactId>
<packaging>pom</packaging>
<name>Milyn Smooks D17A Agreggator</name>

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

</project>
46 changes: 46 additions & 0 deletions d17b/binding/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<?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-parent</artifactId>
<version>1.6</version> <!-- base pom version - do not remove this comment -->
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<name>Smooks EDI - UN/EDIFACT - D17B - Bindings</name>
<groupId>org.milyn.edi.unedifact</groupId>
<artifactId>d17b-binding</artifactId>

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

<build>
<plugins>
<plugin>
<groupId>org.milyn</groupId>
<artifactId>maven-ejc-plugin</artifactId>
<version>${project.version}</version>
<configuration>
<ediMappingFile>urn:org.milyn.edi.unedifact:d17b-mapping:${project.version}</ediMappingFile>
</configuration>
<executions>
<execution><goals><goal>generate</goal></goals></execution>
</executions>
<dependencies>
<dependency>
<groupId>org.milyn.edi.unedifact</groupId>
<artifactId>d17b-mapping</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>

</project>
Binary file added d17b/mapping/d17b.zip
Binary file not shown.
Binary file added d17b/mapping/d17b/TextFiles17B.zip
Binary file not shown.
Binary file added d17b/mapping/d17b/edcd.zip
Binary file not shown.
Binary file added d17b/mapping/d17b/eded.zip
Binary file not shown.
Binary file added d17b/mapping/d17b/edmd.zip
Binary file not shown.
Binary file added d17b/mapping/d17b/edsd.zip
Binary file not shown.
Binary file added d17b/mapping/d17b/idcd.zip
Binary file not shown.
Binary file added d17b/mapping/d17b/idmd.zip
Binary file not shown.
Binary file added d17b/mapping/d17b/idsd.zip
Binary file not shown.
Binary file added d17b/mapping/d17b/uncl.zip
Binary file not shown.
32 changes: 32 additions & 0 deletions d17b/mapping/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?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-parent</artifactId>
<version>1.6</version> <!-- base pom version - do not remove this comment -->
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.milyn.edi.unedifact</groupId>
<artifactId>d17b-mapping</artifactId>
<name>Smooks EDI - UN/EDIFACT - D17B - Mapping Model</name>

<build>
<plugins>
<plugin>
<groupId>org.milyn</groupId>
<artifactId>maven-ect-plugin</artifactId>
<version>${project.version}</version> <!-- base pom version - do not remove this comment -->
<configuration>
<src>d17b.zip</src>
<srcType>UNEDIFACT</srcType>
</configuration>
<executions>
<execution><goals><goal>generate</goal></goals></execution>
</executions>
</plugin>
</plugins>
</build>

</project>
22 changes: 22 additions & 0 deletions d17b/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?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-aggregator</artifactId>
<version>1.6</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>unedifact-d17b-aggregator</artifactId>
<packaging>pom</packaging>
<name>Milyn Smooks D17B Agreggator</name>

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

</project>
3 changes: 3 additions & 0 deletions d18a/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"java.configuration.updateBuildConfiguration": "interactive"
}
46 changes: 46 additions & 0 deletions d18a/binding/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<?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-parent</artifactId>
<version>1.6</version> <!-- base pom version - do not remove this comment -->
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<name>Smooks EDI - UN/EDIFACT - D18A - Bindings</name>
<groupId>org.milyn.edi.unedifact</groupId>
<artifactId>d18a-binding</artifactId>

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

<build>
<plugins>
<plugin>
<groupId>org.milyn</groupId>
<artifactId>maven-ejc-plugin</artifactId>
<version>${project.version}</version>
<configuration>
<ediMappingFile>urn:org.milyn.edi.unedifact:d18a-mapping:${project.version}</ediMappingFile>
</configuration>
<executions>
<execution><goals><goal>generate</goal></goals></execution>
</executions>
<dependencies>
<dependency>
<groupId>org.milyn.edi.unedifact</groupId>
<artifactId>d18a-mapping</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>

</project>
4 changes: 4 additions & 0 deletions d18a/mapping/24APR18 v6 2/errors.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Export log
~~~~~~~~~~
GEFEG.FX was unable to copy all facets of 'Main/qDT/UNCL/DateTime/Date Mandatory_ Date Time. Type/Date Time. Content/xs:simpleType' to 'Types/DateMandatoryDateTimeType'.
Export completed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- ====================================================================== -->
<!-- ===== 210AccountingE704 - Code List Schema Module ===== -->
<!-- ====================================================================== -->
<!--
Schema agency: UN/CEFACT
Schema version: 1.0
Schema date: 03NOV17
Code list name: Access Rights Type
Code list agency: EDIFICAS-EU
Code list version: D11A
Copyright (C) UN/CEFACT (OV17). All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to UN/CEFACT, except as needed for the purpose of developing UN/CEFACT specifications, in which case the procedures for copyrights defined in the UN/CEFACT Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by UN/CEFACT or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and UN/CEFACT DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:clm210AccountingE704="urn:un:unece:uncefact:codelist:standard:EDIFICAS-EU:AccessRightsType:D11A" xmlns:ccts="urn:un:unece:uncefact:documentation:standard:CoreComponentsTechnicalSpecification:2" targetNamespace="urn:un:unece:uncefact:codelist:standard:EDIFICAS-EU:AccessRightsType:D11A" elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
<!-- ======================================================================= -->
<!-- ===== Element Declarations ===== -->
<!-- ======================================================================= -->
<!-- ===== Root Element ===== -->
<!-- ======================================================================= -->
<xsd:element name="AccessRightsType" type="clm210AccountingE704:AccessRightsTypeContentType"/>
<!-- ================================================================== -->
<!-- ===== Type Definitions ===== -->
<!-- ================================================================== -->
<!-- ===== Type Definition: AccessRightsTypeContentType ===== -->
<!-- ================================================================== -->
<xsd:simpleType name="AccessRightsTypeContentType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="P">
<xsd:annotation>
<xsd:documentation xml:lang="en">
<ccts:Name>Prohibited</ccts:Name>
<ccts:Description>The code indicates prohibited access rights.</ccts:Description>
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="R">
<xsd:annotation>
<xsd:documentation xml:lang="en">
<ccts:Name>Restricted</ccts:Name>
<ccts:Description>The code indicates restricted access rights.</ccts:Description>
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="U">
<xsd:annotation>
<xsd:documentation xml:lang="en">
<ccts:Name>Unlimited</ccts:Name>
<ccts:Description>The code indicates unlimited access rights.</ccts:Description>
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>
Loading

0 comments on commit 70bd190

Please sign in to comment.