Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(test): null value encoding safe #1

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
177 changes: 102 additions & 75 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,85 +1,112 @@
<?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
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<name>cb2java</name>
<groupId>net.sf.cb2java</groupId>
<artifactId>cb2java</artifactId>
<version>5.3</version>
<url>https://github.com/devstopfix/cb2java</url>
<modelVersion>4.0.0</modelVersion>

<description>Library that allows dynamic access to Copybook structures at run-time from a Java application</description>
<name>cb2java</name>
<groupId>net.sf.cb2java</groupId>
<artifactId>cb2java</artifactId>
<version>5.3</version>
<url>https://github.com/montoyaedu/cb2java</url>

<developers>
<developer>
<id>dubwai</id>
<url>http://sourceforge.net/users/dubwai</url>
<roles>
<role>developer</role>
</roles>
</developer>
<developer>
<id>ptrthomas</id>
<name>Peter Thomas</name>
<url>http://ptrthomas.users.sourceforge.net/</url>
<roles>
<role>developer</role>
</roles>
</developer>
<developer>
<id>montoyaedu</id>
<name>H. Eduardo Montoya Sánchez</name>
<url>https://github.com/montoyaedu</url>
</developer>
</developers>
<description>Library that allows dynamic access to Copybook structures at run-time from a Java application</description>

<licenses>
<license>
<name>GNU GENERAL PUBLIC LICENSE Version 1, February 1989</name>
<url>http://www.gnu.org/licenses/gpl-1.0.txt</url>
<comments>See ./LICENSE</comments>
</license>
</licenses>
<developers>
<developer>
<id>dubwai</id>
<url>http://sourceforge.net/users/dubwai</url>
<roles>
<role>developer</role>
</roles>
</developer>
<developer>
<id>ptrthomas</id>
<name>Peter Thomas</name>
<url>http://ptrthomas.users.sourceforge.net/</url>
<roles>
<role>developer</role>
</roles>
</developer>
<developer>
<id>montoyaedu</id>
<name>H. Eduardo Montoya Sánchez</name>
<url>https://github.com/montoyaedu</url>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>

<scm>
<url>https://github.com/devstopfix/cb2java</url>
<connection>scm:git:git://github.com/devstopfix/cb2java.git</connection>
</scm>
<licenses>
<license>
<name>GNU GENERAL PUBLIC LICENSE Version 1, February 1989</name>
<url>http://www.gnu.org/licenses/gpl-1.0.txt</url>
<comments>See ./LICENSE</comments>
</license>
</licenses>

<build>
<resources>
<!-- data files required to parse copybooks -->
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/lexer.dat</include>
<include>**/parser.dat</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
<scm>
<url>https://github.com/montoyaedu/cb2java</url>
<connection>scm:git:git://github.com/montoyaedu/cb2java.git</connection>
</scm>

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<resources>
<!-- data files required to parse copybooks -->
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/lexer.dat</include>
<include>**/parser.dat</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>

</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<!-- slf4j api dependency -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.6</version>
</dependency>

<!-- <dependency> <groupId>net.sf.cb2xml</groupId> <artifactId>cb2xml</artifactId>
<version>0.0.1-SNAPSHOT</version> </dependency> -->
</dependencies>

</project>
Loading