Skip to content

Commit

Permalink
0.1.1 - Updated JSimpleTypes dependency, moved tests to new test dire…
Browse files Browse the repository at this point in the history
…ctory, and switched versions.md to CHANGELOG.md format.
  • Loading branch information
TeamworkGuy2 committed Aug 21, 2016
1 parent 6188104 commit 2fd4954
Show file tree
Hide file tree
Showing 19 changed files with 42 additions and 19 deletions.
5 changes: 3 additions & 2 deletions .classpath
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="test"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/ANTLR"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry kind="lib" path="C:/Users/TeamworkGuy2/Documents/Java/Libraries/jtext-util/jar/jtext_util.jar" sourcepath="/JTextUtility"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/Lombok"/>
<classpathentry kind="lib" path="C:/Users/TeamworkGuy2/Documents/Java/Libraries/jsimple-types/jar/jsimple_types.jar" sourcepath="/JSimpleTypes/src"/>
<classpathentry kind="output" path="bin"/>
<classpathentry kind="lib" path="C:/Users/TeamworkGuy2/Documents/Java/Libraries/jsimple-types/bin/jsimple_types.jar" sourcepath="/JSimpleTypes/src"/>
<classpathentry kind="lib" path="C:/Users/TeamworkGuy2/Documents/Java/Libraries/jtext-util/bin/jtext_util.jar" sourcepath="/JTextUtility"/>
</classpath>
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Change Log
All notable changes to this project will be documented in this file.
This project does its best to adhere to [Semantic Versioning](http://semver.org/).


--------
###[0.1.1](N/A) - 2016-08-21
####Changed
* Updated JSimpleTypes dependency to latest 0.5.0 version
* Moved tests to new test directory
* Switched from versions.md format to CHANGELOG.md, see http://keepachangelog.com/


--------
###[0.1.0](https://github.com/TeamworkGuy2/JTwg2Templating/commit/618810443726cd1239ed2524df26fc86abed4a1d) - 2016-02-08
####Added
* Initial versioning of existing code, includes utilities for easily generating Java classes, interfaces, and DTOs using the [StringTemplate] (http://www.stringtemplate.org/) library
* Fixed TemplateRenderBuilder not closing internal ClassLocation based output stream after rendering template
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
JTwg2Templating
==============
version: 0.1.0
version: 0.1.1

Templating tools built on top of [StringTemplate] (http://www.stringtemplate.org/), part of the ANTLR grammar builder/parser.
Emphasis on building templates for generating Java source code files. Particularly, classes that rely on a primitive type, for example a primitive 'int' version of ArrayList.
Expand Down
Binary file added bin/jtwg2_template-with-tests.jar
Binary file not shown.
Binary file added bin/jtwg2_template.jar
Binary file not shown.
12 changes: 12 additions & 0 deletions package-lib.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"version" : "0.1.1",
"name" : "jtwg2-template",
"description" : "Java collection helpers for creating, filtering, and mapping lists, collections, maps, iterators, and streams",
"homepage" : "https://github.com/TeamworkGuy2/JTwg2Templating",
"license" : "MIT",
"main" : "./bin/jtwg2-template.jar",
"dependencies" : {
"jsimple-types" : "*",
"jtext-util" : "*"
}
}
2 changes: 1 addition & 1 deletion src/twg2/template/codeTemplate/NameFormat.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package twg2.template.codeTemplate;

import twg2.primitiveIoTypes.JPrimitiveType;
import twg2.simpleTypes.ioPrimitives.JPrimitiveType;

/**
* @author TeamworkGuy2
Expand Down
2 changes: 1 addition & 1 deletion src/twg2/template/codeTemplate/TemplateNames.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import java.util.List;
import java.util.function.BiFunction;

import twg2.primitiveIoTypes.JPrimitiveType;
import twg2.simpleTypes.ioPrimitives.JPrimitiveType;
import twg2.template.codeTemplate.primitiveTemplate.PrimitiveTypeClassTemplate;

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package twg2.template.codeTemplate.primitiveTemplate;

import twg2.template.codeTemplate.ClassInfo;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import twg2.template.codeTemplate.ClassInfo;

/**
* @author TeamworkGuy2
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package twg2.template.codeTemplate.primitiveTemplate;

import twg2.primitiveIoTypes.JPrimitiveType;
import twg2.simpleTypes.ioPrimitives.JPrimitiveType;
import twg2.template.codeTemplate.ClassInfo;
import twg2.template.codeTemplate.ClassTemplate;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package twg2.template.codeTemplate.primitiveTemplate;

import twg2.template.codeTemplate.ClassTemplate;
import lombok.Getter;
import lombok.Setter;
import twg2.template.codeTemplate.ClassTemplate;


/** A basic template for {@code ANTLR StringTemplates}.
Expand Down
2 changes: 1 addition & 1 deletion src/twg2/template/codeTemplate/render/TemplateFilesIo.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
import java.nio.file.Path;
import java.nio.file.Paths;

import twg2.template.codeTemplate.ClassLocation;
import lombok.Getter;
import lombok.Setter;
import twg2.template.codeTemplate.ClassLocation;

/**
* @author TeamworkGuy2
Expand Down
2 changes: 1 addition & 1 deletion src/twg2/template/templateString/TypeNameTmpl.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package twg2.template.templateString;

import twg2.primitiveIoTypes.JPrimitiveType;
import twg2.simpleTypes.ioPrimitives.JPrimitiveType;
import twg2.template.codeTemplate.NameFormat;

/**
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import org.junit.Assert;
import org.junit.Test;

import twg2.primitiveIoTypes.JPrimitiveType;
import twg2.simpleTypes.ioPrimitives.JPrimitiveType;
import twg2.template.codeTemplate.NameFormat;
import twg2.template.templateString.TypeNameTmpl;

Expand Down
File renamed without changes.
8 changes: 0 additions & 8 deletions versions.md

This file was deleted.

0 comments on commit 2fd4954

Please sign in to comment.