Skip to content

Commit

Permalink
Start preparing 5.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
virustotalop committed May 19, 2022
1 parent ec05ee8 commit f95cae8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ repositories {
}
dependencies {
compileOnly 'com.github.clubobsidian.dynamicgui:core:5.0.0'
compileOnly 'com.github.clubobsidian.dynamicgui:core:5.0.1'
}
```
Maven
Expand All @@ -95,7 +95,7 @@ Maven
<dependency>
<groupId>com.github.ClubObsidian.DynamicGui</groupId>
<artifactId>core</artifactId>
<version>5.0.0</version>
<version>5.0.1</version>
</dependency>
```

Expand Down
11 changes: 7 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@ plugins {
id 'maven-publish'
}

def projectGroup = 'com.clubobsidian'
def projectVersion = '5.0.1'

allprojects {
group 'com.clubobsidian'
version '5.0.0'
group projectGroup
version projectVersion
ext {
junitVersion = '5.8.2'
cloudVersion = '1.6.2'
Expand All @@ -25,9 +28,9 @@ subprojects {
publishing {
publications {
shadow(MavenPublication) {
groupId 'com.clubobsidian'
groupId projectGroup
artifactId project.name
version '5.0.0'
version projectVersion
artifact shadowJar
}
}
Expand Down

0 comments on commit f95cae8

Please sign in to comment.