SlideShare una empresa de Scribd logo
1 de 48
Descargar para leer sin conexión
Leveragin
g

Gradl
e

@ Netflix
February 2, 2021
Who am I?
Leveraging Gradle
 

@ Net
fl
ix
Roberto Pérez Alcole
a

Senior Software Enginee
r

Java Platform @ Netfli
x

rperezalcolea@netflix.com
@rpalcolea
JVM Buil
d

@ Netflix
Leveraging Gradl
e

@ Net
fl
ix
•Many repositories (~3.2k
)

•Binary integration (JARs
)

•Microservices with fat
client
s

•Hundreds of engineer
s

•Ivy + Ant in the past. Now
we use Gradle
!

•Java, Groovy, Scala, Kotlin,
Clojure
Leveraging Gradle @ Net
fl
ix
Builds per wee
k

Leveraging Gradl
e

@ Net
fl
ix
Artifact Publishin
g

Leveraging Gradl
e

@ Net
fl
ix
We publish ~9k artifacts per day
!
Consumers rely on latest releas
e

Leveraging Gradl
e

@ Net
fl
ix
JVM Buil
d

Problems
&

Challenge
s

@ Netflix
Leveraging Gradl
e

@ Net
fl
ix
Broken Build
s

•Add/upgrade dependencie
s

•Unaligned dependencie
s

•Dependencies with bugs or
security vulnerabilitie
s

•Gradle plugin is not compatibl
e

Leveraging Gradl
e

@ Net
fl
ix
Slow Build
s

•Dependency resolutio
n

•Plugins and custom tasks
impacting con
fi
guration tim
e

•Using excludes on dependencies
declaration
s

•Lack of parallelization
 

Leveraging Gradl
e

@ Net
fl
ix
Metadat
a

•Bad Ivy or Maven metadata can
lead to a poisoned dependency
graph
.

•Dynamic dependencie
s

•Bad scope
s

•Dependency declaration for
shaded librarie
s

Leveraging Gradl
e

@ Net
fl
ix
Reproducible Build
s

•Same binary dependencie
s

•File orde
r

•Avoid preserving timestamp
s

Leveraging Gradl
e

@ Net
fl
ix
Packagin
g

•Make sure that a java application
can be deployed with easiness in
our infrastructure
 

•VMs on EC
2

•Docker containers in Titu
s

Leveraging Gradl
e

@ Net
fl
ix
Plugin Ecosyste
m

•Third party plugin compatibility with
new versions of Gradl
e

•Strong opinions from external and
internal plugins (forcing
dependencies
)

•Upgrade well known plugins for
existing build
s

Leveraging Gradl
e

@ Net
fl
ix
Fast evolution of
Gradl
e

•Deprecated APIs and the need to
migrate folks to use the new one
s

•It isn’t only about the DSL but also
for plugin authors at Net
fl
i
x

•Introduce new features and keep
up with Gradle release
s

Leveraging Gradl
e

@ Net
fl
ix
Leveraging Gradl
e

@ Net
fl
ix
Publishers lack
 

visibility
• Who will I break
?

• Who is consuming my library
?

• Who is using this API that I want to
change?
What ca
n

We do?
Leveraging Gradl
e

@ Net
fl
ix
Nebula t
o

The rescue
Leveraging Gradl
e

@ Net
fl
ix
Leveraging Gradl
e

@ Net
fl
ix
What is Nebula
?

•Gradle plugins and internal custom
distribution built to eliminate
boilerplate build logic and provide
sane convention
s

•Dependency managemen
t

•Publishin
g

•OS Packagin
g

•Lintin
g

•Dependency lockin
g

•And many others
!
This plugin provides general
purpose rule types on top of
Gradle resolution strategies and
module metadata, allowing
rules to be published,
versioned, shared between
projects, and optionally
dependency locked.
•Duplicate classes caused by
changes to group or artifact ids,
without renaming package
s

