Skip to content

Commit

Permalink
First release of Pandoro released!
Browse files Browse the repository at this point in the history
  • Loading branch information
N7ghtm4r3 committed Dec 1, 2023
1 parent 78044a0 commit be9b6bc
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 28 deletions.
2 changes: 1 addition & 1 deletion .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 3 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,41 +13,21 @@ Add the JitPack repository to your build file

### Gradle

- Add it in your root build.gradle at the end of repositories

#### Gradle (Short)

```gradle
repositories {
...
maven { url 'https://jitpack.io' }
}
```
#### Gradle (Kotlin)
```gradle
repositories {
...
maven("https://jitpack.io")
}
```
- Add the dependency

#### Gradle (Short)

```gradle
dependencies {
implementation 'com.github.N7ghtm4r3:Pandoro:1.0.0'
implementation 'com.tecknobit.pandoro:Pandoro:1.0.0'
}
```
#### Gradle (Kotlin)
```gradle
dependencies {
implementation("com.github.N7ghtm4r3:Pandoro:1.0.0")
implementation("com.tecknobit.pandoro:Pandoro:1.0.0")
}
```
Expand Down Expand Up @@ -156,6 +136,7 @@ To start the **Pandoro** service on your own infrastructure you have to follow t

#### Requirements

- At least **Java 18 JDK** installed on your machine
- An SQL environment installed, it is recommended to use **MySQL**
- Before run the backend service, **for the first time only**, you need to create a database named **pandoro** by
default or a
Expand Down
7 changes: 3 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ dependencies {

tasks {
compileKotlin {
kotlinOptions.jvmTarget = "19"
kotlinOptions.jvmTarget = "18"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "19"
kotlinOptions.jvmTarget = "18"
}
}

Expand All @@ -55,12 +55,11 @@ tasks.test {
}

kotlin {
jvmToolchain(19)
jvmToolchain(18)
}

configurations.all {
exclude("commons-logging", "commons-logging")
}

// TODO: REMOVE THIS FOR TESTING PURPOSES ONLY
tasks.withType<Jar> { duplicatesStrategy = DuplicatesStrategy.EXCLUDE }

0 comments on commit be9b6bc

Please sign in to comment.