Download tdt-0.9.0.jar file

Introduction

You can download tdt-0.9.0.jar in this page.

License

GNU Lesser General Public License (LGPL)

Type List

tdt-0.9.0.jar file has the following types.

LICENSE.txt
META-INF/MANIFEST.MF
META-INF/maven/org.fosstrak.tdt/tdt/pom.properties
META-INF/maven/org.fosstrak.tdt/tdt/pom.xml
NOTICE.txt
README.txt
auxiliary/ManagerTranslation.xml
org.epcglobalinc.tdt.EpcTagDataTranslation.class
org.epcglobalinc.tdt.Field.class
org.epcglobalinc.tdt.GEPC64.class
org.epcglobalinc.tdt.GEPC64Entry.class
org.epcglobalinc.tdt.InputFormatList.class
org.epcglobalinc.tdt.Level.class
org.epcglobalinc.tdt.LevelTypeList.class
org.epcglobalinc.tdt.ModeList.class
org.epcglobalinc.tdt.ObjectFactory.class
org.epcglobalinc.tdt.Option.class
org.epcglobalinc.tdt.PadDirectionList.class
org.epcglobalinc.tdt.Rule.class
org.epcglobalinc.tdt.Scheme.class
org.epcglobalinc.tdt.SchemeNameList.class
org.epcglobalinc.tdt.package-info.class
org.fosstrak.tdt.NoisyMap.class
org.fosstrak.tdt.PrefixTree.class
org.fosstrak.tdt.TDTEngine.class
org.fosstrak.tdt.TDTException.class
schemes/GIAI-64.xml
schemes/GIAI-96.xml
schemes/GID-96.xml
schemes/GRAI-64.xml
schemes/GRAI-96.xml
schemes/SGLN-64.xml
schemes/SGLN-96.xml
schemes/SGTIN-64.xml
schemes/SGTIN-96.xml
schemes/SSCC-64.xml
schemes/SSCC-96.xml
schemes/USDOD-64.xml
schemes/USDOD-96.xml
schemes/not-defined/GIAI-202.xml
schemes/not-defined/GRAI-170.xml
schemes/not-defined/SGLN-195.xml
schemes/not-defined/SGTIN-198.xml
schemes/schemes.list
xsd/CompactionMethodList.xsd
xsd/EpcTagDataTranslation.xsd
xsd/InputFormatList.xsd
xsd/LevelTypeList.xsd
xsd/ManagerTranslation.xsd
xsd/ModeList.xsd
xsd/PadDirectionList.xsd
xsd/SchemeNameList.xsd
xsd/TagLengthList.xsd

Pom

tdt-0.9.0.pom file content.