•Duplicate classes caused by
bundle dependencies, which do not
con
fl
ict resolve against the 'regular'
dependencies for that library
 

•Lack of version alignment between
libraries, where version alignment
is needed for compatibility
 

•Ensuring a minimum version of a
library
Resolution Rules
 

Plugin
Leveraging Gradl
e

@ Net
fl
ix
Leveraging Gradl
e

@ Net
fl
ix
https://github.com/rpalcolea/leveraging-gradle-at-netflix-madrid-gug-2021/tree/main/resolution-rules-plugin-example
https://github.com/nebula-plugins/gradle-resolution-rules-plugin
https://github.com/nebula-plugins/gradle-resolution-rules
Resolution Rules Plugin
Leveraging Gradl
e

@ Net
fl
ix
https://github.com/rpalcolea/leveraging-gradle-at-netflix-madrid-gug-2021/tree/main/release-example
https://github.com/nebula-plugins/nebula-publishing-plugin
Publishing Plugin
Leveraging Gradl
e

@ Net
fl
ix
https://github.com/rpalcolea/leveraging-gradle-at-netflix-madrid-gug-2021/tree/main/lint-example
https://github.com/nebula-plugins/gradle-lint-plugin
Lint Plugin
Leveraging Gradl
e

@ Net
fl
ix
https://github.com/rpalcolea/leveraging-gradle-at-netflix-madrid-gug-2021/tree/main/ospackaging-example
https://github.com/nebula-plugins/gradle-ospackage-plugin
OSPackage Plugin
Leveraging Gradl
e

@ Net
fl
ix
How do we
distribute
Nebula?
Leveraging Gradl
e

@ Net
fl
ix
Gradle custo
m

Distributions
Leveraging Gradle
 

@ Net
fl
ix
• Apply internal and OSS plugin
s

• Custom init script
s

• Configure repositorie
s

• Configure status schemes
(snapshot, candidate, release
)

• Enable metrics collectio
n

• Enable/disable feature
s

• Default gradle.properties
Leveraging Gradl
e

@ Net
fl
ix
https://github.com/rpalcolea/leveraging-gradle-at-netflix-madrid-gug-2021/tree/main/custom-distribution-example
Custom Gradle distribution
How do we
validate new
versions of
Nebula?
Leveraging Gradl
e

@ Net
fl
ix
•Leverage Niagara to clone
every Nebula based project at
Gradle on its own container and
build it using the new version of
Nebula
.

•Gradle nightly release
s

•Gradle candidate releases
 

•Leverage Niagara to clone our
OSS plugins and test them
against nightly releases of
Gradle.
Acceptance Testin
g

Leveraging Gradl
e

@ Net
fl
ix
Leveraging Gradl
e

@ Net
fl
ix
Nebula acceptance tests
How do we
upgrade
projects?
Leveraging Gradl
e

@ Net
fl
ix
•Automatic Pull requests
:

•Dependency lock
s

•Nebula wrappe
r

•Lint rule
s

Managed Sourc
e

Evolving Continuous Integration at Netflix
 

(Elise McCallum) | 2019
Leveraging Gradl
e

@ Net
fl
ix
Faster
builds
Leveraging Gradl
e

@ Net
fl
ix
•Build Cach
e

•Shared Read-only Dependency
Cach
e

•Build Scan
s

•Gradle Enterpris
e

•Parallel execution
Gradle Feature
s

Leveraging Gradl
e

@ Net
fl
ix
Leveraging Gradl
e

@ Net
fl
ix
https://github.com/rpalcolea/leveraging-gradle-at-netflix-madrid-gug-2021/tree/main/shared-dependency-cache-
example
Shared Dependency Cache
Leveraging Gradl
e

@ Net
fl
ix
Gradle Enterprise (values)
Leveraging Gradl
e

@ Net
fl
ix
Gradle Enterprise (Tags)
Did
someone
said
visibility?
Leveraging Gradl
e

