|
2 | 2 |
|
3 | 3 | You are now ready to develop your library. This guide will walk you through resolving dependencies, configuring the build, creating release artifacts, and testing your library in Processing. |
4 | 4 |
|
5 | | -_Note: If you haven't set up your environment yet, refer to the [Getting Started guide](getting-started.md)._ |
| 5 | +!!! Note |
| 6 | + If you haven't set up your environment yet, refer to the [Getting Started guide](getting-started.md). |
6 | 7 |
|
7 | 8 |
|
8 | 9 | ## Developing the library |
@@ -37,9 +38,10 @@ were to use the `commons-math3` package from `org.apache.commons` as a dependenc |
37 | 38 | implementation(group = "org.apache.commons", name = "commons-math3", version = "3.6.1") |
38 | 39 | ``` |
39 | 40 |
|
40 | | -NOTE: Dependencies added with `implementation` will be included in the release. Dependencies |
41 | | -added with `compileOnly`, such as Processing core, are available for compilation, but won't |
42 | | -be included in the release. |
| 41 | +!!! Note |
| 42 | + Dependencies added with `implementation` will be included in the release. Dependencies |
| 43 | + added with `compileOnly`, such as Processing core, are available for compilation, but won't |
| 44 | + be included in the release. |
43 | 45 |
|
44 | 46 | After you add these dependencies, **refresh Gradle**, and then you will be able to access them |
45 | 47 | in your code. Refresh Gradle by going to the Gradle menu (elephant) in your IDE |
@@ -89,7 +91,8 @@ those sections for [resolving dependencies](#resolving-dependencies). |
89 | 91 | ## Creating examples |
90 | 92 | Examples help users understand your library’s functionality, it is recommended that you include several clear and well-commented samples sketches in the `examples` folder. |
91 | 93 |
|
92 | | -_Note: The example sketch included in this template outputs the image shown on the home page._ |
| 94 | +!!! Note |
| 95 | + The example sketch included in this template outputs the image shown on the home page. |
93 | 96 |
|
94 | 97 | ## Creating the release artifacts |
95 | 98 | If you've already gone through the [Getting started](getting-started.md#first-steps) guide, you will have |
|
0 commit comments