<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">


  <!-- =========================================================== -->
  <!-- Basics                                                      -->
  <!-- =========================================================== -->

  <groupId>org.fosstrak.tdt</groupId>
  <artifactId>tdt</artifactId>
  <version>0.9.0</version>
  <packaging>jar</packaging>
  <modelVersion>4.0.0</modelVersion>
  <description>Tag Data Translation Engine - implements EPCglobal TDT Spec</description>

  <!-- =========================================================== -->
  <!-- Dependencies                                                -->
  <!-- =========================================================== -->

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>javax.xml.bind</groupId>
      <artifactId>jaxb-api</artifactId>
      <version>2.1</version>
    </dependency>
      <dependency>
      <groupId>commons-logging</groupId>
      <artifactId>commons-logging</artifactId>
      <version>1.0.4</version>
    </dependency>
    <dependency>
      <groupId>xerces</groupId>
      <artifactId>xercesImpl</artifactId>
      <version>2.2.1</version>
    </dependency>
	<dependency>
      <groupId>net.sf.csv4j</groupId>
      <artifactId>csv4j</artifactId>
      <version>0.4.0</version>
	  <scope>test</scope>
    </dependency>
  </dependencies>


  <!-- =========================================================== -->
  <!-- Infrastructure                                              -->
  <!-- =========================================================== -->


  <scm>
    <connection>https://fosstrak.googlecode.com/svn/trunk/tdt/tags/tdt-0.9.0</connection>
    <developerConnection>scm:svn:https://fosstrak.googlecode.com/svn/trunk/tdt/tags/tdt-0.9.0</developerConnection>
    <url>https://fosstrak.googlecode.com/svn/trunk/tdt/tags/tdt-0.9.0</url>
  </scm>
  
  <!-- =========================================================== -->
  <!-- Project Information                                         -->
  <!-- =========================================================== -->

  <name>tdt</name>
  <url>http://www.fosstrak.org/tdt</url>
  <licenses>
    <license>
      <name>GNU Lesser General Public License (LGPL)</name>
      <url>http://www.gnu.org/licenses/lgpl.txt</url>
    </license>
  </licenses>

  <developers>
    <developer>
      <id>1</id>
      <name>Mark Harrison</name>
      <email>mark@fosstrak.org</email>
    </developer>
     <developer>
      <id>2</id>
      <name>Christian Floerkemeier</name>
      <email>christian@fosstrak.org</email>
    </developer>
  </developers>  


  <!-- =========================================================== -->
  <!-- Plugins                                                     -->
  <!-- =========================================================== -->

  <build>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
	    <configuration>
	      <source>1.5</source>
          <target>1.5</target>
        </configuration>
      </plugin>
	  <!--
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>  
        <configuration>
          <archive>
            <manifest>
              <mainClass>org.fosstrak.tdt.TDTFrontEnd</mainClass>
              <addClasspath>true</addClasspath>
              <classpathPrefix>./lib</classpathPrefix>
            </manifest>
          </archive>
        </configuration>
      </plugin> 
	  <plugin>   
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
         <executions>
          <execution>
          <id>bundle-manifest</id>
          <phase>process-classes</phase>
          <goals>    
            <goal>manifest</goal>
          </goals>   
         </execution>
        </executions>
      </plugin>-->
	  <plugin>    
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <extensions>true</extensions>
        <configuration>
          <instructions>
			<Export-Package>org.epcglobalinc.tdt;-noimport:=true,org.fosstrak.tdt;-noimport:=true,schemes;-noimport:=true,auxiliary;-noimport:=true</Export-Package>
			<Import-Package>*</Import-Package> 
          </instructions>
        </configuration>
      </plugin>    

	  <plugin>
            <groupId>com.sun.tools.xjc.maven2</groupId>
            <artifactId>maven-jaxb-plugin</artifactId>
			<version>1.0</version>
			<executions>
            <execution>
            <goals>
            <goal>generate</goal>
            </goals>
            </execution>
            </executions>
	    <configuration>
		<generatePackage>org.epcglobalinc.tdt</generatePackage>
		<schemaDirectory>src/main/resources/xsd</schemaDirectory>
	    </configuration> 
      </plugin>
	  
      <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
            <source>1.6</source>
            </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <configuration>
          <descriptors>
            <descriptor>src/main/assembly/src.xml</descriptor>
            <descriptor>src/main/assembly/jar-with-dependencies.xml</descriptor>
          </descriptors>
        </configuration>
        <executions>
          <execution>
            <id>make-assembly</id>
            <phase>package</phase>
            <goals>
              <goal>single</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-site-plugin</artifactId>
        <configuration>
          <locales>en</locales>
          <publishDate position="left" format="yyyy-MM-dd hh:mm:ss" />
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <!--
          By default, the surefire plugin automatically includes all test classes
          with following wildcard patterns:
            **/Test*.java
            **/*Test.java
            **/*TestCase.java
        -->
        <configuration>
          <testFailureIgnore>true</testFailureIgnore>
        </configuration>
      </plugin>
    </plugins>
    <pluginManagement>
      <plugins>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-release-plugin</artifactId>
          <configuration>
            <tagBase>https://svn.fosstrak.org/repos/tdt/tags</tagBase>
          </configuration>
        </plugin>
      </plugins>
    </pluginManagement>
  </build>


  

</project>

POM Entry

<dependency>
   <groupId>org.fosstrak.tdt</groupId>
   <artifactId>tdt</artifactId>
   <version>0.9.0</version>
</dependency>

Download

If you think the following tdt-0.9.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download tdt-0.9.0.jar file




PreviousNext

Related