@ Net
fl
ix
•Collection of services and UIs
that enable artifact observability
and the ability to effect change
in the Net
fl
ix ecosystem
.

•High level goal is to decrease
time and effort needed to
propagate change through the
Net
fl
ix ecosyste
m

•Useful for Library deprecation
and Security Vulnerabilitie
s

Astri
d

Leveraging Gradl
e

@ Net
fl
ix
Astrid - Artifact Managemen
t

Leveraging Gradl
e

@ Net
fl
ix
Astrid - Artifact Managemen
t

Leveraging Gradl
e

@ Net
fl
ix
Astrid - Campaign
s

Leveraging Gradl
e

@ Net
fl
ix
What’s next
for us?
Leveraging Gradl
e

@ Net
fl
ix
•Distributed Testin
g

•Java Toolchain
s

•Gradle Metadata Adoptio
n

•Con
fi
guration Cache
Gradle Features in
 

Our Horizo
n

Leveraging Gradl
e

@ Net
fl
ix
Thank

You.
Q&A
rperezalcolea@netflix.com
@rpalcolea
https://github.com/rpalcolea

Más contenido relacionado

La actualidad más candente

Code Hosting: The Key to Autonomous, Self-Service Development
Code Hosting: The Key to Autonomous, Self-Service DevelopmentCode Hosting: The Key to Autonomous, Self-Service Development
Code Hosting: The Key to Autonomous, Self-Service Development
Rachel Maxwell
 

La actualidad más candente (20)

Architecting for Continuous Delivery
Architecting for Continuous DeliveryArchitecting for Continuous Delivery
Architecting for Continuous Delivery
 
Full Steam Ahead, R2DBC!
Full Steam Ahead, R2DBC!Full Steam Ahead, R2DBC!
Full Steam Ahead, R2DBC!
 
Weave GitOps Core Overview (Free GitOps Workshop)
Weave GitOps Core Overview (Free GitOps Workshop)Weave GitOps Core Overview (Free GitOps Workshop)
Weave GitOps Core Overview (Free GitOps Workshop)
 
Leveraging Gradle @ Netflix (Guadalajara JUG Feb 25, 2021)
Leveraging Gradle @ Netflix (Guadalajara JUG Feb 25, 2021)Leveraging Gradle @ Netflix (Guadalajara JUG Feb 25, 2021)
Leveraging Gradle @ Netflix (Guadalajara JUG Feb 25, 2021)
 
Delivering Quality at Speed with GitOps
Delivering Quality at Speed with GitOpsDelivering Quality at Speed with GitOps
Delivering Quality at Speed with GitOps
 
Gitops Hands On
Gitops Hands OnGitops Hands On
Gitops Hands On
 
GitOps - Operation By Pull Request
GitOps - Operation By Pull RequestGitOps - Operation By Pull Request
GitOps - Operation By Pull Request
 
Code Hosting: The Key to Autonomous, Self-Service Development
Code Hosting: The Key to Autonomous, Self-Service DevelopmentCode Hosting: The Key to Autonomous, Self-Service Development
Code Hosting: The Key to Autonomous, Self-Service Development
 
Journey Through Four Stages of Kubernetes Deployment Maturity
Journey Through Four Stages of Kubernetes Deployment MaturityJourney Through Four Stages of Kubernetes Deployment Maturity
Journey Through Four Stages of Kubernetes Deployment Maturity
 
Using the SDACK Architecture on Security Event Inspection
Using the SDACK Architecture on Security Event InspectionUsing the SDACK Architecture on Security Event Inspection
Using the SDACK Architecture on Security Event Inspection
 
Spinnaker Summit 2019: Where are we heading? The Future of Continuous Delivery
Spinnaker Summit 2019: Where are we heading? The Future of Continuous DeliverySpinnaker Summit 2019: Where are we heading? The Future of Continuous Delivery
Spinnaker Summit 2019: Where are we heading? The Future of Continuous Delivery
 
