Skip to content

Commit

Permalink
Documentation:
Browse files Browse the repository at this point in the history
- Spacing on dependency examples
  • Loading branch information
mciolkosz committed Aug 20, 2022
1 parent eb40fb1 commit 5624d61
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,27 +42,26 @@ To add YamlConfiguration as a dependency to your project, use one of the followi
Include the following in your `pom.xml` file:<br />
```
<repositories>
<repository>
<id>sonatype-repo</id>
<url>https://oss.sonatype.org/content/repositories/releases/</url>
</repository>
<repository>
<id>sonatype-repo</id>
<url>https://oss.sonatype.org/content/repositories/releases/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.bspfsystems</groupId>
<artifactId>yamlconfiguration</artifactId>
<version>1.2.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.bspfsystems</groupId>
<artifactId>yamlconfiguration</artifactId>
<version>1.2.1</version>
<scope>compile</scope>
</dependency>
</dependencies>
```

**Gradle:**<br />
Include the following in your `build.gradle` file:<br />
```
repositories {
mavenCentral()
maven {
url "https://oss.sonatype.org/content/repositories/releases/"
}
Expand Down

0 comments on commit 5624d61

Please sign in to comment.