Skip to content

Commit

Permalink
release v1.1.0
Browse files Browse the repository at this point in the history
Signed-off-by: Tristan Leo <[email protected]>
  • Loading branch information
derveloper committed Jun 27, 2021
1 parent 6a0a7e4 commit 3c920aa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ kotlin-openapi3-dsl is available on maven central
### gradle

```groovy
compile "cc.vileda:kotlin-openapi3-dsl:1.1.0"
compile "cc.vileda:kotlin-openapi3-dsl:1.1.1"
```

### maven
```xml
<dependency>
<groupId>cc.vileda</groupId>
<artifactId>kotlin-openapi3-dsl</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
</dependency>
```

Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ apply plugin: 'maven-publish'
apply plugin: 'signing'

group 'cc.vileda'
version '1.1.0'
version '1.1.1'

repositories {
mavenCentral()
Expand Down Expand Up @@ -84,10 +84,10 @@ publishing {
repositories {
maven {
name = "GitHubPackages"
url = "https://maven.pkg.github.com/octocat/hello-world"
url = "https://maven.pkg.github.com/derveloper/kotlin-openapi3-dsl"
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
username = System.getenv("GITHUB_ACTOR") ?: "derveloper"
password = System.getenv("GITHUB_TOKEN") ?: ""
}
}
}
Expand Down

0 comments on commit 3c920aa

Please sign in to comment.