mirror of https://github.com/sbt/sbt.git
Revised based on pull request feedback.
This commit is contained in:
parent
86b0098078
commit
e7d5cd1bd2
|
|
@ -9,6 +9,8 @@ A project should define :key:`name` and :key:`version`. These will be used in v
|
|||
:type: setting
|
||||
:title: Set the project name
|
||||
|
||||
name := "demo"
|
||||
|
||||
::
|
||||
|
||||
name := "Your project name"
|
||||
|
|
@ -20,15 +22,19 @@ For published projects, this name is normalized to be suitable for use as an art
|
|||
:type: setting
|
||||
:title: Set the project version
|
||||
|
||||
version := "1.0"
|
||||
|
||||
::
|
||||
|
||||
version := "1.0-SNAPSHOT"
|
||||
version := "1.0"
|
||||
|
||||
.. howto::
|
||||
:id: organization
|
||||
:type: setting
|
||||
:title: Set the project organization
|
||||
|
||||
organization := "org.example"
|
||||
|
||||
::
|
||||
|
||||
organization := "org.example"
|
||||
|
|
|
|||
Loading…
Reference in New Issue