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.2.0

Created 17 August 2021.

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.2.0"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects