├── .gitignore ├── LICENSE ├── README.md ├── documents ├── commons-lang-argument.md ├── commons-lang.date.md ├── date-format.md └── misc-empty.md ├── pom.xml ├── src └── test │ ├── java │ └── postfix │ │ └── templates │ │ └── JavaTemplateTest.java │ └── scala │ └── postfix │ └── templates │ └── ScalaTemplateTest.scala └── templates ├── assertj-core.postfixTemplates ├── assertj-vavr.postfixTemplates ├── commons-io.postfixTemplates ├── commons-lang.argument.postfixTemplates ├── commons-lang.date.postfixTemplates ├── commons-lang.empty.postfixTemplates ├── commons-lang.exception.postfixTemplates ├── commons-lang.string.postfixTemplates ├── commons-lang3.postfixTemplates ├── date-format.postfixTemplates ├── fastjson.postfixTemplates ├── guava-collection.postfixTemplates ├── guava-io.postfixTemplates ├── guava-string.postfixTemplates ├── javase.postfixTemplates ├── json-path.postfixTemplates ├── mockito.postfixTemplates ├── mybatis.postfixTemplates ├── reactor-core.postfixTemplates ├── reactor-misc.postfixTemplates ├── scala ├── apache-spark.postfixTemplates ├── assertj-core.postfixTemplates ├── commons-lang3.postfixTemplates ├── scala-lang.postfixTemplates └── scala-spring.postfixTemplates ├── slf4j.postfixTemplates ├── spring-test.postfixTemplates └── vavr.postfixTemplates /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/README.md -------------------------------------------------------------------------------- /documents/commons-lang-argument.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/documents/commons-lang-argument.md -------------------------------------------------------------------------------- /documents/commons-lang.date.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/documents/commons-lang.date.md -------------------------------------------------------------------------------- /documents/date-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/documents/date-format.md -------------------------------------------------------------------------------- /documents/misc-empty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/documents/misc-empty.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/pom.xml -------------------------------------------------------------------------------- /src/test/java/postfix/templates/JavaTemplateTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/src/test/java/postfix/templates/JavaTemplateTest.java -------------------------------------------------------------------------------- /src/test/scala/postfix/templates/ScalaTemplateTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/src/test/scala/postfix/templates/ScalaTemplateTest.scala -------------------------------------------------------------------------------- /templates/assertj-core.postfixTemplates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/templates/assertj-core.postfixTemplates -------------------------------------------------------------------------------- /templates/assertj-vavr.postfixTemplates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/templates/assertj-vavr.postfixTemplates -------------------------------------------------------------------------------- /templates/commons-io.postfixTemplates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/templates/commons-io.postfixTemplates -------------------------------------------------------------------------------- /templates/commons-lang.argument.postfixTemplates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/templates/commons-lang.argument.postfixTemplates -------------------------------------------------------------------------------- /templates/commons-lang.date.postfixTemplates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/templates/commons-lang.date.postfixTemplates -------------------------------------------------------------------------------- /templates/commons-lang.empty.postfixTemplates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/templates/commons-lang.empty.postfixTemplates -------------------------------------------------------------------------------- /templates/commons-lang.exception.postfixTemplates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/templates/commons-lang.exception.postfixTemplates -------------------------------------------------------------------------------- /templates/commons-lang.string.postfixTemplates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/templates/commons-lang.string.postfixTemplates -------------------------------------------------------------------------------- /templates/commons-lang3.postfixTemplates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/templates/commons-lang3.postfixTemplates -------------------------------------------------------------------------------- /templates/date-format.postfixTemplates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/templates/date-format.postfixTemplates -------------------------------------------------------------------------------- /templates/fastjson.postfixTemplates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/templates/fastjson.postfixTemplates -------------------------------------------------------------------------------- /templates/guava-collection.postfixTemplates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/templates/guava-collection.postfixTemplates -------------------------------------------------------------------------------- /templates/guava-io.postfixTemplates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/templates/guava-io.postfixTemplates -------------------------------------------------------------------------------- /templates/guava-string.postfixTemplates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/templates/guava-string.postfixTemplates -------------------------------------------------------------------------------- /templates/javase.postfixTemplates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/templates/javase.postfixTemplates -------------------------------------------------------------------------------- /templates/json-path.postfixTemplates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/templates/json-path.postfixTemplates -------------------------------------------------------------------------------- /templates/mockito.postfixTemplates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/templates/mockito.postfixTemplates -------------------------------------------------------------------------------- /templates/mybatis.postfixTemplates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/templates/mybatis.postfixTemplates -------------------------------------------------------------------------------- /templates/reactor-core.postfixTemplates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/templates/reactor-core.postfixTemplates -------------------------------------------------------------------------------- /templates/reactor-misc.postfixTemplates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/templates/reactor-misc.postfixTemplates -------------------------------------------------------------------------------- /templates/scala/apache-spark.postfixTemplates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/templates/scala/apache-spark.postfixTemplates -------------------------------------------------------------------------------- /templates/scala/assertj-core.postfixTemplates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/templates/scala/assertj-core.postfixTemplates -------------------------------------------------------------------------------- /templates/scala/commons-lang3.postfixTemplates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/templates/scala/commons-lang3.postfixTemplates -------------------------------------------------------------------------------- /templates/scala/scala-lang.postfixTemplates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/templates/scala/scala-lang.postfixTemplates -------------------------------------------------------------------------------- /templates/scala/scala-spring.postfixTemplates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/templates/scala/scala-spring.postfixTemplates -------------------------------------------------------------------------------- /templates/slf4j.postfixTemplates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/templates/slf4j.postfixTemplates -------------------------------------------------------------------------------- /templates/spring-test.postfixTemplates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/templates/spring-test.postfixTemplates -------------------------------------------------------------------------------- /templates/vavr.postfixTemplates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cassiuscai/postfix-templates/HEAD/templates/vavr.postfixTemplates --------------------------------------------------------------------------------