Search Gradle plugins

com.oldguy.gradle.sqlcipher-openssl-build

Automated builds of OpenSSL and SqlCipher, 64 bit only, for Windows and Linux build hosts. Multiple target hosts including Android, VStudio, mingw, Linux.

https://github.com/skolson/sqlcipher-openssl-build

Sources: https://github.com/skolson/sqlcipher-openssl-build.git

Version 0.1.1

Created 12 November 2020.

Automated builds of OpenSSL and SqlCipher, 64 bit only, for Windows and Linux build hosts. Multiple target hosts including Android, VStudio, mingw, Linux.

Using the plugins DSL:

plugins {
  id("com.oldguy.gradle.sqlcipher-openssl-build") version "0.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.oldguy.gradle:GradleSqlCipher:0.1.1")
  }
}

apply(plugin = "com.oldguy.gradle.sqlcipher-openssl-build")

Using the plugins DSL:

plugins {
  id "com.oldguy.gradle.sqlcipher-openssl-build" version "0.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.oldguy.gradle:GradleSqlCipher:0.1.1"
  }
}

apply plugin: "com.oldguy.gradle.sqlcipher-openssl-build"

Learn how to apply plugins to subprojects