Hybrid and Multi-Cloud Strategies for Kubernetes with GitOps
Hybrid and Multi-Cloud Strategies for Kubernetes with GitOpsHybrid and Multi-Cloud Strategies for Kubernetes with GitOps
Hybrid and Multi-Cloud Strategies for Kubernetes with GitOps
 
GitOps, Driving NGN Operations Teams 211127 #kcdgt 2021
GitOps, Driving NGN Operations Teams 211127 #kcdgt 2021GitOps, Driving NGN Operations Teams 211127 #kcdgt 2021
GitOps, Driving NGN Operations Teams 211127 #kcdgt 2021
 
Software Supply Chains for DevOps @ InfoQ Live 2021
Software Supply Chains for DevOps @ InfoQ Live 2021Software Supply Chains for DevOps @ InfoQ Live 2021
Software Supply Chains for DevOps @ InfoQ Live 2021
 
Jenkins vs. AWS CodePipeline
Jenkins vs. AWS CodePipelineJenkins vs. AWS CodePipeline
Jenkins vs. AWS CodePipeline
 
Elevate Your Enterprise Python and R AI, ML Software Strategy with Anaconda T...
Elevate Your Enterprise Python and R AI, ML Software Strategy with Anaconda T...Elevate Your Enterprise Python and R AI, ML Software Strategy with Anaconda T...
Elevate Your Enterprise Python and R AI, ML Software Strategy with Anaconda T...
 
From Monolith to K8s - Spring One 2020
From Monolith to K8s - Spring One 2020From Monolith to K8s - Spring One 2020
From Monolith to K8s - Spring One 2020
 
Spring Boot Loves K8s
Spring Boot Loves K8sSpring Boot Loves K8s
Spring Boot Loves K8s
 
Mihai Criveti - PyCon Ireland - Automate Everything
Mihai Criveti - PyCon Ireland - Automate EverythingMihai Criveti - PyCon Ireland - Automate Everything
Mihai Criveti - PyCon Ireland - Automate Everything
 
Speeding up your team with GitOps
Speeding up your team with GitOpsSpeeding up your team with GitOps
Speeding up your team with GitOps
 

Similar a Leveraging Gradle @ Netflix (Madrid GUG Feb 2, 2021)

Dependency Management at Scale
Dependency Management at ScaleDependency Management at Scale
Dependency Management at Scale
Roberto Pérez Alcolea
 
Dependency Management at Scale @ JConf Centroamérica 2020
Dependency Management at Scale @ JConf Centroamérica 2020Dependency Management at Scale @ JConf Centroamérica 2020
Dependency Management at Scale @ JConf Centroamérica 2020
Roberto Pérez Alcolea
 
Build your android app with gradle
Build your android app with gradleBuild your android app with gradle
Build your android app with gradle
Swain Loda
 
Google Tech Talk with Dr. Eric Brewer in Korea Apr.27.2015
Google Tech Talk with Dr. Eric Brewer in Korea Apr.27.2015Google Tech Talk with Dr. Eric Brewer in Korea Apr.27.2015
Google Tech Talk with Dr. Eric Brewer in Korea Apr.27.2015
Chris Jang
 
Introduction to Grails 2013
Introduction to Grails 2013Introduction to Grails 2013
Introduction to Grails 2013
Gavin Hogan
 

Similar a Leveraging Gradle @ Netflix (Madrid GUG Feb 2, 2021) (20)

Dependency Management at Scale
Dependency Management at ScaleDependency Management at Scale
Dependency Management at Scale
 
Dependency Management at Scale @ JConf Centroamérica 2020
Dependency Management at Scale @ JConf Centroamérica 2020Dependency Management at Scale @ JConf Centroamérica 2020
Dependency Management at Scale @ JConf Centroamérica 2020
 
