SlideShare una empresa de Scribd logo
1 de 35
Descargar para leer sin conexión
Deploy
Flex with
Apache Ant
Swiss Flash User Group (sfug)

Zürich | 20. Januar 2009
Hello my name is
Andreas Lorenz

dctrl - interactive media gmbh
1
Ant Overview
The basics
Without Ant
With Ant
What is Ant?
1.   An XML based custom build tool
2.   Open source & well documented
3.   Standardized & widely used
4.   Implemented in Java
5.   Platform independent
Ant Goals
Create a continuous integration based
build process:

 • Centralized
 • Automated
 • Self-Testing
Usage
1. Don‘t do work you‘ve already done
2. Do alot of tasks once
3. Prevent Mistakes
What Ant can do
1.   Build swf
2.   Do UnitTest‘s
3.   Generate ASDoc‘s & SWC Files
4.   Build template files
5.   Combine Flex projects, modules, assets
6.   Copy, zip, ftp, svn
7.   Source distribution
2
Ant Basics
Creating Issues
Installing Ant
1. http://ant.apache.org
2. Bundled with IDE‘s like Eclipse
Directory structure
/ project
     / ant
     / build
     / dist
     / html-template
     / src
3
Ant Structure
Creating Issues
Files
1. Build file «build.xml»
2. Main property file «build.properties»
3. Local property file «build.mac.properties»
build.properties
1.   Separate data from the process
2.   Configuration file
3.   Re-usability
4.   Not under SVN
build.properties
Referenced by ${var}

# default pathes
main.path = dctrl/project
src.path     = ${ main.path}/ src
build.xml
1.   One «build.xml» file per project
2.   Each build use targets
3.   Each target use tasks
4.   Each task has properties
build.xml structure
Example:

<project name=quot;examplequot; default=quot;helloquot; basedir=quot;.quot;>
  <property name=quot;string.varquot; value=quot;Hello Worldquot;/>
  <target name=quot;helloquot;>
      <echo message=quot;${string.var}quot; />
  </target>
</project>
Build output
<project>
Root element

4 attributes:
  1. name          -   projectname (optional)
  2. basedir       -   reference (optional)
  3. default       -   target (required)
  4. description   -   info (optional)
<project>
Example:

<project name=”hello” default=”main” basedir=”.”
    description=“standard build“>
<property>
1.   User defined variables
2.   Case sensitive
3.   Defined in build.xml or build.properties
4.   Reference by ${var}
5.   System properties ${os.name}
6.   Built-in properties ${ant.java.version}
<property>
Example:

<property file=quot;build.propertiesquot; />
<property name=quot;compile.debugquot; value=quot;truequot;/>

<echo>The main path is ${ main.path }</echo>
<echo>The debug state is ${ compile.debug }</echo>
<target>
1.   A <project> has one or more <target>
2.   Wrapper for a sequences of actions (tasks)
3.   Can depend on other <target>
4.   Executes only once
<target>
5 attributes:
  1. name          -   target reference
  2. depends       -   other targets (optional)
  3. if            -   conditional (optional)
  4. unless        -   converse of if (optional)
  5. description   -   info (optional)
<target>
Example:
<target name=quot;jarquot; depends=quot;compilequot;
    description=quot;create a Jar file for the applicationquot;>

<target name=quot;jarquot; if=quot;gui_readyquot;>

<target name=quot;jarquot; unless=quot;gui_readyquot;>
<task>
1.   Ant built-in Java commands (tasks)
2.   Additional tasks like flexTasks (JAR files)
3.   Custom Java commands
4.   Independent executed code
5.   Wrapped in a <target>
6.   Can have multiple attributes
<task>
Example:

<target name=quot;compilequot; depends=quot;initquot;>
    <!- - Compile the java code - ->
    <javac srcdir=quot;${src}quot; destdir=quot;${build}quot;/>
</target>
<task>
Ant built-in tasks:

Ant         Exec      GZip       Replace   Unzip
AntCall     ExecOn    Jar        Style     Zip
Available   Fail      Mail       Tar
Copy        Filter    Mkdir      Taskdef
Delete      Get       Move       Touch
Echo        GUnzip    Property   Tstamp
<task>
Optional tasks (must install JAR files):

FTP
SVN
Mail
FlexTasks
Events
Ant generates events as it executes:

1.   Build started/finished
2.   Target Build started/finished
3.   Task Build started/finished
4.   Message logged
4
A Typical Project
Examples
5
Some more infos
before you start your own
Resources
Homepage:                http://ant.apache.org
User Manual:             http://jakarta.apache.org/ant/manual/index.html
Wiki:                    http://wiki.apache.org/ant/FrontPage
FAQ:                     http://ant.apache.org/faq.html
Books:                   http://sourceforge.net/projects/antbook
Apache Ant Resources:    http://jakarta.apache.org/ant/resources.html
Apache Ant 1.5 Manual:   http://jakarta.apache.org/ant/manual/index.html
Flex Ant Tasks:          http://labs.adobe.com/wiki/index.php/Flex_Ant_Tasks
Thanks!
al@dctrl.ch , www.dctrl.ch


