Victor Nazarov
Victor Nazarov
````java class User { // ... } class UserFilter { // ... } @GenerateRenderablesFacade(className = "DefaultSuperAppQueries") interface SuperAppQueries { @RenderableFactoryMethod(tamplate = "com/github/sviperll/mysuperall/user.sql.mustache") Query findUsers(UserFilter user); } @GenerateRenderablesFacade(className = "DefaultSuperAppViews") interface...
Now we have the following code structure: ````java @GenerateRenderableAdapter( template = "user.mustache", adapterName = "RenderableHtmlUserAdapter" ) public class User { // ... } class Main { public static void main(String[]...
Ideally we should have * development branch * beta branch * master branch Merge to master branch should trigger release to maven-central and merge of the same changes to beta...
Provide documentation. Documentation should contain - Mission statement with clear vision of project future. It's current philosophy and mileage. It should be useful in evaluating possible design decisions. - Differences...