Skip to content

Commit

Permalink
Изменение описания проекта
Browse files Browse the repository at this point in the history
  • Loading branch information
Bloogefest committed Apr 10, 2023
1 parent c9ab9ce commit 238ebd7
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,43 @@
[![RELEASE](https://img.shields.io/github/v/release/Bloogefest/BF.Annotation?style=for-the-badge)](https://github.com/Bloogefest/BF.Annotation/releases/latest)
[![CI/CD](https://img.shields.io/github/actions/workflow/status/Bloogefest/BF.Annotation/master.yml?label=CI%2FCD&style=for-the-badge)](https://github.com/Bloogefest/BF.Annotation/actions/workflows/master.yml)

### Release Candidate

#### Maven

```xml
<repository>
<id>ossrh-rc</id>
<name>OSSRH RC</name>
<url>https://s01.oss.sonatype.org/content/repositories/releases/</url>
</repository>
```

```xml
<dependency>
<groupId>com.bloogefest</groupId>
<artifactId>annotation</artifactId>
<version>1.0.0-RC1</version>
</dependency>
```

#### Gradle

```kotlin
repositories {
maven {
name = "OSSRH RC"
url = uri("https://s01.oss.sonatype.org/content/repositories/releases/")
}
}
```

```kotlin
dependencies {
implementation("com.bloogefest:annotation:1.0.0-RC1")
}
```

### Snapshot

#### Maven
Expand Down

0 comments on commit 238ebd7

Please sign in to comment.