Skip to content

Commit

Permalink
5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
biagio committed Feb 2, 2025
1 parent 6cfec64 commit 8bc4bf4
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
JRELEASER_PROJECT_VERSION: ${{ github.event.release.tag_name }}

- name: Output
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: jreleaser-release
Expand Down
4 changes: 2 additions & 2 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ Attenzione: le versioni precedenti alla 5.0.0 sono state rilasciate con groupId
<dependency>
<groupId>app.tozzi</groupId>
<artifactId>pec-parser</artifactId>
<version>5.0.2</version>
<version>5.1.0</version>
</dependency>
```

##### Gradle
```
implementation 'app.tozzi:pec-parser:5.0.2
implementation 'app.tozzi:pec-parser:5.1.0
```

### Requisiti
Expand Down
9 changes: 5 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = 'app.tozzi'
version = '5.0.2'
version = '5.1.0'

compileJava {
sourceCompatibility = JavaVersion.VERSION_17
Expand Down Expand Up @@ -63,10 +63,10 @@ tasks.withType(JavaCompile) {

publishing {
publications {
maven(MavenPublication) {
mavenJava(MavenPublication) {
group = 'app.tozzi'
artifactId = 'pec-parser'
version = "5.0.2"
version = "5.1.0"
from components.java
pom {
name = 'pec-parser'
Expand Down Expand Up @@ -115,5 +115,6 @@ test {
}

jar {
from sourceSets.main.allSource
enabled = true
archiveClassifier.set('')
}
14 changes: 6 additions & 8 deletions publiccode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,18 @@ description:
_Maven_
`<dependency>
`
<dependency>
<groupId>app.tozzi</groupId>
<artifactId>pec-parser</artifactId>
<version>5.0.2</version>
</dependency>`
<version>5.1.0</version>
</dependency>
`
_Gradle_
`implementation 'app.tozzi:pec-parser:5.0.2`
`implementation("app.tozzi.mail:pec-parser:5.1.0")`
**Requisiti**
Expand Down

0 comments on commit 8bc4bf4

Please sign in to comment.