www.slideshare.net/dctrl/deploy-flex-with-apache-ant-presentation

Más contenido relacionado

La actualidad más candente

Django for Beginners
Django for BeginnersDjango for Beginners
Django for BeginnersJason Davies
 
Patternlab: Atomic Design & Living Styleguides (Refresh Hilo)
Patternlab: Atomic Design & Living Styleguides (Refresh Hilo)Patternlab: Atomic Design & Living Styleguides (Refresh Hilo)
Patternlab: Atomic Design & Living Styleguides (Refresh Hilo)Jason Kalawe
 
Django Introduction & Tutorial
Django Introduction & TutorialDjango Introduction & Tutorial
Django Introduction & Tutorial之宇 趙
 
Watir Presentation Sumanth Krishna. A
Watir Presentation   Sumanth Krishna. AWatir Presentation   Sumanth Krishna. A
Watir Presentation Sumanth Krishna. ASumanth krishna
 
API Design & Security in django
API Design & Security in djangoAPI Design & Security in django
API Design & Security in djangoTareque Hossain
 
Making your API easy to document with Spring REST Docs
Making your API easy to document with Spring REST DocsMaking your API easy to document with Spring REST Docs
Making your API easy to document with Spring REST DocsNAVER / MusicPlatform
 
Django Framework Overview forNon-Python Developers
Django Framework Overview forNon-Python DevelopersDjango Framework Overview forNon-Python Developers
Django Framework Overview forNon-Python DevelopersRosario Renga
 
Building RESTful APIs
Building RESTful APIsBuilding RESTful APIs
Building RESTful APIsSilota Inc.
 
Django - Python MVC Framework
Django - Python MVC FrameworkDjango - Python MVC Framework
Django - Python MVC FrameworkBala Kumar
 
Introduction to Apache Ant
Introduction to Apache AntIntroduction to Apache Ant
Introduction to Apache AntShih-Hsiang Lin
 
Test-Driven JavaScript Development (JavaZone 2010)
Test-Driven JavaScript Development (JavaZone 2010)Test-Driven JavaScript Development (JavaZone 2010)
Test-Driven JavaScript Development (JavaZone 2010)Christian Johansen
 
Django and Mongoengine
Django and MongoengineDjango and Mongoengine
Django and Mongoengineaustinpublic
 
HTTP demystified for web developers
HTTP demystified for web developersHTTP demystified for web developers
HTTP demystified for web developersPeter Hilton
 
Keyword Driven Framework using WATIR
Keyword Driven Framework using WATIRKeyword Driven Framework using WATIR
Keyword Driven Framework using WATIRNivetha Padmanaban
 
Django rest framework tips and tricks
Django rest framework   tips and tricksDjango rest framework   tips and tricks
Django rest framework tips and tricksxordoquy
 
Realtime Apps with Django
Realtime Apps with DjangoRealtime Apps with Django
Realtime Apps with DjangoRenyi Khor
 

La actualidad más candente (20)

Django for Beginners
Django for BeginnersDjango for Beginners
Django for Beginners
 
Patternlab: Atomic Design & Living Styleguides (Refresh Hilo)
Patternlab: Atomic Design & Living Styleguides (Refresh Hilo)Patternlab: Atomic Design & Living Styleguides (Refresh Hilo)
Patternlab: Atomic Design & Living Styleguides (Refresh Hilo)
 
Django Introduction & Tutorial
Django Introduction & TutorialDjango Introduction & Tutorial
Django Introduction & Tutorial
 
Django by rj
Django by rjDjango by rj
Django by rj
 
Django Best Practices
Django Best PracticesDjango Best Practices
Django Best Practices
 
Watir Presentation Sumanth Krishna. A
Watir Presentation   Sumanth Krishna. AWatir Presentation   Sumanth Krishna. A
Watir Presentation Sumanth Krishna. A
 
API Design & Security in django
API Design & Security in djangoAPI Design & Security in django
API Design & Security in django
 
Free django
Free djangoFree django
Free django
 
Making your API easy to document with Spring REST Docs
Making your API easy to document with Spring REST DocsMaking your API easy to document with Spring REST Docs
Making your API easy to document with Spring REST Docs
 
Django Framework Overview forNon-Python Developers
Django Framework Overview forNon-Python DevelopersDjango Framework Overview forNon-Python Developers
Django Framework Overview forNon-Python Developers
 
Building RESTful APIs
Building RESTful APIsBuilding RESTful APIs
Building RESTful APIs
 
