'Not able to import dependency in Maven project? (TXC Parser)

Currently on some GPS code and I need to import TCX files. Working in a Maven Project and wanted to use a TXC Parser I found.

https://mvnrepository.com/artifact/pl.jakubtrzcinski/tcx-parser/1.0.2.RELEASE

Why I can´t use this dependency?

Error in Intellij: Cannot resolve pl.jakubtrzcinski:tcx-parser:1.0.2

Error in VsCode: Missing artifact pl.jakubtrzcinski:tcx-parser:jar:1.0.2

my pom.xml:

    <groupId>org.example</groupId>
    <artifactId>untitled</artifactId>
    <version>1.0-SNAPSHOT</version>
<dependencies>
    <!-- https://mvnrepository.com/artifact/pl.jakubtrzcinski/tcx-parser -->
    <dependency>
        <groupId>pl.jakubtrzcinski</groupId>
        <artifactId>tcx-parser</artifactId>
        <version>1.0.2.RELEASE</version>
    </dependency>
</dependencies>

    <properties>
        <maven.compiler.source>18</maven.compiler.source>
        <maven.compiler.target>18</maven.compiler.target>
    </properties>


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source