Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.08 KB

README.md

File metadata and controls

31 lines (24 loc) · 1.08 KB

mybatis-issues

This repository helps contributors to create SSCCE : Short, Self Contained, Correct (Compilable), Example.

Create a new project using gradle

  1. Fork this repository on GitHub and clone the forked repository to your machine. Please see the GitHub guide for the details.
$ git clone git@github.com:YOUR_ACCOUNT/mybatis-issues.git
  1. In the cloned repository, execute gradle(gradlew) command to create a new project.
$ ./gradlew -PprojectName=gh-123 -Ptemplate=_simple
  • projectName : The name of the new project. Required.
  • template : The name of the template directory. The default is '_simple'.
    • _simple : A simple MyBatis project.
    • _spring : A basic MyBatis-Spring project.
    • _spring-boot : A basic MyBatis-Spring-Boot project.
  1. Make changes so that the project can reproduce your problem.
  2. Commit your changes and push them to your forked repository.
$ git add -A
$ git commit -m "Some commit message"
$ git push
  1. Let us know the URL of your repository.