{"id":42794374,"url":"https://github.com/qbicsoftware/core-utils-lib","last_synced_at":"2026-01-30T00:26:21.424Z","repository":{"id":40248240,"uuid":"137386721","full_name":"qbicsoftware/core-utils-lib","owner":"qbicsoftware","description":"Library containing core classes and utilities that are independent of a portal.","archived":false,"fork":false,"pushed_at":"2024-10-24T15:53:07.000Z","size":1086,"stargazers_count":0,"open_issues_count":9,"forks_count":0,"subscribers_count":4,"default_branch":"main","last_synced_at":"2024-10-25T21:46:24.173Z","etag":null,"topics":["hacktoberfest"],"latest_commit_sha":null,"homepage":"","language":"Groovy","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/qbicsoftware.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGELOG.rst","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS.rst","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-06-14T17:06:33.000Z","updated_at":"2024-10-15T08:33:57.000Z","dependencies_parsed_at":"2024-10-24T20:05:16.319Z","dependency_job_id":"72b1c1ef-c6a1-4685-af9c-4d63de463eb3","html_url":"https://github.com/qbicsoftware/core-utils-lib","commit_stats":null,"previous_names":[],"tags_count":37,"template":false,"template_full_name":null,"purl":"pkg:github/qbicsoftware/core-utils-lib","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qbicsoftware%2Fcore-utils-lib","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qbicsoftware%2Fcore-utils-lib/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qbicsoftware%2Fcore-utils-lib/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qbicsoftware%2Fcore-utils-lib/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/qbicsoftware","download_url":"https://codeload.github.com/qbicsoftware/core-utils-lib/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qbicsoftware%2Fcore-utils-lib/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28891435,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-29T21:06:44.224Z","status":"ssl_error","status_checked_at":"2026-01-29T21:06:42.160Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hacktoberfest"],"created_at":"2026-01-30T00:26:20.658Z","updated_at":"2026-01-30T00:26:21.419Z","avatar_url":"https://github.com/qbicsoftware.png","language":"Groovy","funding_links":[],"categories":[],"sub_categories":[],"readme":"Core Utilities Library\n-----------------------------------\n\nA collection of non-Vaadin, non-Liferay utilities.\n\n|maven-build| |maven-test| |codeql| |release|\n|license| |java| |groovy|\n\nHow to Run\n-----------------\n\nTo build this library use Maven and Java 8:\n\nFirst compile the project and build an executable java archive:\n\n.. code-block:: bash\n\n    mvn clean package\n\nNote that you will need java 8.\nThe JAR file will be created in the /target folder:\n\n.. code-block:: bash\n\n    |-target\n    |---core-utils-lib-1.0.0-SNAPSHOT.jar\n    |---...\n\n\nHow to Use\n----------\n\nThis is a library and the most common way to use this library in particular is by including it in your `pom.xml` as a dependency:\n\n.. code-block:: xml\n\n    \u003cdependency\u003e\n      \u003cgroupId\u003elife.qbic\u003c/groupId\u003e\n      \u003cartifactId\u003ecore-utils-lib\u003c/artifactId\u003e\n      \u003cversion\u003eX.Y.Z\u003c/version\u003e\n    \u003c/dependency\u003e\n\nFind QBiC services\n------------------\nFinding QBiC service instances from within an application is as easy as this:\n\n.. code-block:: Groovy\n\n    // Example in Groovy\n    def serviceList = []\n    def serviceRegistryUrl = new Url(\"https://host-name-of-registry:\u003cport\u003e/v1\")\n    def connector = new ConsulConnector(serviceRegistryUrl)\n    connector.withCloseable {\n        ConsulServiceFactory factory = new ConsulServiceFactory(it)\n        serviceList.addAll(factory.getServicesOfType(ServiceType.SAMPLE_TRACKING))\n    }\n\n\n.. code-block:: Java\n\n    // Example in Java\n    List serviceList = new ArrayList\u003c\u003e()\n    Url serviceRegistryUrl = new URL(\"https://host-name-of-registry:\u003cport\u003e/v1\")\n    try (ConsulConnector connector = new ConsulConnector(serviceRegistryUrl)) {\n        ConsulServiceFactory factory = new ConsulServiceFactory(connector)\n        serviceList.addAll(factory.getServicesOfType(ServiceType.SAMPLE_TRACKING))\n    }\n\n\nLicense\n-------\n\nThis work is licensed under the `MIT license \u003chttps://mit-license.org/\u003e`_.\n\n**Note**: This work uses the `Micronaut Framework \u003chttps://github.com/micronaut-projects\u003e`_ and derivatives from the Micronaut framework family, its which are licensed under `Apache 2.0 \u003chttps://www.apache.org/licenses/LICENSE-2.0\u003e`_.\n\n\n.. |maven-build| image:: https://github.com/qbicsoftware/core-utils-lib/workflows/Build%20Maven%20Package/badge.svg\n    :target: https://github.com/qbicsoftware/core-utils-lib/actions/workflows/build_package.yml\n    :alt: Github Workflow Build Maven Package Status\n\n.. |maven-test| image:: https://github.com/qbicsoftware/core-utils-lib/workflows/Run%20Maven%20Tests/badge.svg\n    :target: https://github.com/qbicsoftware/core-utils-lib/actions/workflows/run_tests.yml\n    :alt: Github Workflow Tests Status\n\n.. |codeql| image:: https://github.com/qbicsoftware/core-utils-lib/workflows/CodeQL/badge.svg\n    :target: https://github.com/qbicsoftware/core-utils-lib/actions/workflows/codeql-analysis.yml\n    :alt: CodeQl Status\n\n.. |license| image:: https://img.shields.io/github/license/qbicsoftware/core-utils-lib\n    :target: https://github.com/qbicsoftware/core-utils-lib/blob/master/LICENSE\n    :alt: Project Licence\n\n.. |release| image:: https://img.shields.io/github/v/release/qbicsoftware/core-utils-lib.svg?include_prereleases\n    :target: https://github.com/qbicsoftware/core-utils-lib/releases\n    :alt: Release status\n\n.. |java| image:: https://img.shields.io/badge/language-java-blue.svg\n    :alt: Written in Java\n\n.. |groovy| image:: https://img.shields.io/badge/language-groovy-blue.svg\n    :alt: Written in Groovy","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqbicsoftware%2Fcore-utils-lib","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fqbicsoftware%2Fcore-utils-lib","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqbicsoftware%2Fcore-utils-lib/lists"}