Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Shadow Plugin to the listing #3

Merged
merged 2 commits into from
Jul 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 12 additions & 7 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,15 @@ docs_dir: .
nav:
- Projects:
- All Projects: projects/README.md
- Auto Manifest: auto-manifest/README.md
- Gradle static analysis plugin: static-analysis-plugin/README.md
- Gr8: gr8/README.md
- Gratatouille: gratatouille/README.md
- NMCP (New Maven Central Publishing): nmcp/README.md
- Librarian: librarian/README.md
- Maven Sympathy: maven-sympathy/README.md
- Gradle Plugins:
- Auto Manifest: auto-manifest/README.md
- Gradle static analysis plugin: static-analysis-plugin/README.md
- Gratatouille: gratatouille/README.md
- Gr8: gr8/README.md
- Librarian: librarian/README.md
- Maven Sympathy: maven-sympathy/README.md
- NMCP (New Maven Central Publishing): nmcp/README.md
- Shadow: shadow/README.md
- Hosting New Projects: docs/community/hosting.md
- Participate:
- Community Channels: docs/community/participate.md
Expand Down Expand Up @@ -79,6 +81,9 @@ plugins:
- name: static-analysis-plugin
import_url: 'https://github.com/GradleUp/static-analysis-plugin?branch=master&edit_uri=/blob/master/'
imports: [ README.md, CHANGELOG.md ]
- name: shadow
import_url: 'https://github.com/GradleUp/shadow?branch=main&edit_uri=/blob/main/'
imports: [ README.md ]
- redirects:
redirect_maps:

Expand Down
13 changes: 8 additions & 5 deletions projects/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,26 @@ The key projects are listed below.
You can find the full list of projects being developed by the team
on the [GitHub organization](https://github.com/GradleUp)

## Projects List
## Gradle Plugins

- [Auto Manifest](../auto-manifest/README.md) -
Generates `AndroidManifest.xml` in simple libraries so that you don't have to
- [Gradle static analysis plugin](../static-analysis-plugin/README.md) -
A Gradle plugin to easily apply the same setup of static analysis tools
across different Android, Java or Kotlin projects.
- [Gr8](../gr8/README.md) -
Gr8 makes it easy to shadow, shrink, and minimize your jars.
- [Gratatouille](../gratatouille/README.md) -
Gratatouille is an opinionated framework to build Gradle plugins. Write pure Kotlin functions and the Gratatouille KSP processor generates tasks, workers and wiring code for you.
- [NMCP](../nmcp/README.md) (New Maven Central Publishing) -
A plugin that uses the new Central Portal publisher API to publish to Maven Central.
- [Gr8](../gr8/README.md) -
Gr8 makes it easy to shadow, shrink, and minimize your jars.
- [Librarian](../librarian/README.md) -
Librarian is a library to help building Kotlin libraries.
- [Maven Sympathy](../maven-sympathy/README.md) -
A small Gradle plugin that checks that your project dependencies play nice with Maven resolution strategy
- [NMCP](../nmcp/README.md) (New Maven Central Publishing) -
A plugin that uses the new Central Portal publisher API to publish to Maven Central.
- [Shadow](../shadow/README.md) -
Gradle plugin to create fat/uber JARs, apply file transforms, and relocate packages for applications and libraries.
Gradle version of Maven's Shade plugin.

## Hosting New Projects

Expand Down
Loading