Skip to content

Commit

Permalink
Merge pull request #353 from Adyen/develop
Browse files Browse the repository at this point in the history
Release 4.0.0-beta01
  • Loading branch information
jreij authored Mar 3, 2021
2 parents 85c483c + 4966643 commit e6981df
Show file tree
Hide file tree
Showing 656 changed files with 7,200 additions and 7,391 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/publish_docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Publish Docs

# Every time we merge to the main branch we publish the docs.
on:
push:
branches: [ main ]
workflow_dispatch:

jobs:

publish-to-github-pages:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Generate Dokka HTML documentation
run: ./gradlew dokkaHtmlMultiModule

- name: Deploy GitHub Pages
uses: JamesIves/[email protected]
with:
BRANCH: gh-pages
FOLDER: build/docs/
16 changes: 8 additions & 8 deletions 3ds2/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,17 @@
* Created by caiof on 8/2/2019.
*/

plugins {
id 'com.android.library'
id 'kotlin-android'
}

// Maven artifact
ext.mavenArtifactId = "3ds2"
ext.mavenArtifactName = "Adyen checkout 3DS2 component"
ext.mavenArtifactDescription = "Adyen Checkout 3DS2 component client for Adyen's Checkout API."

apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply from: "../config/gradle/sharedTasks.gradle"

android {
compileSdkVersion compile_sdk_version
Expand All @@ -24,6 +28,7 @@ android {
versionName version_name

testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
consumerProguardFiles "consumer-rules.pro"
}

compileOptions {
Expand All @@ -43,13 +48,8 @@ dependencies {
androidTestImplementation "androidx.test.espresso:espresso-core:$espresso_version"

// Checkout
api project(':base-v3')
api project(':components-core')

// Dependencies
api "com.adyen.threeds:adyen-3ds2:$adyen3ds2_version"
}

// This sharedTasks.gradle script is applied at the end of this build.gradle script,
// since javadocs.gradle script is dependent on android.compileSdkVersion property,
// which is set on the android block above.
apply from: "../config/gradle/sharedTasks.gradle"
Empty file added 3ds2/consumer-rules.pro
Empty file.
Loading

0 comments on commit e6981df

Please sign in to comment.