Skip to content

banglanumeralutil-1.0.1.jar

Choose a tag to compare

@Acesif Acesif released this 24 Feb 10:06
· 5 commits to main since this release
c988530

Step 1: Create a libs folder in your project

Place your .jar file inside libs/your-library.jar.

Step 2: Add the Dependency

For Maven

Modify your pom.xml to include the .jar from libs:

<dependency>
    <groupId>com.acesif</groupId>
    <artifactId>banglanumeralutil</artifactId>
    <version>1.0.1</version>
    <scope>system</scope>
    <systemPath>${project.basedir}/libs/banglanumeralutil-1.0.1.jar</systemPath>
</dependency>

For Gradle

dependencies {
    implementation files('libs/banglanumeralutil-1.0.1.jar')
}