Keeping your build tool updated in a multi repository world
Keeping your build tool updated in a multi repository worldKeeping your build tool updated in a multi repository world
Keeping your build tool updated in a multi repository world
 
FASTEN: Scaling static analyses to ecosystem, presented at FOSDEM 2020 in Bru...
FASTEN: Scaling static analyses to ecosystem, presented at FOSDEM 2020 in Bru...FASTEN: Scaling static analyses to ecosystem, presented at FOSDEM 2020 in Bru...
FASTEN: Scaling static analyses to ecosystem, presented at FOSDEM 2020 in Bru...
 
Gradle.Enemy at the gates
Gradle.Enemy at the gatesGradle.Enemy at the gates
Gradle.Enemy at the gates
 
GraphQL-ify your APIs - Devoxx UK 2021
 GraphQL-ify your APIs - Devoxx UK 2021 GraphQL-ify your APIs - Devoxx UK 2021
GraphQL-ify your APIs - Devoxx UK 2021
 
Build your android app with gradle
Build your android app with gradleBuild your android app with gradle
Build your android app with gradle
 
Secure Your Open Source Projects For Free
Secure Your Open Source Projects For FreeSecure Your Open Source Projects For Free
Secure Your Open Source Projects For Free
 
GraphQL-ify your APIs
GraphQL-ify your APIsGraphQL-ify your APIs
GraphQL-ify your APIs
 
GraalVM and Oracle's Documentation Trends.pdf
GraalVM and Oracle's Documentation Trends.pdfGraalVM and Oracle's Documentation Trends.pdf
GraalVM and Oracle's Documentation Trends.pdf
 
JUC Europe 2015: Continuous Integration and Distribution in the Cloud with DE...
JUC Europe 2015: Continuous Integration and Distribution in the Cloud with DE...JUC Europe 2015: Continuous Integration and Distribution in the Cloud with DE...
JUC Europe 2015: Continuous Integration and Distribution in the Cloud with DE...
 
Get started with AAR
Get started with AARGet started with AAR
Get started with AAR
 
Jenkins vs. AWS CodePipeline (AWS User Group Berlin)
Jenkins vs. AWS CodePipeline (AWS User Group Berlin)Jenkins vs. AWS CodePipeline (AWS User Group Berlin)
Jenkins vs. AWS CodePipeline (AWS User Group Berlin)
 
Gradle 2.breaking stereotypes.
Gradle 2.breaking stereotypes.Gradle 2.breaking stereotypes.
Gradle 2.breaking stereotypes.
 
