Skip to content

Commit

Permalink
Lint MD
Browse files Browse the repository at this point in the history
  • Loading branch information
fdaugan committed Mar 5, 2024
1 parent 759647b commit 05802fa
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Minimal Maven structure for a plugin:
<dependencies>
<dependency>
<groupId>org.ligoj.plugin</groupId>
<artifactId>plugin-id</artifactId> <!-- Service plugin version -->
<artifactId>plugin-id</artifactId> <!-- Service plugin artifact-id -->
<version>[2.2.0-SNAPSHOT,2.3.0)</version> <!-- Service plugin version range -->
<scope>provided</scope> <!-- Always provided -->
</dependency>
Expand All @@ -67,7 +67,7 @@ Produced artifacts for a plugin named `plugin-id-ldap` are:
- Main jar file: `plugin-id-ldap-1.0.0.jar`
- Javadoc jar file: `plugin-id-ldap-1.0.0-javadoc.jar`. Optional, but when deployed, contributes to generated OpenAPI JSON file.
- Sources jar file: `plugin-id-ldap-1.0.0-sources.jar`. Optional.
- Sources jar file: `plugin-id-ldap-1.0.0-test-sources.jar`. Optional.
- Test sources jar file: `plugin-id-ldap-1.0.0-test-sources.jar`. Optional.
- Jacoco coverage result

The following command generate all artifacts and run UTs and Its
Expand All @@ -85,15 +85,15 @@ The common steps:
- Choose the `Plugin` section


## Install a local plugin
### Install a local plugin

The specific steps:
- Click on `Install > Install from file`
- In the modal, fill the inputs accordingly to your plugin
- Upload it
- Restart the application

## Install a deployed Maven plugin
### Install a deployed Maven plugin

The specific steps:
- Click on `Install > Install from repository`
Expand All @@ -109,10 +109,10 @@ The [Ligoj CLI](https://github.com/ligoj/cli) is an administration tool for all

See all command options with `ligoj plugin`

## Install a local plugin
### Install a local plugin

The command is: `ligoj plugin upload --id "plugin-id-ldap" --version "1.1.4" --from "/path/to/plugin-id-ldap-1.1.4.jar"`

# Install a deployed Maven plugin
### Install a deployed Maven plugin

The command is: `ligoj plugin install --id "plugin-id-ldap" --version "1.1.4" --repository "central" --javadoc`

0 comments on commit 05802fa

Please sign in to comment.