Skip to content

Commit

Permalink
added in setters
Browse files Browse the repository at this point in the history
  • Loading branch information
synapticloop committed Jan 25, 2017
1 parent 059be8c commit 4a5db7e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
group = 'synapticloop'
archivesBaseName = 'templar-gen'
description = """generate output with the Templar templating engine"""
version = '1.2.1'
version = '1.2.3'

sourceCompatibility = 1.7
targetCompatibility = 1.7
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import org.gradle.api.Project;

public class TemplarGenPlugin implements Plugin<Project> {
private static final String TEMPLAR_GEN = "templar-gen";
private static final String TEMPLAR_GEN = "templarGen";

@Override
public void apply(Project project) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ public class TemplarGenPluginExtension {
private String in = "src";
private String out = ".";

public void setIn(String in) { this.in = in; }
public String getIn() { return this.in; }
public void setOut(String out) { this.out = out; }
public String getOut() { return this.out; }


}

0 comments on commit 4a5db7e

Please sign in to comment.