Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.orimajp:jodconverter:'
}
dependencies {
implementation("com.github.orimajp:jodconverter:")
}
<dependency>
<groupId>com.github.orimajp</groupId>
<artifactId>jodconverter</artifactId>
<version></version>
</dependency>
libraryDependencies += "com.github.orimajp" % "jodconverter" % ""
:dependencies [[com.github.orimajp/jodconverter ""]]
I created this fork because I had to do some changes to the original project and now it is time to share my work with the community.
compile 'org.jodconverter:jodconverter-core:4.0.0-RELEASE'
<dependency>
<groupId>org.jodconverter</groupId>
<artifactId>jodconverter-core</artifactId>
<version>4.0.0-RELEASE</version>
</dependency>
gradlew clean build -x test -x integTest
gradlew clean build -x test -x integTest -PuseOpenOffice
gradlew clean build -x test -x integTest distZip
I cannot say exactly where you could find some similitude between my source code and the one of these forks/projects but here are my favorite/inspiration forks/projects:
@michelole who created a pull request in these two forks with a stress test that made my office process to crash every times! I don't know him but my first commit was when I was able to build my things with his stress test on!!
JODConverter (Java OpenDocument Converter) automates document conversions using LibreOffice or OpenOffice.org.
The previous home for this project is at Google Code, including some wiki pages.