Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. ###Creating Gradle Project
  2.  
  3. 1. Create New Project
  4. 2. Select Java and Web from the Option
  5. 3. You will be asked to provide GroupID and ArtifactID
  6. * **GroupID:** it will identify your project uniquely across all projects. (E.g. com.project.model | com.project.plugins)
  7. * **ArtifactID:** is the name of the jar without version. If you created it then you can choose whatever name you want with lowercase letters and no strange symbols (E.g. maven | some-project )
  8. 4. Click Next and Select use auto-import. It is recommended to select gradle_wrapper for novice user.
  9. This ensures that the project is build using same version by everyone. If you select local version of the gradle then same version of gradle must be available to all. It is usually placed in VC.
  10. 5. Open **build.gradle** file from the project tab
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement