Create and Upload Test Framework as a Library
Explore how to create a distribution-ready Selenium test automation framework library using Gradle. Learn to generate JAR files with source and Javadoc, then upload the framework to a Maven repository for reuse across teams and projects.
We'll cover the following...
We'll cover the following...
Below is a guide to create a distribution RELEASE version of the automation library.
For demonstration, we will be using Gradle.
Tasks to be added in build.gradle #
plugins {
id 'java'
}
group = 'com.educative.core-automation'
version = ...