Skip to content

Commit de05966

Browse files
authored
Merge pull request #26 from fugerit-org/feature/issue_22_build_metadata
fj-bom version set to 1.3.1 #22
2 parents 97ad3b6 + 946d26e commit de05966

File tree

8 files changed

+61
-27
lines changed

8 files changed

+61
-27
lines changed

.github/workflows/sonarcloud-maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
# SonarCloud access token should be generated from https://sonarcloud.io/account/security/
4848
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
4949
- name: Build and analyze
50-
run: mvn -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Pcoverage
50+
run: mvn -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Pcoverage -Pcoverage,sonarfugerit -Dsonar.projectKey=fugerit-org_${{github.event.repository.name}}
5151
env:
5252
# Needed to get some information about the pull request, if any
5353
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Added
11+
12+
- javadoc badges
13+
- modules description
14+
15+
### Changed
16+
17+
- fj-bom version set to 1.3.1
18+
- Sonar Cloud Maven Build set to use maven profile sonarfugerit and github environmental variable for sonarKey
19+
20+
### Removed
21+
22+
- index.md
23+
1024
## [8.2.2] - 2023-08-31
1125

1226
### Fixed

README.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Provides helper libraries for other java projects (io, configuration, etc.)
44

55

66
[![Keep a Changelog v1.1.0 badge](https://img.shields.io/badge/changelog-Keep%20a%20Changelog%20v1.1.0-%23E05735)](CHANGELOG.md)
7-
[![Maven Central](https://img.shields.io/maven-central/v/org.fugerit.java/fj-core.svg)](https://mvnrepository.com/artifact/org.fugerit.java/fj-core)
7+
[![Maven Central](https://img.shields.io/maven-central/v/org.fugerit.java/fj-lib.svg)](https://mvnrepository.com/artifact/org.fugerit.java/fj-lib)
88
[![license](https://img.shields.io/badge/License-Apache%20License%202.0-teal.svg)](https://opensource.org/licenses/Apache-2.0)
99
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=fugerit-org_fj-lib&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=fugerit-org_fj-lib)
1010

@@ -20,3 +20,25 @@ Quick start :
2020
Maven profiles :
2121
- full (create javadoc and sources package too)
2222
- test (run tests, by default tests are excluded)
23+
24+
## module : [fj-core](fj-core/README.md)
25+
26+
[![Maven Central](https://img.shields.io/maven-central/v/org.fugerit.java/fj-core.svg)](https://mvnrepository.com/artifact/org.fugerit.java/fj-core)
27+
[![javadoc](https://javadoc.io/badge2/org.fugerit.java/fj-core/javadoc.svg)](https://javadoc.io/doc/org.fugerit.java/fj-core)
28+
29+
Simple utilities for IO, Configuration, DB, Language types and more.
30+
31+
## module : [fj-core-jvfs](fj-core-jvfs/README.md)
32+
33+
[![Maven Central](https://img.shields.io/maven-central/v/org.fugerit.java/fj-core-jvfs.svg)](https://mvnrepository.com/artifact/org.fugerit.java/fj-core-jvfs)
34+
[![javadoc](https://javadoc.io/badge2/org.fugerit.java/fj-core-jvfs/javadoc.svg)](https://javadoc.io/doc/org.fugerit.java/fj-core-jvfs)
35+
36+
Abstraction layer for a virtual file system (can be based on real file syste, database, class loader etc.)
37+
38+
## module : [fj-tool](fj-tool/README.md)
39+
40+
[![Maven Central](https://img.shields.io/maven-central/v/org.fugerit.java/fj-tool.svg)](https://mvnrepository.com/artifact/org.fugerit.java/fj-tool)
41+
[![javadoc](https://javadoc.io/badge2/org.fugerit.java/fj-tool/javadoc.svg)](https://javadoc.io/doc/org.fugerit.java/fj-tool)
42+
43+
Sample tool wrappers for some of [fj-core](../fj-core/README.md) module functionalities.
44+

fj-core-jvfs/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# fj-core-jvfs
2+
3+
[fj-lib index](../README.md)
4+
5+
[![Maven Central](https://img.shields.io/maven-central/v/org.fugerit.java/fj-core-jvfs.svg)](https://mvnrepository.com/artifact/org.fugerit.java/fj-core-jvfs)
6+
[![javadoc](https://javadoc.io/badge2/org.fugerit.java/fj-core-jvfs/javadoc.svg)](https://javadoc.io/doc/org.fugerit.java/fj-core-jvfs)
7+
8+
Abstraction layer for a virtual file system (can be based on real file syste, database, class loader etc.)

fj-core/README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
# fugerit-java-core
1+
# fj-core
22

3-
Useful resources :
4-
* [Fugerit Java Library Home](https://www.fugerit.org/jupiter) - Home page to the project
3+
[fj-lib index](../README.md)
54

6-
Quick start :
7-
mvn clean install
5+
Simple utilities for IO, Configuration, DB, Language types and more.
6+
7+
[![Maven Central](https://img.shields.io/maven-central/v/org.fugerit.java/fj-core.svg)](https://mvnrepository.com/artifact/org.fugerit.java/fj-core)
8+
[![javadoc](https://javadoc.io/badge2/org.fugerit.java/fj-core/javadoc.svg)](https://javadoc.io/doc/org.fugerit.java/fj-core)

fj-tool/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# fj-tool
2+
3+
[fj-lib index](../README.md)
4+
5+
[![Maven Central](https://img.shields.io/maven-central/v/org.fugerit.java/fj-tool.svg)](https://mvnrepository.com/artifact/org.fugerit.java/fj-tool)
6+
[![javadoc](https://javadoc.io/badge2/org.fugerit.java/fj-tool/javadoc.svg)](https://javadoc.io/doc/org.fugerit.java/fj-tool)
7+
8+
Sample tool wrappers for some of [fj-core](../fj-core/README.md) module functionalities.

index.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

pom.xml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.fugerit.java</groupId>
99
<artifactId>fj-bom</artifactId>
10-
<version>1.2.5</version>
10+
<version>1.3.1</version>
1111
<relativePath></relativePath>
1212
</parent>
1313

@@ -28,11 +28,6 @@
2828
<javax-rs-api-version>2.1.1</javax-rs-api-version>
2929
<fj-version>${project.version}</fj-version>
3030
<awaitility-version>4.2.0</awaitility-version>
31-
<!-- sonar cloud configuration -->
32-
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
33-
<sonar.organization>fugerit-org</sonar.organization>
34-
<sonar.projectKey>fugerit-org_fj-lib</sonar.projectKey>
35-
<sonar.moduleKey>${project.artifactId}</sonar.moduleKey>
3631
</properties>
3732

3833
<licenses>

0 commit comments

Comments
 (0)