You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add optional shaded JAR build via Maven "shade" profile (#273)
* Add shaded (uber) JAR build using Maven Shade Plugin
* Fix typo
* Bump up the version number to the latest version number
* Move shaded JAR build to optional Maven profile "shade"
* Update Maven shade plugin version and README
Copy file name to clipboardExpand all lines: README.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,11 @@ This library is licensed under the Apache 2.0 License.
16
16
17
17
## Building from Source
18
18
19
-
After you've downloaded the code from GitHub, you can build it using Maven. To disable GPG signing in the build, use this command: `mvn clean install -Dgpg.skip=true`
19
+
After you've downloaded the code from GitHub, you can build it using Maven.
20
+
* To disable GPG signing in the build, use this command: `mvn clean install -Dgpg.skip=true`
21
+
* To build the default (non-shaded) JAR, use this command: `mvn clean install`
22
+
* To build the shaded (uber) JAR with all dependencies included, use this command: `mvn clean install -Pshade`
23
+
The shaded JAR will be generated in the `target/` directory with the `-shaded` classifier, e.g.: `target/aws-secretsmanager-jdbc-2.0.2-shaded.jar`
20
24
21
25
## Usage
22
26
The recommended way to use the SQL Connection Library is to consume it from Maven. The latest released version can be found at: https://mvnrepository.com/artifact/com.amazonaws.secretsmanager/aws-secretsmanager-jdbc
0 commit comments