Skip to content

Commit

Permalink
prepare release of version 1.0 (#53)
Browse files Browse the repository at this point in the history
set version number
align Maven descriptions of API modules
clean before performing the build using Gradle (to make unintended side effects of Gradle caches less likely)
  • Loading branch information
muellerj2 authored Nov 3, 2023
1 parent 17f6981 commit 34e1173
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gradle_buildbinariesfromtag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Create publication artifacts using Gradle
uses: gradle/gradle-build-action@v2
with:
arguments: publish
arguments: clean publish
- name: Gather release binaries
run: |
shopt -s globstar
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ wrapper {

allprojects {
group 'io.github.muellerj2'
version '0.3-SNAPSHOT'
version '1.0'

apply plugin: 'com.github.hierynomus.license'

Expand Down
2 changes: 1 addition & 1 deletion modules/core-api/core-api.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ publishing {

pom {
name = 'netroles Networks API'
description = 'API for networks used in netroles library'
description = 'API module of netroles library providing network representations'
url = 'https://github.com/muellerj2/netroles'
licenses {
license {
Expand Down
2 changes: 1 addition & 1 deletion modules/io-api/io-api.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ publishing {
from components.java
pom {
name = 'netroles IO API'
description = 'API of network file IO for netroles library'
description = 'API module of netroles library for network file IO'
url = 'https://github.com/muellerj2/netroles'
licenses {
license {
Expand Down
2 changes: 1 addition & 1 deletion modules/lang-api/lang-api.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ publishing {

pom {
name = 'netroles Lang API'
description = 'API specifying fundamental utility classes used by netroles'
description = 'API module of netroles library providing fundamental utility classes'
url = 'https://github.com/muellerj2/netroles'
licenses {
license {
Expand Down
2 changes: 1 addition & 1 deletion modules/roles-api/roles-api.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ publishing {

pom {
name = 'netroles API'
description = 'API of netroles library for role analysis in networks'
description = 'API module of netroles library for role equivalence analysis in networks'
url = 'https://github.com/muellerj2/netroles'
licenses {
license {
Expand Down
2 changes: 1 addition & 1 deletion modules/roles-impl/roles-impl.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ publishing {

pom {
name = 'netroles Engine'
description = 'netroles role analysis engine'
description = 'netroles role equivalence analysis engine'
url = 'https://github.com/muellerj2/netroles'
licenses {
license {
Expand Down

0 comments on commit 34e1173

Please sign in to comment.