Skip to content
This repository was archived by the owner on Dec 13, 2023. It is now read-only.

crossbrowsertesting/ci-common

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

java-plugins-common (gradle project)

  • contains common classes for CI Plugins in Java
  • made specifically for the Continuous Integration plugins but might be useful elsewhere also

To include in your project

normal java project

easiest method is to import the jar file located within the "build/libs" directory

maven project

  • for a maven project you can add it as a dependency in your pom.xml file
  • the jar is publicly hosted with JitPack.io

Just add this to your pom.xml

<repositories>
  <repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
  </repository>
</repositories>
<dependencies>
  <dependency>
    <groupId>com.github.crossbrowsertesting</groupId>
    <artifactId>ci-common</artifactId>
    <version>0.25-SNAPSHOT</version>
  </dependency>
</dependencies>

The version will need to match the release tag

gradle project

  • for a gradle project you can add it as a dependency in your build.gradle file
  • the jar is publicly hosted with JitPack.io

Just add this to your build.gradle

repositories {
    maven { url "https://jitpack.io" }
}
dependencies {
    compile group: 'com.github.crossbrowsertesting', name: 'ci-common', version:'1.0'
}

For Development

  • Java >= 8

To bundle the jar

gradlew jar

the jar file will be in the "build/libs" directory

To release the jar on GitHub

gradlew githubRelease

About

common classes for continuous integration plugins

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages