Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #244

Merged
merged 2 commits into from
May 10, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/sphinx/GettingStartedApplications/MyFirstProject.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ After installing the native packager, let's set up a raw sbt project to experime
sbt builds should always specify which version of sbt they are designed to use. This helps keeps builds consistent between developers,
and documents to users which version of sbt you require for the build.

Next, let's add the native packager to our build by created a ``project/plguins.sbt`` file with the following contents ::
Next, let's add the native packager to our build by created a ``project/plugins.sbt`` file with the following contents ::

addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "0.7.0-RC1")
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "0.7.0-RC2")

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This can be RC3

Now, the build needs to be configured for packaging. Let's define the ``build.sbt`` file as follows

Expand Down Expand Up @@ -70,7 +70,7 @@ platforms. There are two ways to do this in the sbt console ::
> universal:packageBin
[info] /home/jsuereth/projects/sbt/sbt-native-packager/tutorial-example/target/universal/example-cli-1.0.zip

> universal:packageZipTarabell
> universal:packageZipTarball
[info] /home/jsuereth/projects/sbt/sbt-native-packager/tutorial-example/target/universal/example-cli-1.0.tgz

This task simple constructs either a tgz or zip file with the exact same contents we found in the staged directory.
Expand Down