Skip to content

Commit

Permalink
Release version v1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vincenzopalazzo authored Jun 11, 2021
2 parents 1e7efb2 + 5ffa126 commit e6ca0b8
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 11 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: Publish package to the Maven Central Repository
on:
release:
types: [created]
push:
branches:
- master
#push:
# branches:
# - master

jobs:
build:
Expand Down Expand Up @@ -39,4 +39,10 @@ jobs:
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }}
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }}
SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }}
- name: Build jar with dependencies
run: ./gradlew jarWithDependencies
- uses: actions/upload-artifact@v2
with:
name: release-jars
path: build/libs/
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
![GitHub All Releases](https://img.shields.io/github/downloads/vincenzopalazzo/material-ui-swing/total?color=%234caf50&style=for-the-badge)

<div align="center">
<img src="https://raw.githubusercontent.com/vincenzopalazzo/material-ui-swing-donations/master/images/iconMaterialOfficial.png" />
<img src="https://raw.githubusercontent.com/material-ui-swing/material-ui-swing-icon/main/svg/java-red-icon.svg" />
</div>

## Description
Expand Down Expand Up @@ -34,18 +34,18 @@ A modern, Material Design UI for Java Swing
<dependency>
<groupId>io.github.vincenzopalazzo</groupId>
<artifactId>material-ui-swing</artifactId>
<version>1.1.2-rc2</version>
<version>1.1.2</version>
</dependency>
```

_Gradle (Groovy)_
```groovy
implementation 'io.github.vincenzopalazzo:material-ui-swing:1.1.2-rc2'
implementation 'io.github.vincenzopalazzo:material-ui-swing:1.1.2'
```

_Gradle (Kotlin DSL)_
```kotlin
implementation("io.github.vincenzopalazzo:material-ui-swing:1.1.2-rc2")
implementation("io.github.vincenzopalazzo:material-ui-swing:1.1.2")
```

Others version [here](https://search.maven.org/artifact/io.github.vincenzopalazzo/material-ui-swing)
Expand All @@ -71,7 +71,7 @@ repositories {

dependencies {
... other stuff
implementation("io.github.vincenzopalazzo:material-ui-swing:1.1.2-rc2-SNAPSHOT")
implementation("io.github.vincenzopalazzo:material-ui-swing:1.1.3-rc1-SNAPSHOT")
}

```
Expand Down
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ dependencies {
// Use JUnit test framework
testCompile 'junit:junit:4.12'
testCompile group: 'org.assertj', name: 'assertj-swing-junit', version: '3.9.2'
// Testing dependencies
testCompile 'io.github.material-ui-swing:DarkStackOverflowTheme:0.0.1-rc2'
testCompile group: 'com.toedter', name: 'jcalendar', version: '1.4'
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
GROUP_ID=io.github.vincenzopalazzo
ARTIFACT_ID=material-ui-swing
#VERSION=1.1.2-rc2-SNAPSHOT
VERSION=1.1.2-rc3-SNAPSHOT
VERSION=1.1.2
MODULE_NAME=io.github.vincenzopalazzo.materialuiswing
RELEASE_ENABLE=true

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.vincenzopalazzo</groupId>
<artifactId>material-ui-swing</artifactId>
<version>1.1.2-rc3-SNAPSHOT</version>
<version>1.1.2</version>
<inceptionYear>2020</inceptionYear>
<licenses>
<license>
Expand Down

0 comments on commit e6ca0b8

Please sign in to comment.