Django - Python MVC Framework
Django - Python MVC FrameworkDjango - Python MVC Framework
Django - Python MVC Framework
 
Django
DjangoDjango
Django
 
Introduction to Apache Ant
Introduction to Apache AntIntroduction to Apache Ant
Introduction to Apache Ant
 
Test-Driven JavaScript Development (JavaZone 2010)
Test-Driven JavaScript Development (JavaZone 2010)Test-Driven JavaScript Development (JavaZone 2010)
Test-Driven JavaScript Development (JavaZone 2010)
 
Django and Mongoengine
Django and MongoengineDjango and Mongoengine
Django and Mongoengine
 
HTTP demystified for web developers
HTTP demystified for web developersHTTP demystified for web developers
HTTP demystified for web developers
 
Keyword Driven Framework using WATIR
Keyword Driven Framework using WATIRKeyword Driven Framework using WATIR
Keyword Driven Framework using WATIR
 
Django rest framework tips and tricks
Django rest framework   tips and tricksDjango rest framework   tips and tricks
Django rest framework tips and tricks
 
Realtime Apps with Django
Realtime Apps with DjangoRealtime Apps with Django
Realtime Apps with Django
 

Destacado

Enabling Access to All - USID 2009 Paper Presentation on Accessibility
Enabling Access to All - USID 2009 Paper Presentation on AccessibilityEnabling Access to All - USID 2009 Paper Presentation on Accessibility
Enabling Access to All - USID 2009 Paper Presentation on AccessibilitySharvari Adesh
 
Mining Branch-Time Scenarios From Execution Logs
Mining Branch-Time Scenarios From Execution LogsMining Branch-Time Scenarios From Execution Logs
Mining Branch-Time Scenarios From Execution LogsDirk Fahland
 
Gestin de cont.
Gestin de cont.Gestin de cont.
Gestin de cont.abestrada
 
Recursos Energéticos
Recursos EnergéticosRecursos Energéticos
Recursos Energéticosgrupoc1
 
Introduction to Knowledge Management
Introduction to Knowledge ManagementIntroduction to Knowledge Management
Introduction to Knowledge ManagementAtif Shaikh
 

Destacado (14)

Sin título 1
Sin título 1Sin título 1
Sin título 1
 
pop star
pop starpop star
pop star
 
Enabling Access to All - USID 2009 Paper Presentation on Accessibility
Enabling Access to All - USID 2009 Paper Presentation on AccessibilityEnabling Access to All - USID 2009 Paper Presentation on Accessibility
Enabling Access to All - USID 2009 Paper Presentation on Accessibility
 
Red alumnos
Red alumnosRed alumnos
Red alumnos
 
Mining Branch-Time Scenarios From Execution Logs
Mining Branch-Time Scenarios From Execution LogsMining Branch-Time Scenarios From Execution Logs
Mining Branch-Time Scenarios From Execution Logs
 
Wordpress
WordpressWordpress
Wordpress
 
Delicius
DeliciusDelicius
Delicius
 
Gestin de cont.
Gestin de cont.Gestin de cont.
Gestin de cont.
 
Reflexive exercises to get over impasse
Reflexive exercises to get over impasseReflexive exercises to get over impasse
Reflexive exercises to get over impasse
 
Rituals in psychotherapy
Rituals in psychotherapyRituals in psychotherapy
Rituals in psychotherapy
 
DR. Dimitri Kioses talks abour Sistemica
DR. Dimitri Kioses talks abour SistemicaDR. Dimitri Kioses talks abour Sistemica
DR. Dimitri Kioses talks abour Sistemica
 
Recursos Energéticos
Recursos EnergéticosRecursos Energéticos
Recursos Energéticos
 
Introduction to Knowledge Management
Introduction to Knowledge ManagementIntroduction to Knowledge Management
Introduction to Knowledge Management
 
Hr Analytics
Hr AnalyticsHr Analytics
Hr Analytics
 

Similar a Deploy Flex with Apache Ant

Ant - Another Neat Tool
Ant - Another Neat ToolAnt - Another Neat Tool
Ant - Another Neat ToolKanika2885
 
Introduction To Ant1
Introduction To  Ant1Introduction To  Ant1
Introduction To Ant1Rajesh Kumar
 
Introduction To Ant
Introduction To AntIntroduction To Ant
Introduction To AntRajesh Kumar
 
Phing - A PHP Build Tool (An Introduction)
Phing - A PHP Build Tool (An Introduction)Phing - A PHP Build Tool (An Introduction)
Phing - A PHP Build Tool (An Introduction)Michiel Rook
 
Maven 2.0 - Improve your build patterns
Maven 2.0 - Improve your build patternsMaven 2.0 - Improve your build patterns
Maven 2.0 - Improve your build patternselliando dias
 
