MikAoJk / norwegian-social-security-number-validator

Simple validator for validating a norwegian social security number (FNR or DNR)
MIT License
1 stars 1 forks source link

Build and test

Validate Gradle Wrapper

Build and publish artifact

norwegian-social-security-number-validator

a simple validator for validation a norwegian social security numbers (FNR, DNR)

See Fødselsnummer for more info on how validation of a norwegian social security number is done

Technologies used

Using the library

Getting github-package-registry packages

The package in this repo is uploaded to the GitHub Package Registry which requires authentication. It can, for example, be solved like this in Gradle:

val githubUser: String by project
val githubPassword: String by project
repositories {
    maven {
        credentials {
            username = githubUser
            password = githubPassword
        }
        setUrl("https://maven.pkg.github.com/mikaojk/norwegian-social-security-number-validator")
    }
}

githubUser and githubPassword can be put into a separate file ~/.gradle/gradle.properties with the following content:

githubUser=x-access-token
githubPassword=[token]

Replace [token] with a personal access token with scope read:packages. See githubs guide creating-a-personal-access-token on how to create a personal access token.

Alternatively, the variables can be configured via environment variables:

or the command line:

./gradlew -PgithubUser=x-access-token -PgithubPassword=[token]

import

Gradle(kotlin)

implementation("io.github.mikaojk:norwegian-social-security-number-validator:2.0.9")

Maven

<dependency>
  <groupId>io.github.mikaojk</groupId>
  <artifactId>norwegian-social-security-number-validator</artifactId>
  <version>2.0.9</version>
</dependency>

Use example

val valid = validateSocialSecurityAndDNumber11Digits("01013999900")

Local development started

Prerequisites

Make sure you have the Java JDK 21 installed You can check which version you have installed using this command:

java -version

Running the application locally

Build and run tests

To build locally and run the integration tests you can simply run

./gradlew clean build

or on windows gradlew.bat clean build

Upgrading the gradle wrapper

Find the newest version of gradle here: https://gradle.org/releases/ Then run this command:

./gradlew wrapper --gradle-version $gradleVersjon

Manual publish

To publish you can simply run

./gradlew clean build

for release to GitHub packages run (Replace $NEW_VERSION with the version you want to release)

./gradlew -Pversion=$NEW_VERSION publish

for release to GitHub packages run (Replace $NEW_VERSION with the version you want to release)

./gradlew -Pversion=$NEW_VERSION jreleaserFullRelease

Publish of artifact

Artifact publish is done by GitHub Actions, and publish to Maven Central and GitHub Packages

Contact

This project is maintained by CODEOWNERS

Questions and/or feature requests? Please create an issue

✏️ Contributing

To get started, please fork the repo and checkout a new branch. See more info in CONTRIBUTING.md