DEV Community

Janardhan Pulivarthi
Janardhan Pulivarthi

Posted on • Updated on

Day 18 of 100 - Java: Using a pom depedency

Today I tried to build a project with commonmark-java. Here is the repo j143/markdown-testing

In the pom.xml file, add dependency as

    <dependencies>
        <dependency>
            <groupId>org.commonmark</groupId>
            <artifactId>commonmark</artifactId>
            <version>0.18.1</version>
        </dependency>
    </dependencies>

Enter fullscreen mode Exit fullscreen mode

Top comments (0)