瀏覽代碼

Merge branch 'master' of github.com:spring-guides/getting-started-macros

Greg Turnquist 13 年之前
父節點
當前提交
dda54ac539
共有 2 個文件被更改,包括 2 次插入0 次删除
  1. 1
    0
      macros/build_an_executable_jar_with_both.asc
  2. 1
    0
      macros/build_system_intro.asc

+ 1
- 0
macros/build_an_executable_jar_with_both.asc 查看文件

3
 // For more information see https://github.com/spring-guides/draft-gs-template/wiki/Pull-in-needed-macros
3
 // For more information see https://github.com/spring-guides/draft-gs-template/wiki/Pull-in-needed-macros
4
 // to see how this macro is used for writing Getting Started guides.
4
 // to see how this macro is used for writing Getting Started guides.
5
 //
5
 //
6
+
6
 :linkattrs:
7
 :linkattrs:
7
 
8
 
8
 Now that your `Application` class is ready, you simply instruct the build system to create a single, executable jar containing everything. This makes it easy to ship, version, and deploy the service as an application throughout the development lifecycle, across different environments, and so forth.
9
 Now that your `Application` class is ready, you simply instruct the build system to create a single, executable jar containing everything. This makes it easy to ship, version, and deploy the service as an application throughout the development lifecycle, across different environments, and so forth.

+ 1
- 0
macros/build_system_intro.asc 查看文件

3
 // For more information see https://github.com/spring-guides/draft-gs-template/wiki/Pull-in-needed-macros
3
 // For more information see https://github.com/spring-guides/draft-gs-template/wiki/Pull-in-needed-macros
4
 // to see how this macro is used for writing Getting Started guides.
4
 // to see how this macro is used for writing Getting Started guides.
5
 //
5
 //
6
+
6
 :linkattrs:
7
 :linkattrs:
7
 
8
 
8
 First you set up a basic build script. You can use any build system you like when building apps with Spring, but the code you need to work with http://gradle.org[Gradle] and https://maven.apache.org[Maven] is included here. If you're not familiar with either, refer to link:/guides/gs/gradle[Building Java Projects with Gradle] or link:/guides/gs/maven[Building Java Projects with Maven].
9
 First you set up a basic build script. You can use any build system you like when building apps with Spring, but the code you need to work with http://gradle.org[Gradle] and https://maven.apache.org[Maven] is included here. If you're not familiar with either, refer to link:/guides/gs/gradle[Building Java Projects with Gradle] or link:/guides/gs/maven[Building Java Projects with Maven].