16 lines
646 B
Markdown
16 lines
646 B
Markdown
# Static Site Generator (SSG)
|
|
|
|
## Updating Gradle
|
|
|
|
Update the Gradle wrapper via `gradle/wrapper/gradle-wrapper.properties`. Make sure that the tooling-api dependency is
|
|
updated to the same version in `cli/build.gradle`.
|
|
|
|
## Version-bumping
|
|
|
|
Update the version of the project in `buildSrc/src/main/groovy/ssg-common.gradle`. Then update the references to the
|
|
`cli` and `api` projects in `ssg-gradle-plugin/src/main/java/com/jessebrault/ssg/gradle/SsgGradlePlugin.java`.
|
|
|
|
## Publishing
|
|
|
|
Gradle command `publishAllPublicationsToJbArchiva<Internal|Snapshots>Repository`. Which one of `internal` or `snapshots`
|
|
appears depends on the current version. |