introduction to galaxy
introduction to galaxyintroduction to galaxy
introduction to galaxydario borsotti
 
High Performance JavaScript 2011
High Performance JavaScript 2011High Performance JavaScript 2011
High Performance JavaScript 2011Nicholas Zakas
 
Selenium RC Automation testing
Selenium RC Automation testingSelenium RC Automation testing
Selenium RC Automation testingAnand Sharma
 
Modern JavaScript Programming
Modern JavaScript Programming Modern JavaScript Programming
Modern JavaScript Programming Wildan Maulana
 
Slides Aquarium Paris 2008
Slides Aquarium Paris 2008Slides Aquarium Paris 2008
Slides Aquarium Paris 2008julien.ponge
 
Jsf2 composite-components
Jsf2 composite-componentsJsf2 composite-components
Jsf2 composite-componentsvinaysbk
 

Similar a Deploy Flex with Apache Ant (20)

Apache ant
Apache antApache ant
Apache ant
 
Ant - Another Neat Tool
Ant - Another Neat ToolAnt - Another Neat Tool
Ant - Another Neat Tool
 
Demystifying Maven
Demystifying MavenDemystifying Maven
Demystifying Maven
 
Ant User Guide
Ant User GuideAnt User Guide
Ant User Guide
 
Ant
Ant Ant
Ant
 
Ext 0523
Ext 0523Ext 0523
Ext 0523
 
Introduction To Ant1
Introduction To  Ant1Introduction To  Ant1
Introduction To Ant1
 
Introduction To Ant
Introduction To AntIntroduction To Ant
Introduction To Ant
 
Phing - A PHP Build Tool (An Introduction)
Phing - A PHP Build Tool (An Introduction)Phing - A PHP Build Tool (An Introduction)
Phing - A PHP Build Tool (An Introduction)
 
Maven 2.0 - Improve your build patterns
Maven 2.0 - Improve your build patternsMaven 2.0 - Improve your build patterns
Maven 2.0 - Improve your build patterns
 
Ant Build Tool
Ant Build ToolAnt Build Tool
Ant Build Tool
 
introduction to galaxy
introduction to galaxyintroduction to galaxy
introduction to galaxy
 
High Performance JavaScript 2011
High Performance JavaScript 2011High Performance JavaScript 2011
High Performance JavaScript 2011
 
Selenium RC Automation testing
Selenium RC Automation testingSelenium RC Automation testing
Selenium RC Automation testing
 
Introduction To JSFL
Introduction To JSFLIntroduction To JSFL
Introduction To JSFL
 
Modern JavaScript Programming
Modern JavaScript Programming Modern JavaScript Programming
Modern JavaScript Programming
 
Ant tutorial
Ant tutorialAnt tutorial
Ant tutorial
 
Java ant tutorial
Java ant tutorialJava ant tutorial
Java ant tutorial
 
Slides Aquarium Paris 2008
Slides Aquarium Paris 2008Slides Aquarium Paris 2008
Slides Aquarium Paris 2008
 
Jsf2 composite-components
Jsf2 composite-componentsJsf2 composite-components
Jsf2 composite-components
 

Más de dctrl — studio for creativ technology (6)

Erfolgreiches E-Mail Marketing
Erfolgreiches E-Mail MarketingErfolgreiches E-Mail Marketing
Erfolgreiches E-Mail Marketing
 
dctrl Agency Profile
dctrl Agency Profiledctrl Agency Profile
dctrl Agency Profile
 
Powered by WordPress (German)
Powered by WordPress (German)Powered by WordPress (German)
Powered by WordPress (German)
 
Adobe AIR with Merapi Java and RoomWare Bluetooth
Adobe AIR with Merapi Java and RoomWare BluetoothAdobe AIR with Merapi Java and RoomWare Bluetooth
Adobe AIR with Merapi Java and RoomWare Bluetooth
 
Flash desktop application development with Screenweaver 3.1
Flash desktop application development with Screenweaver 3.1Flash desktop application development with Screenweaver 3.1
Flash desktop application development with Screenweaver 3.1
 
Flash Messenger for MusicStar Switzerland
Flash Messenger for MusicStar SwitzerlandFlash Messenger for MusicStar Switzerland
Flash Messenger for MusicStar Switzerland
 

Último

The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...Wes McKinney
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Scott Andery
 
Manual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance AuditManual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance AuditSkynet Technologies
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityIES VE
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentPim van der Noll
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demoHarshalMandlekar2
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...AliaaTarek5
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Hiroshi SHIBATA
 
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesAssure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesThousandEyes
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Strongerpanagenda
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfpanagenda
 

Último (20)

The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
 
Manual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance AuditManual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance Audit
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a reality
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demo
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024
 
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesAssure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
 

Deploy Flex with Apache Ant