@@ -137,7 +137,7 @@ specifically these lines tell you that Elasticsearch is ready:
137137 [2020-05-29T14:50:35,167][INFO ][o.e.h.AbstractHttpServerTransport] [runTask-0] publish_address {127.0.0.1:9200}, bound_addresses {[::1]:9200}, {127.0.0.1:9200}
138138 [2020-05-29T14:50:35,169][INFO ][o.e.n.Node ] [runTask-0] started
139139
140- But to be honest its typically easier to wait until the console stopps scrolling
140+ But to be honest its typically easier to wait until the console stops scrolling
141141and then run ` curl ` in another window like this:
142142
143143 curl -u elastic:password localhost:9200
@@ -587,13 +587,13 @@ allows you to use these configurations arbitrarily. Here are some of the most
587587common configurations in our build and how we use them:
588588
589589<dl >
590- <dt >`implementation`</dt ><dd >Dependencies that are used by the project
590+ <dt >`implementation`</dt ><dd >Dependencies that are used by the project
591591at compile and runtime but are not exposed as a compile dependency to other dependent projects.
592- Dependencies added to the ` implementation ` configuration are considered an implementation detail
592+ Dependencies added to the ` implementation ` configuration are considered an implementation detail
593593that can be changed at a later date without affecting any dependent projects.</dd >
594- <dt >`api`</dt ><dd >Dependencies that are used as compile and runtime depdendencies of a project
594+ <dt >`api`</dt ><dd >Dependencies that are used as compile and runtime dependencies of a project
595595 and are considered part of the external api of the project.
596- <dt >`runtimeOnly`</dt ><dd >Dependencies that not on the classpath at compile time but
596+ <dt >`runtimeOnly`</dt ><dd >Dependencies that not on the classpath at compile time but
597597are on the classpath at runtime. We mostly use this configuration to make sure that
598598we do not accidentally compile against dependencies of our dependencies also
599599known as "transitive" dependencies".</dd >
0 commit comments