Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
447b2be9
Commit
447b2be9
authored
Mar 17, 2014
by
Phillip Webb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix lets -> let's in documentation
parent
4ca8993b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
getting-started.adoc
spring-boot-docs/src/main/asciidoc/getting-started.adoc
+4
-4
No files found.
spring-boot-docs/src/main/asciidoc/getting-started.adoc
View file @
447b2be9
...
@@ -470,7 +470,7 @@ so that you can omit `version` tags for ``blessed'' dependencies.
...
@@ -470,7 +470,7 @@ so that you can omit `version` tags for ``blessed'' dependencies.
Other ``Starter POMs'' simply provide dependencies that you are likely to need when
Other ``Starter POMs'' simply provide dependencies that you are likely to need when
developing a specific type of application. Since we are developing a web application, we
developing a specific type of application. Since we are developing a web application, we
will add a `spring-boot-starter-web` dependency -- but before that, lets look at what we
will add a `spring-boot-starter-web` dependency -- but before that, let
'
s look at what we
currently have.
currently have.
[indent=0]
[indent=0]
...
@@ -487,7 +487,7 @@ currently have.
...
@@ -487,7 +487,7 @@ currently have.
The `mvn dependency:tree` command prints tree representation of your project dependencies.
The `mvn dependency:tree` command prints tree representation of your project dependencies.
You can see that `spring-boot-starter-parent` has already provided some useful test
You can see that `spring-boot-starter-parent` has already provided some useful test
dependencies. Lets edit our `pom.xml` and add the `spring-boot-starter-web` dependency
dependencies. Let
'
s edit our `pom.xml` and add the `spring-boot-starter-web` dependency
just below the `parent` section:
just below the `parent` section:
[source,xml,indent=0,subs="verbatim,quotes,attributes"]
[source,xml,indent=0,subs="verbatim,quotes,attributes"]
...
@@ -535,7 +535,7 @@ file named `src/main/java/Example.java`:
...
@@ -535,7 +535,7 @@ file named `src/main/java/Example.java`:
}
}
----
----
Although there isn't much code here, quite a lot is going on. Lets step though the
Although there isn't much code here, quite a lot is going on. Let
'
s step though the
important parts.
important parts.
...
@@ -625,7 +625,7 @@ To gracefully exit the application hit `ctrl-c`.
...
@@ -625,7 +625,7 @@ To gracefully exit the application hit `ctrl-c`.
[[getting-started-first-application-executable-jar]]
[[getting-started-first-application-executable-jar]]
=== Creating an executable jar
=== Creating an executable jar
Lets finish our example by creating a completely self-contained executable jar file that
Let
'
s finish our example by creating a completely self-contained executable jar file that
we could run in production. Executable jars (sometimes called ``fat jars'') are archives
we could run in production. Executable jars (sometimes called ``fat jars'') are archives
containing your compiled classes along with all of the jar dependencies that your code
containing your compiled classes along with all of the jar dependencies that your code
needs to run.
needs to run.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment