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.hpe-idol:find:24.4.0'
}
dependencies {
implementation("com.github.hpe-idol:find:24.4.0")
}
<dependency>
<groupId>com.github.hpe-idol</groupId>
<artifactId>find</artifactId>
<version>24.4.0</version>
</dependency>
libraryDependencies += "com.github.hpe-idol" % "find" % "24.4.0"
:dependencies [[com.github.hpe-idol/find "24.4.0"]]
OpenText Find is an end user search interface for OpenText IDOL
If you are an OpenText IDOL customer, Find is available to you in the OpenText Big Data Download Center
Questions about building, running, and configuring Find, plus many more subjects, are all covered on the GitHub Wiki
Yes.
(c) Copyright 2014-2023 OpenText or one of its affiliates.
Licensed under the MIT License (the "License"); you may not use this project except in compliance with the License.
The only warranties for products and services of OpenText and its affiliates and licensors ("OpenText") are as may be set forth in the express warranty statements accompanying such products and services. Nothing herein should be construed as constituting an additional warranty. OpenText shall not be liable for technical or editorial errors or omissions contained herein. The information contained herein is subject to change without notice.