Prep for repro+art rename
This commit is contained in:
parent
1e69054eb7
commit
79adfa251f
3
build.md
3
build.md
|
@ -1,4 +1,3 @@
|
|||
|
||||
# TPQuery Building
|
||||
|
||||
## Requirements
|
||||
|
@ -28,7 +27,7 @@ mvn -Pbuild -Dusername=(scm_username) clean install release:clean release:prepar
|
|||
mvn -Ptest-jacoco clean install
|
||||
mvn -Pbuild-site site:site
|
||||
|
||||
Optional add -DstagingDirectory=/tmp/tpquery-build-fullsite
|
||||
Optional add -DstagingDirectory=/tmp/fullsite
|
||||
And then manual upload.
|
||||
|
||||
## Check for dependency-updates
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
TPQuery
|
||||
FF-TPQuery
|
||||
=========
|
||||
|
||||
TPQuery is a java8 library providing templated prepared statements.
|
||||
FF-TPQuery is a java8 library providing templated prepared statements.
|
||||
|
||||
## Features
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2013-2015, Willem Cazander
|
||||
* Copyright (c) 2014-2015, Willem Cazander
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without modification, are permitted provided
|
||||
|
@ -24,6 +24,8 @@ package net.forwardfire.tpquery.config.builder;
|
|||
|
||||
import java.util.function.Consumer;
|
||||
|
||||
import org.apache.commons.lang3.builder.Builder;
|
||||
|
||||
/**
|
||||
* Abstract object builder with parent builder.
|
||||
*
|
||||
|
@ -34,7 +36,7 @@ import java.util.function.Consumer;
|
|||
* @author Willem Cazander
|
||||
* @version 1.0 May 29, 2015
|
||||
*/
|
||||
public abstract class AbstractTPQBuilder<P,T,B> {
|
||||
public abstract class AbstractTPQBuilder<P,T,B> implements Builder<P> {
|
||||
|
||||
private final P parent;
|
||||
private final T value;
|
||||
|
@ -63,6 +65,7 @@ public abstract class AbstractTPQBuilder<P,T,B> {
|
|||
* Builds the result.
|
||||
* @return The result.
|
||||
*/
|
||||
@Override
|
||||
public final P build() {
|
||||
buildParent();
|
||||
return getParent();
|
||||
|
|
Loading…
Reference in a new issue