Skip to content

Commit

Permalink
prepare new major release in version 3
Browse files Browse the repository at this point in the history
  • Loading branch information
astrapi69 committed Dec 22, 2023
1 parent 1861f20 commit 615d0b3
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Change log
----------------------

Version 3-SNAPSHOT
Version 3
-------------

CHANGED:
Expand Down
32 changes: 29 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,20 @@ calculate checksums for:
## gradle dependency

Replace the variable ${latestVersion} with the current latest version: [![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.github.astrapi69/checksum-up/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.github.astrapi69/checksum-up)

You can first define the version in the ext section and add than the following gradle dependency to
your project `build.gradle` if you want to import the core functionality of checksum-up:

define version in file gradle.properties
```
checksumUpVersion=2.2
checksumUpVersion=${latestVersion}
```

or in build.gradle ext area

```
checksumUpVersion = '2.2'
checksumUpVersion = '${latestVersion}'
```

and than add the dependency to the dependencies area
Expand All @@ -66,7 +68,7 @@ Than you can add the dependency to your dependencies:
<properties>
...
<!-- CHECKSUM-UP VERSION -->
<checksum-up.version>2.2</checksum-up.version>
<checksum-up.version>${latestVersion}</checksum-up.version>
...
</properties>
...
Expand All @@ -81,6 +83,30 @@ Than you can add the dependency to your dependencies:
...
</dependencies>

## 📸 Snapshots

[![Snapshot](https://img.shields.io/badge/dynamic/xml?url=https://oss.sonatype.org/service/local/repositories/snapshots/content/io/github/astrapi69/checksum-up/maven-metadata.xml&label=snapshot&color=red&query=.//versioning/latest)](https://oss.sonatype.org/content/repositories/snapshots/io/github/astrapi69/checksum-up/)

This section describes how to import snapshot versions into your project.
Add the following code snippet to your gradle file in the repositories section:
```
repositories {
//...
```
```groovy
maven {
name "Sonatype Nexus Snapshots"
url "https://oss.sonatype.org/content/repositories/snapshots"
mavenContent {
snapshotsOnly()
}
}
```
```
}
```


# Donations

This project is kept as an open source product and relies on contributions to remain being
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
######################
# project properties #
######################
projectVersion=3-SNAPSHOT
projectVersion=3
groupPackage=io.github.astrapi69
projectSourceCompatibility=17
projectInceptionYear=2015
Expand Down

0 comments on commit 615d0b3

Please sign in to comment.