Skip to content

Commit

Permalink
done
Browse files Browse the repository at this point in the history
  • Loading branch information
attiasas committed Oct 27, 2024
1 parent 2a2052c commit 643bb84
Showing 1 changed file with 23 additions and 11 deletions.
34 changes: 23 additions & 11 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,34 @@ To build the library sources, please follow these steps:

1. Clone the code from Git.
2. Build the plugin by running the following Gradle command:
<details open>
<summary>windows</summary>

```bash
./gradlew clean build
./gradlew.bat clean build
```
</details>
<details>
<summary>windows</summary>
<summary>Mac / Linux</summary>

```bash
./gradlew.bat clean build
./gradlew clean build
```
</details>

To build the library sources and publish it locally, run the following Gradle command:
<details open>
<summary>windows</summary>

```bash
./gradlew publishToMavenLocal
./gradlew.bat publishToMavenLocal
```
</details>
<details>
<summary>windows</summary>
<summary>Mac / Linux</summary>

```bash
./gradlew.bat publishToMavenLocal
./gradlew publishToMavenLocal
```
</details>

Expand All @@ -32,13 +40,17 @@ To build the library sources and publish it locally, run the following Gradle co
# 🧪 Testing the plugin

To test the library sources, please follow these steps:
<details open>
<summary>windows</summary>

```bash
./gradlew clean check
./gradlew.bat clean check
```
</details>
<details>
<summary>windows</summary>
<summary>Mac / Linux</summary>

```bash
./gradlew.bat clean check
./gradlew clean check
```
</details>
</details>

0 comments on commit 643bb84

Please sign in to comment.