Managing Changes to the Database Across the Project Life Cycle (presented by ...
Managing Changes to the Database Across the Project Life Cycle (presented by ...Managing Changes to the Database Across the Project Life Cycle (presented by ...
Managing Changes to the Database Across the Project Life Cycle (presented by ...
 
Managing changes to eZPublish Database
Managing changes to eZPublish DatabaseManaging changes to eZPublish Database
Managing changes to eZPublish Database
 
GitBucket: Open source self-hosting Git server built by Scala
GitBucket: Open source self-hosting Git server built by ScalaGitBucket: Open source self-hosting Git server built by Scala
GitBucket: Open source self-hosting Git server built by Scala
 
Google Tech Talk with Dr. Eric Brewer in Korea Apr.27.2015
Google Tech Talk with Dr. Eric Brewer in Korea Apr.27.2015Google Tech Talk with Dr. Eric Brewer in Korea Apr.27.2015
Google Tech Talk with Dr. Eric Brewer in Korea Apr.27.2015
 
Introduction to Grails 2013
Introduction to Grails 2013Introduction to Grails 2013
Introduction to Grails 2013
 
Gradle Again
Gradle AgainGradle Again
Gradle Again
 

Más de Roberto Pérez Alcolea

Escaping Dependency Hell: A deep dive into Gradle's dependency management fea...
Escaping Dependency Hell: A deep dive into Gradle's dependency management fea...Escaping Dependency Hell: A deep dive into Gradle's dependency management fea...
Escaping Dependency Hell: A deep dive into Gradle's dependency management fea...
Roberto Pérez Alcolea
 
Dependency Management in a Complex World (JConf Chicago 2022)
Dependency Management in a Complex World (JConf Chicago 2022)Dependency Management in a Complex World (JConf Chicago 2022)
Dependency Management in a Complex World (JConf Chicago 2022)
Roberto Pérez Alcolea
 

Más de Roberto Pérez Alcolea (7)

Escaping Dependency Hell: A deep dive into Gradle's dependency management fea...
Escaping Dependency Hell: A deep dive into Gradle's dependency management fea...Escaping Dependency Hell: A deep dive into Gradle's dependency management fea...
Escaping Dependency Hell: A deep dive into Gradle's dependency management fea...
 
[DPE Summit] How Improving the Testing Experience Goes Beyond Quality: A Deve...
[DPE Summit] How Improving the Testing Experience Goes Beyond Quality: A Deve...[DPE Summit] How Improving the Testing Experience Goes Beyond Quality: A Deve...
[DPE Summit] How Improving the Testing Experience Goes Beyond Quality: A Deve...
 
DPE Summit - A More Integrated Build and CI to Accelerate Builds at Netflix
DPE Summit - A More Integrated Build and CI to Accelerate Builds at NetflixDPE Summit - A More Integrated Build and CI to Accelerate Builds at Netflix
DPE Summit - A More Integrated Build and CI to Accelerate Builds at Netflix
 
Dependency Management in a Complex World (JConf Chicago 2022)
Dependency Management in a Complex World (JConf Chicago 2022)Dependency Management in a Complex World (JConf Chicago 2022)
Dependency Management in a Complex World (JConf Chicago 2022)
 
GR8ConfUS 2018 - High Scalable Streaming Microservices with Kafka Streams
GR8ConfUS 2018 - High Scalable Streaming Microservices with Kafka StreamsGR8ConfUS 2018 - High Scalable Streaming Microservices with Kafka Streams
GR8ConfUS 2018 - High Scalable Streaming Microservices with Kafka Streams
 
GR8ConfUS 2018 - High performant in-memory datasets with Netflix H0110W
GR8ConfUS 2018 - High performant in-memory datasets with Netflix H0110WGR8ConfUS 2018 - High performant in-memory datasets with Netflix H0110W
GR8ConfUS 2018 - High performant in-memory datasets with Netflix H0110W
 
GR8ConfUS 2017 - Real Time Traffic Visualization with Vizceral and Hystrix
GR8ConfUS 2017 - Real Time Traffic Visualization with Vizceral and HystrixGR8ConfUS 2017 - Real Time Traffic Visualization with Vizceral and Hystrix
GR8ConfUS 2017 - Real Time Traffic Visualization with Vizceral and Hystrix
 

Último

Último (20)

WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open SourceWSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
 
WSO2Con2024 - Unleashing the Financial Potential of 13 Million People
WSO2Con2024 - Unleashing the Financial Potential of 13 Million PeopleWSO2Con2024 - Unleashing the Financial Potential of 13 Million People
WSO2Con2024 - Unleashing the Financial Potential of 13 Million People
 
WSO2CON 2024 - OSU & WSO2: A Decade Journey in Integration & Innovation
WSO2CON 2024 - OSU & WSO2: A Decade Journey in Integration & InnovationWSO2CON 2024 - OSU & WSO2: A Decade Journey in Integration & Innovation
WSO2CON 2024 - OSU & WSO2: A Decade Journey in Integration & Innovation
 
Novo Nordisk: When Knowledge Graphs meet LLMs
Novo Nordisk: When Knowledge Graphs meet LLMsNovo Nordisk: When Knowledge Graphs meet LLMs
Novo Nordisk: When Knowledge Graphs meet LLMs
 
Wired_2.0_CREATE YOUR ULTIMATE LEARNING ENVIRONMENT_JCON_16052024
Wired_2.0_CREATE YOUR ULTIMATE LEARNING ENVIRONMENT_JCON_16052024Wired_2.0_CREATE YOUR ULTIMATE LEARNING ENVIRONMENT_JCON_16052024
Wired_2.0_CREATE YOUR ULTIMATE LEARNING ENVIRONMENT_JCON_16052024
 
AzureNativeQumulo_HPC_Cloud_Native_Benchmarks.pdf
AzureNativeQumulo_HPC_Cloud_Native_Benchmarks.pdfAzureNativeQumulo_HPC_Cloud_Native_Benchmarks.pdf
AzureNativeQumulo_HPC_Cloud_Native_Benchmarks.pdf
 
WSO2CON 2024 - Building a Digital Government in Uganda
WSO2CON 2024 - Building a Digital Government in UgandaWSO2CON 2024 - Building a Digital Government in Uganda
WSO2CON 2024 - Building a Digital Government in Uganda
 
WSO2CON 2024 - IoT Needs CIAM: The Importance of Centralized IAM in a Growing...
WSO2CON 2024 - IoT Needs CIAM: The Importance of Centralized IAM in a Growing...WSO2CON 2024 - IoT Needs CIAM: The Importance of Centralized IAM in a Growing...
WSO2CON 2024 - IoT Needs CIAM: The Importance of Centralized IAM in a Growing...
 
WSO2CON 2024 Slides - Unlocking Value with AI
WSO2CON 2024 Slides - Unlocking Value with AIWSO2CON 2024 Slides - Unlocking Value with AI
WSO2CON 2024 Slides - Unlocking Value with AI
 
WSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go Platformless
 
WSO2Con2024 - Facilitating Broadband Switching Services for UK Telecoms Provi...
WSO2Con2024 - Facilitating Broadband Switching Services for UK Telecoms Provi...WSO2Con2024 - Facilitating Broadband Switching Services for UK Telecoms Provi...
WSO2Con2024 - Facilitating Broadband Switching Services for UK Telecoms Provi...
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
 
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
 
WSO2CON 2024 - Unlocking the Identity: Embracing CIAM 2.0 for a Competitive A...
WSO2CON 2024 - Unlocking the Identity: Embracing CIAM 2.0 for a Competitive A...WSO2CON 2024 - Unlocking the Identity: Embracing CIAM 2.0 for a Competitive A...
WSO2CON 2024 - Unlocking the Identity: Embracing CIAM 2.0 for a Competitive A...
 
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
 
WSO2Con2024 - Organization Management: The Revolution in B2B CIAM
WSO2Con2024 - Organization Management: The Revolution in B2B CIAMWSO2Con2024 - Organization Management: The Revolution in B2B CIAM
WSO2Con2024 - Organization Management: The Revolution in B2B CIAM
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?
 
WSO2Con2024 - Software Delivery in Hybrid Environments
WSO2Con2024 - Software Delivery in Hybrid EnvironmentsWSO2Con2024 - Software Delivery in Hybrid Environments
WSO2Con2024 - Software Delivery in Hybrid Environments
 
WSO2Con2024 - Hello Choreo Presentation - Kanchana
WSO2Con2024 - Hello Choreo Presentation - KanchanaWSO2Con2024 - Hello Choreo Presentation - Kanchana
WSO2Con2024 - Hello Choreo Presentation - Kanchana
 
WSO2CON 2024 - How CSI Piemonte Is Apifying the Public Administration
WSO2CON 2024 - How CSI Piemonte Is Apifying the Public AdministrationWSO2CON 2024 - How CSI Piemonte Is Apifying the Public Administration
WSO2CON 2024 - How CSI Piemonte Is Apifying the Public Administration
 

Leveraging Gradle @ Netflix (Madrid GUG Feb 2, 2021)