Content. Development Tools 2(63)
|
|
|
- Emma Doyle
- 10 years ago
- Views:
Transcription
1 Development Tools
2 Content Project management and build, Maven Version control, Git Code coverage, JaCoCo Profiling, NetBeans Static Analyzer, NetBeans Continuous integration, Hudson Development Tools 2(63)
3 Project Management and Build With Maven Maven Home page: Tutorial, user guide and reference manual: Development Tools 3(63)
4 Maven, Content Why do we need a build tool? What is a project management tool? Maven architecture Pom file Using Maven in NetBeans Development Tools 4(63)
5 Why do we need a build tool? All actions (compile, deploy, run, create documentation, etc.) must be well-defined and reproducible. We need to store commands, switches, command line arguments, environment variables (like classpath), etc. All IDEs use a build tool. Configured via IDE dialogs instead of editing the build tool's script text files. NetBeans, and many other IDEs, use Ant for building. Development Tools 5(63)
6 Maven vs Ant An ant file is like a program, you specify what to do, when to do it and where (in which directory) the used files are found. With maven you only specify what to do, e.g., compile, not how to do it. Many common tasks, like compiling, are done by default, you do not even need to specify them. As a result, a maven script becomes shorter and easier to understand than an ant script. In particular, the NetBeans ant scripts are very long and complex. Development Tools 6(63)
7 Maven vs Ant (Cont'd) Ant forces you to manage all files yourself. Manually download all third-party jars your code depends on and place them in correct directory. Often very cumbersome and time-consuming. Maven defines your project's directory structure and manages all files in the project. Just specify the dependencies and maven downloads needed jars and uses them as required. Development Tools 7(63)
8 What is a project management tool? Maven not only builds the project. Also defines project directory structure, which tasks to perform and in what order. Development Tools 8(63)
9 Maven Philosophy Maven defines project directory structure. Always the same, no configuration needed. Maven defines what to do and in which order. Always the same, no configuration needed. User only defines a unique project name, package format (jar, war...) and dependencies (third-party products used). Much more configuration is of course possible. Development Tools 9(63)
10 Lifecycles, Phases and Goals Maven projects consist of lifecycles, which are divided in phases, which are divided in goals. There are three lifecycles: default, clean and site. Default lifecycle creates the application. Clean lifecycle removes all files generated by maven. Site lifecycle generates a web site with project documentation. Development Tools 10(63)
11 Major Phases in Default Lifecycle process-resources, Copy resources directory into destination directory. compile, Compile the source code. process-test-resources, Copy resources directory into the test destination directory. test-compile, Compile the test source code. test, Run tests using a suitable unit testing framework. package, Package compiled code in JAR (or other). install, Install the package into the local repository. deploy, Copy the package to the remote repository. Development Tools 11(63)
12 Clean and Site lifecycle These lifecycles have only one important phase each. Clean lifecycle has clean phase. Site lifecycle has site phase. Development Tools 12(63)
13 Execution To run maven, you specify a phase. Phases in the lifecycle of the specified phase are executed in order. The lifecycle starts from the beginning and stops after the specified phase. Development Tools 13(63)
14 What Happens in Each Phase? Each phase executes a set of goals. The packaging type decides which goals belong to which phase. Additional goals can be added manually. A goal is actually a piece of Java code, which is packaged in a plugin. One plugin can define many goals Development Tools 14(63)
15 Typical Goals The jar and war packaging types use (at least) the following goals. Phase process-resources plugin:goal resources:resources compile process-test-resources test-compile test package install deploy compiler:compile resources:testresources compiler:testcompile surefire:test jar:jar or war:war install:install deploy:deploy Development Tools 15(63)
16 Packages are Stored in Repositories Maven stores all packaged products (mainly jars) in repositories. Enables Maven to handle all dependencies since needed jars can be downloaded from repositories where they are stored. Promotes code reuse since local repositories can be used to share jars between projects. There is a default central repository and a local repository will be created. Other repositories must be specified as a dependency. Development Tools 16(63)
17 Project Object Model A Maven project is described in a Project Object Model file, pom.xml. The pom describes, at least, a unique name for the product and which dependencies it has (that is, which third-party products it uses). All POMs inherit a parent POM. If the parent is not specified it inherits the default POM. The used POM, including inherited data is shown with the command mvn help:effective-pom In NetBeans, open the POM and click Effective. Development Tools 17(63)
18 POM Generated by NetBeans groupid, artifactid and version together defines a unique name for the created archive. packaging decides the archive format for the product. name is the project's display name. It is used mainly in generated documentation. <groupid>se.kth.iv1201</groupid> <artifactid>myproject</artifactid> <version>1.0-snapshot</version> <packaging>war</packaging> <name>myproject</name> Development Tools 18(63)
19 POM Generated by NetBeans (Cont'd) A dependency defines a package our product uses. scope decides when the included package should be available. Default is compile, which means it is always available. Here we have specified provided, which means it will not be available at runtime (since it is provided by the server). <dependencies> <dependency> <groupid>javax</groupid> <artifactid>javaee-web-api</artifactid> <version>7.0</version> <scope>provided</scope> </dependency> </dependencies> Development Tools 19(63)
20 POM Generated by NetBeans (Cont'd) <plugins> <plugin> <groupid>org.apache.maven.plugins</groupid> <artifactid>maven-compiler-plugin</artifactid> <version>3.1</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> </plugins> It is not required to specify plugins. Here, the compiler plugin is specified because we want to configure it (to use JDK1.7 for Java files and class files). Development Tools 20(63)
21 Using Maven in NetBeans To create a Maven project you should choose Maven in the Categories list. Choose correct type of project in the Projects list. Development Tools 21(63)
22 Using Maven in NetBeans (Cont'd) You can update the POM by editing project properties. In particular, The Actions category allows you to configure the items on the right-click menu of the project. It is also possible to manually edit the POM. Development Tools 22(63)
23 Version Control With Git Git Home page: Tutorial, book and reference manual: Development Tools 23(63)
24 Git, Content Why do we need version control? Git architecture Important commands Using Git in NetBeans Development Tools 24(63)
25 Why Do We Need a Version Control System (VCS)? An unlimited number of people may edit the same files at the same time. The VCS records concurrent edits and helps resolve conflicts. No extra work to share or upload files. Files are committed to a shared repository. Revert to previous versions if something fails. The VCS stores a history with all states of all files. Stable versions can be tagged. A particular snapshot of the entire repository can be named. Different branches of the same code base can be maintained without duplicated code. Shared parts of files are not duplicated. Development Tools 25(63)
26 Different Version Control Systems CVS (1986) was the system that made version control popular. Still used, quite easy to learn, has some serious drawbacks. Subversion, SVN (2000) is probably the most used system. Used by for example SourceForge, Apache, Google Code. Git (2005) is becoming rapidly more adopted. Faster than CVS and SVN, no central repository. Mercurial, Bazaar and Monotone are other examples. All are distributed, like Git but unlike CVS and SVN. Development Tools 26(63)
27 Git is a Distributed Version Control System, DVCS All clients fully mirror the entire repository. Development Tools 27(63)
28 Git Stores Files, Not File Updates Git stores all content of all files at every commit. Stores only a link to last version if a file is not updated. This means that nearly all operations are local and also that it is possible to work offline. Git almost only adds data, it very seldom deletes. Nothing is lost. Development Tools 28(63)
29 The Git directory is the file repository, including metadata like tags and versions. The working directory is where you edit the files. The staging area is a file (in the git directory) that tells what will be in the next commit. The daily workflow is edit, stage, commit. First you must (once) create the repository and check out files. Three States Development Tools 29(63)
30 Create a New Repository Without IDE, type git init in the project's root directory Each project will have its own repository. Using NetBeans you right-click on the project and choose Versioning> Initialize Git Repository..., the proposed repository location is almost always OK. Development Tools 30(63)
31 Add Files to the New Repository Without IDE, add files with the add command, which accepts wildcards, e.g., git add *.java In NetBeans, all files in the project are added when the Git repository is created. To add files manually, right-click the file (or directory) and choose Git> Add. To commit the added files to the repository without using an IDE, type git commit. To commit in NetBeans, right-click the project and choose Git> Commit... Development Tools 31(63)
32 Push to a Remote Repository To share files you need a remote, empty, repository. Can be hosted for free at for example github.com. To push to the remote directory using NetBeans, right-click the project and choose Git> Remote> Push Development Tools 32(63)
33 Push to a Remote Repository (Cont'd) Then specify the location of your remote repository. Development Tools 33(63)
34 Push to a Remote Repository (Cont'd) Finally, specify that the local master shall be pushed to the remote master. Development Tools 34(63)
35 Use an Existing Remote Repository Other team members can now download contents of the created repository. To do that, choose the menu item Team> Git> Clone... Specify remote repository, remote branch and local directory in the dialogs that follow. Development Tools 35(63)
36 Git Daily Workflow Now that all team members have the same remote repository, the workflow will be as follows. Edit/add/delete files. Commit changes to local repository. In NetBeans, right click the project and choose Git> Commit. Note that this both stages and commits all changes. To do this at the command prompt type either git commit -a or git add and then git commit. Push/pull to/from remote repository. In NetBeans, right-click the project and choose Git> Remote> Push.../Pull... Development Tools 36(63)
37 There is Much More... This was only a tiny part of Git's functionality. Git provides a lot of help to branch, tag and merge snapshots. A good source for further inspiration is the Git online book at Development Tools 37(63)
38 Code Coverage With JaCoCo JaCoCo Home Page: Documentation: Development Tools 38(63)
39 JaCoCo, Content What is a Code Coverage Tool? JaCoCo Basics Development Tools 39(63)
40 What is a Code Coverage Tool? Records which parts of the program have been executed during a test and generates a report of the coverage. Visualizes how complete the tests are. It is normally not meaningful to strive for 100% coverage, getters and setters may be omitted from the test. We shall, however, make sure all important parts of the code are tested. Development Tools 40(63)
41 JaCoCo Basics Add this configuration to the POM to enable JaCoCo. <plugin> <groupid>org.jacoco</groupid> <artifactid>jacoco-maven-plugin</artifactid> <version> </version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>prepare-package</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> Development Tools 41(63)
42 JaCoCo Basics JaCoCo is included in NetBeans. Right-click the project and choose Code Coverage. Make sure Collect and Display Code Coverage is checked. To generate the code coverage report, choose Show Report... Development Tools 42(63)
43 JaCoCo Basics (Cont'd) Initially there is nothing to report, click Run All Tests to generate a report. For this to work, you must have created tests. Development Tools 43(63)
44 JaCoCo Basics (Cont'd) If you open a Java source file you will see the executed lines marked in green and those not executed in pink. Development Tools 44(63)
45 Profiling With NetBeans Development Tools 45(63)
46 Profiling, Content Why Profiling? How to Profile Using NetBeans. Development Tools 46(63)
47 Why Profiling? A profiler reports memory usage, CPU time, thread state and other information about program execution. Report can be per package, per class, per method, etc. Either updated live as a running total or a snapshot at a specific time. This is very important if you want to optimize your code. Never optimize without knowing what and where is the problem. Development Tools 47(63)
48 How to Profile Using NetBeans NetBeans comes with a bundled profiler. Before profiling the JDK must be calibrated, the profiler must know how long time different Java operations, e.g., method call, takes. In NetBeans, choose the menu item Profile Advanced Commands Run Profiler Calibration Switch off CPU frequency scaling when doing this. Only needed once per JDK. Development Tools 48(63)
49 How to Profile (Cont'd) Right-click the project and choose Profile to display the dialog box above. To the left you can choose to monitor CPU, memory or threads. Development Tools 49(63)
50 How to Profile (Cont'd) The profiler is configured in the main area. Choose sampled or instrumented profiling depending on how exact results you need. Select which classes to profile, preferably only project classes. Development Tools 50(63)
51 A Sample Profiler Session Development Tools 51(63)
52 Static Analyzing With NetBeans Development Tools 52(63)
53 Static Analyzing, Content Why Static Analyzer? How to Use NetBeans' Static Analyzer. Development Tools 53(63)
54 Why Do Static Analysis? Static analysis means the code is analyzed without executing the program. A static analyzer checks for coding mistakes. It can be for example bugs, unneccessary code or badly formatted code. Like the compiler, such a tool helps find coding errors. In particular, since a static analyzer checks coding style, many of the misstakes it finds will not be found by executing the program. Development Tools 54(63)
55 Static Analysis With NetBeans Choose Source Inspect... from the menu to start the static analyzer. Choose which analyzes to perform. In the example below, all analyzers will be executed. Development Tools 55(63)
56 Static Analysis With NetBeans (Cont'd) Here, the analyzer found missing javadoc and an if statement that can be rewritten as below. Development Tools 56(63)
57 Continuous Integration With Hudson Hudson Home Page: Documentation, including online book: Development Tools 57(63)
58 Continuous Integration, Content What is Continuous Integration? An Introduction to the Hudson Continuous Integration Server. Development Tools 58(63)
59 What is Continuous Integration (CI)? A software development practice where all developers frequently integrate new code with existing code. Each integration is verified by an automated build, to detect integration errors as quickly as possible. The automated build includes tests, code coverage reports, repository updates, etc. Development Tools 59(63)
60 What is a CI Server? A continuous integration (CI) server manages all parts included in a build. Using a CI server all team members perform exactly the same tasks on each submit. While developing, team members perform all tests locally, in the IDE. Immediately when a piece of code is finished, it is submitted to the CI server. The CI server runs all checks on the entire codebase, publishes the result, updates the code repository and deploys the new version. Development Tools 60(63)
61 Hudson CI Server The Hudson CI server can manage all tools and perform all tasks covered in this presentation, and many more. A Hudson plugin is available for NetBeans. The plugin is only for communication with the Hudson server. Hudson itself is installed separately. The image below shows a possible configuration of the Hudson plugin. Development Tools 61(63)
62 Make Hudson Build the Project Right-click the new Hudson instance (local in this example) and choose New Build... to show the New Continuous Build Dialog. (upper image) Right-click the new build and choose Start Job to start the build. (lower image) Again right-click the build and choose Open in Browser to show the result. Development Tools 62(63)
63 Build Result Hudson displays a lot of information about to the build. We can see for example Test result (no failures) Compiler warnings (none) Static analysis results Code coverage reports Repository status Built modules (one stable) Development Tools 63(63)
Build management & Continuous integration. with Maven & Hudson
Build management & Continuous integration with Maven & Hudson About me Tim te Beek [email protected] Computer science student Bioinformatics Research Support Overview Build automation with Maven Repository
Maven or how to automate java builds, tests and version management with open source tools
Maven or how to automate java builds, tests and version management with open source tools Erik Putrycz Software Engineer, Apption Software [email protected] Outlook What is Maven Maven Concepts and
Sonatype CLM for Maven. Sonatype CLM for Maven
Sonatype CLM for Maven i Sonatype CLM for Maven Sonatype CLM for Maven ii Contents 1 Introduction 1 2 Creating a Component Index 3 2.1 Excluding Module Information Files in Continuous Integration Tools...........
Hudson configuration manual
Hudson configuration manual 1 Chapter 1 What is Hudson? Hudson is a powerful and widely used open source continuous integration server providing development teams with a reliable way to monitor changes
Sonatype CLM Enforcement Points - Continuous Integration (CI) Sonatype CLM Enforcement Points - Continuous Integration (CI)
Sonatype CLM Enforcement Points - Continuous Integration (CI) i Sonatype CLM Enforcement Points - Continuous Integration (CI) Sonatype CLM Enforcement Points - Continuous Integration (CI) ii Contents 1
Software project management. and. Maven
Software project management and Maven Problem area Large software projects usually contain tens or even hundreds of projects/modules Will become messy and incomprehensible ibl if the projects don t adhere
Software project management. and. Maven
Software project management and Maven Problem area Large software projects usually contain tens or even hundreds of projects/modules Will become messy if the projects don t adhere to some common principles
Hands on exercise for
Hands on exercise for João Miguel Pereira 2011 0 Prerequisites, assumptions and notes Have Maven 2 installed in your computer Have Eclipse installed in your computer (Recommended: Indigo Version) I m assuming
Introducing Xcode Source Control
APPENDIX A Introducing Xcode Source Control What You ll Learn in This Appendix: u The source control features offered in Xcode u The language of source control systems u How to connect to remote Subversion
Beginning with SubclipseSVN
Version 2 July 2007 Beginning with SubclipseSVN A user guide to begin using the Subclipse for source code management on the CropForge collaborative software development site. Copyright International Rice
Source Control Systems
Source Control Systems SVN, Git, GitHub SoftUni Team Technical Trainers Software University http://softuni.bg Table of Contents 1. Software Configuration Management (SCM) 2. Version Control Systems: Philosophy
Software configuration management
Software Engineering Theory Software configuration management Lena Buffoni/ Kristian Sandahl Department of Computer and Information Science 2015-09-30 2 Maintenance Requirements System Design (Architecture,
Continuous Integration
Continuous Integration Collaborative development issues Checkout of a shared version of software ( mainline ) Creation of personal working copies of developers Software development: modification of personal
Introduction to Programming Tools. Anjana & Shankar September,2010
Introduction to Programming Tools Anjana & Shankar September,2010 Contents Essentials tooling concepts in S/W development Build system Version Control System Testing Tools Continuous Integration Issue
Continuous integration in OSGi projects using Maven (v:0.1) Sergio Blanco Diez
Continuous integration in OSGi projects using Maven (v:0.1) Sergio Blanco Diez December 1, 2009 Contents 1 Introduction 2 2 Maven 4 2.1 What is Maven?..................................... 4 2.2 How does
CPSC 491. Today: Source code control. Source Code (Version) Control. Exercise: g., no git, subversion, cvs, etc.)
Today: Source code control CPSC 491 Source Code (Version) Control Exercise: 1. Pretend like you don t have a version control system (e. g., no git, subversion, cvs, etc.) 2. How would you manage your source
Jenkins on Windows with StreamBase
Jenkins on Windows with StreamBase Using a Continuous Integration (CI) process and server to perform frequent application building, packaging, and automated testing is such a good idea that it s now a
Meister Going Beyond Maven
Meister Going Beyond Maven A technical whitepaper comparing OpenMake Meister and Apache Maven OpenMake Software 312.440.9545 800.359.8049 Winners of the 2009 Jolt Award Introduction There are many similarities
Version control. HEAD is the name of the latest revision in the repository. It can be used in subversion rather than the latest revision number.
Version control Version control is a powerful tool for many kinds of work done over a period of time, including writing papers and theses as well as writing code. This session gives a introduction to a
Version Control with. Ben Morgan
Version Control with Ben Morgan Developer Workflow Log what we did: Add foo support Edit Sources Add Files Compile and Test Logbook ======= 1. Initial version Logbook ======= 1. Initial version 2. Remove
Continuous Integration Multi-Stage Builds for Quality Assurance
Continuous Integration Multi-Stage Builds for Quality Assurance Dr. Beat Fluri Comerge AG ABOUT MSc ETH in Computer Science Dr. Inform. UZH, s.e.a.l. group Over 8 years of experience in object-oriented
Continuous Integration The Full Monty Artifactory and Gradle. Yoav Landman & Frederic Simon
Continuous Integration The Full Monty Artifactory and Gradle Yoav Landman & Frederic Simon About us Yoav Landman Creator of Artifactory, JFrog s CTO Frederic Simon JFrog s Chief Architect 10+ years experience
Builder User Guide. Version 6.0.1. Visual Rules Suite - Builder. Bosch Software Innovations
Visual Rules Suite - Builder Builder User Guide Version 6.0.1 Bosch Software Innovations Americas: Bosch Software Innovations Corp. 161 N. Clark Street Suite 3500 Chicago, Illinois 60601/USA Tel. +1 312
Jenkins Continuous Build System. Jesse Bowes CSCI-5828 Spring 2012
Jenkins Continuous Build System Jesse Bowes CSCI-5828 Spring 2012 Executive summary Continuous integration systems are a vital part of any Agile team because they help enforce the ideals of Agile development
Software infrastructure for Java development projects
Tools that can optimize your development process Software infrastructure for Java development projects Presentation plan Software Development Lifecycle Tools What tools exist? Where can tools help? Practical
Practicing Continuous Delivery using Hudson. Winston Prakash Oracle Corporation
Practicing Continuous Delivery using Hudson Winston Prakash Oracle Corporation Development Lifecycle Dev Dev QA Ops DevOps QA Ops Typical turn around time is 6 months to 1 year Sprint cycle is typically
DAVE Usage with SVN. Presentation and Tutorial v 2.0. May, 2014
DAVE Usage with SVN Presentation and Tutorial v 2.0 May, 2014 Required DAVE Version Required DAVE version: v 3.1.6 or higher (recommend to use the most latest version, as of Feb 28, 2014, v 3.1.10) Required
Version Control with Git. Dylan Nugent
Version Control with Git Dylan Nugent Agenda What is Version Control? (and why use it?) What is Git? (And why Git?) How Git Works (in theory) Setting up Git (surviving the CLI) The basics of Git (Just
Developer Workshop 2015. Marc Dumontier McMaster/OSCAR-EMR
Developer Workshop 2015 Marc Dumontier McMaster/OSCAR-EMR Agenda Code Submission 101 Infrastructure Tools Developing OSCAR Code Submission: Process OSCAR EMR Sourceforge http://www.sourceforge.net/projects/oscarmcmaster
Using Git for Project Management with µvision
MDK Version 5 Tutorial AN279, Spring 2015, V 1.0 Abstract Teamwork is the basis of many modern microcontroller development projects. Often teams are distributed all over the world and over various time
<Insert Picture Here> Introducing Hudson. Winston Prakash. Click to edit Master subtitle style
Introducing Hudson Click to edit Master subtitle style Winston Prakash What is Hudson? Hudson is an open source continuous integration (CI) server. A CI server can do various tasks
Version Control. Version Control
Version Control CS440 Introduction to Software Engineering 2013, 2015 John Bell Based on slides prepared by Jason Leigh for CS 340 University of Illinois at Chicago Version Control Incredibly important
Maven 2 in the real world
Object Oriented and beyond Maven 2 in the real world Carlo Bonamico [email protected] JUG Genova Maven2: love it or hate it? Widespread build platform used by many open source and commercial projects
GECKO Software. Introducing FACTORY SCHEMES. Adaptable software factory Patterns
Introducing FACTORY SCHEMES Adaptable software factory Patterns FACTORY SCHEMES 3 Standard Edition Community & Enterprise Key Benefits and Features GECKO Software http://consulting.bygecko.com Email: [email protected]
In depth study - Dev teams tooling
In depth study - Dev teams tooling Max Åberg mat09mab@ Jacob Burenstam Linder ada09jbu@ Desired feedback Structure of paper Problem description Inconsistencies git story explanation 1 Introduction Hypotheses
Networks and Services
Networks and Services Dr. Mohamed Abdelwahab Saleh IET-Networks, GUC Fall 2015 TOC 1 Infrastructure as a Service 2 Platform as a Service 3 Software as a Service Infrastructure as a Service Definition Infrastructure
Software Quality Exercise 2
Software Quality Exercise 2 Testing and Debugging 1 Information 1.1 Dates Release: 12.03.2012 12.15pm Deadline: 19.03.2012 12.15pm Discussion: 26.03.2012 1.2 Formalities Please submit your solution as
Contents. Apache Log4j. What is logging. Disadvantages 15/01/2013. What are the advantages of logging? Enterprise Systems Log4j and Maven
Enterprise Systems Log4j and Maven Behzad Bordbar Lecture 4 Log4j and slf4j What is logging Advantages Architecture Maven What is maven Terminology Demo Contents 1 2 Apache Log4j This will be a brief lecture:
Integrating your Maven Build and Tomcat Deployment
Integrating your Maven Build and Tomcat Deployment Maven Publishing Plugin for Tcat Server MuleSource and the MuleSource logo are trademarks of MuleSource Inc. in the United States and/or other countries.
Jenkins: The Definitive Guide
Jenkins: The Definitive Guide John Ferguson Smart O'REILLY8 Beijing Cambridge Farnham Koln Sebastopol Tokyo Table of Contents Foreword xiii Preface xv 1. Introducing Jenkins 1 Introduction 1 Continuous
Software Delivery Integration and Source Code Management. for Suppliers
Software Delivery Integration and Source Code Management for Suppliers Document Information Author Version 1.0 Version Date 8/6/2012 Status final Approved by Reference not applicable Subversion_for_suppliers.doc
CISC 275: Introduction to Software Engineering. Lab 5: Introduction to Revision Control with. Charlie Greenbacker University of Delaware Fall 2011
CISC 275: Introduction to Software Engineering Lab 5: Introduction to Revision Control with Charlie Greenbacker University of Delaware Fall 2011 Overview Revision Control Systems in general Subversion
Software Configuration Management and Continuous Integration
1 Chapter 1 Software Configuration Management and Continuous Integration Matthias Molitor, 1856389 Reaching and maintaining a high quality level is essential for each today s software project. To accomplish
SOFTWARE DEVELOPMENT BASICS SED
SOFTWARE DEVELOPMENT BASICS SED Centre de recherche Lille Nord Europe 16 DÉCEMBRE 2011 SUMMARY 1. Inria Forge 2. Build Process of Software 3. Software Testing 4. Continuous Integration 16 DECEMBRE 2011-2
Version Control Tutorial using TortoiseSVN and. TortoiseGit
Version Control Tutorial using TortoiseSVN and TortoiseGit Christopher J. Roy, Associate Professor Virginia Tech, [email protected] This tutorial can be found at: www.aoe.vt.edu/people/webpages/cjroy/software-resources/tortoise-svn-git-tutorial.pdf
Version Control! Scenarios, Working with Git!
Version Control! Scenarios, Working with Git!! Scenario 1! You finished the assignment at home! VC 2 Scenario 1b! You finished the assignment at home! You get to York to submit and realize you did not
<Insert Picture Here> What's New in NetBeans IDE 7.2
Slide 1 What's New in NetBeans IDE 7.2 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated
JavaScript Applications for the Enterprise: From Empty Folders to Managed Deployments. George Bochenek Randy Jones
JavaScript Applications for the Enterprise: From Empty Folders to Managed Deployments George Bochenek Randy Jones Enterprise Development What is it? Source Control Project Organization Unit Testing Continuous
MATLAB @ Work. MATLAB Source Control Using Git
MATLAB @ Work MATLAB Source Control Using Git Richard Johnson Using source control is a key practice for professional programmers. If you have ever broken a program with a lot of editing changes, you can
How To Run A Hello World On Android 4.3.3 (Jdk) On A Microsoft Ds.Io (Windows) Or Android 2.7.3 Or Android 3.5.3 On A Pc Or Android 4 (
Developing Android applications in Windows Below you will find information about the components needed for developing Android applications and other (optional) software needed to connect to the institution
Version Control with Git. Linux Users Group UT Arlington. Rohit Rawat [email protected]
Version Control with Git Linux Users Group UT Arlington Rohit Rawat [email protected] Need for Version Control Better than manually storing backups of older versions Easier to keep everyone updated
vs. Web Site: www.soebes.com Blog: blog.soebes.com Email: [email protected] Dipl.Ing.(FH) Karl Heinz Marbaise
Project Organization vs. Build- and Configuration Management Web Site: www.soebes.com Blog: blog.soebes.com Email: [email protected] Dipl.Ing.(FH) Karl Heinz Marbaise Agenda 1.Initialization 2.Specification
Automated performance testing using Maven & JMeter. George Barnett, Atlassian Software Systems @georgebarnett
Automated performance testing using Maven & JMeter George Barnett, Atlassian Software Systems @georgebarnett Create controllable JMeter tests Configure Maven to create a repeatable cycle Run this build
Continuous Integration and Delivery at NSIDC
National Snow and Ice Data Center Supporting Cryospheric Research Since 1976 Continuous Integration and Delivery at NSIDC Julia Collins National Snow and Ice Data Center Cooperative Institute for Research
Revision control systems (RCS) and
Revision control systems (RCS) and Subversion Problem area Software projects with multiple developers need to coordinate and synchronize the source code Approaches to version control Work on same computer
Builder User Guide. Version 5.4. Visual Rules Suite - Builder. Bosch Software Innovations
Visual Rules Suite - Builder Builder User Guide Version 5.4 Bosch Software Innovations Americas: Bosch Software Innovations Corp. 161 N. Clark Street Suite 3500 Chicago, Illinois 60601/USA Tel. +1 312
Continuous Integration. CSC 440: Software Engineering Slide #1
Continuous Integration CSC 440: Software Engineering Slide #1 Topics 1. Continuous integration 2. Configuration management 3. Types of version control 1. None 2. Lock-Modify-Unlock 3. Copy-Modify-Merge
Test Automation Integration with Test Management QAComplete
Test Automation Integration with Test Management QAComplete This User's Guide walks you through configuring and using your automated tests with QAComplete's Test Management module SmartBear Software Release
Version Control for Computational Economists: An Introduction
Version Control for Computational Economists: An Introduction Jake C. Torcasso April 3, 2014 Starting Point A collection of files on your computer Changes to files and new files over time Interested in
BlueJ Teamwork Tutorial
BlueJ Teamwork Tutorial Version 2.0 for BlueJ Version 2.5.0 (and 2.2.x) Bruce Quig, Davin McCall School of Engineering & IT, Deakin University Contents 1 OVERVIEW... 3 2 SETTING UP A REPOSITORY... 3 3
Configuration Manual Yahoo Cloud System Benchmark (YCSB) 24-Mar-14 SEECS-NUST Faria Mehak
Configuration Manual Yahoo Cloud System Benchmark (YCSB) 24-Mar-14 SEECS-NUST Faria Mehak Table of Contents 1 Introduction... 3 1.1 Purpose... 3 1.2 Product Information... 3 2 Installation Manual... 3
Beginners guide to continuous integration. Gilles QUERRET Riverside Software
Beginners guide to continuous integration Gilles QUERRET Riverside Software About the speaker Working with Progress and Java since 10 years Started Riverside Software 7 years ago Based in Lyon, France
Module 11 Setting up Customization Environment
Module 11 Setting up Customization Environment By Kitti Upariphutthiphong Technical Consultant, ecosoft [email protected] ADempiere ERP 1 2 Module Objectives Downloading ADempiere Source Code Setup Development
Version Control with Git
Version Control with Git Claudius Coenen License: CC-BY-4.0 What We're Not Talking About Conceived by Linus Torvalds around 2005 Distributed Version Control vs. Central Version Control Why git is better
Advanced Computing Tools for Applied Research Chapter 4. Version control
Advanced Computing Tools for Applied Research Jaime Boal Martín-Larrauri Rafael Palacios Hielscher Academic year 2014/2015 1 Version control fundamentals 2 What you probably do now Manually save copies
NetBeans IDE Field Guide
NetBeans IDE Field Guide Copyright 2005 Sun Microsystems, Inc. All rights reserved. Table of Contents Introduction to J2EE Development in NetBeans IDE...1 Configuring the IDE for J2EE Development...2 Getting
Tutorial 5: Developing Java applications
Tutorial 5: Developing Java applications p. 1 Tutorial 5: Developing Java applications Georgios Gousios [email protected] Department of Management Science and Technology Athens University of Economics and
Version control with GIT
AGV, IIT Kharagpur September 13, 2012 Outline 1 Version control system What is version control Why version control 2 Introducing GIT What is GIT? 3 Using GIT Using GIT for AGV at IIT KGP Help and Tips
Source Control Guide: Git
MadCap Software Source Control Guide: Git Flare 11.1 Copyright 2015 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this
Coding in Industry. David Berry Director of Engineering Qualcomm Cambridge Ltd
Coding in Industry David Berry Director of Engineering Qualcomm Cambridge Ltd Agenda Potted history Basic Tools of the Trade Test Driven Development Code Quality Performance Open Source 2 Potted History
Version Control with Subversion
Version Control with Subversion Introduction Wouldn t you like to have a time machine? Software developers already have one! it is called version control Version control (aka Revision Control System or
Git Basics. Christopher Simpkins [email protected]. Chris Simpkins (Georgia Tech) CS 2340 Objects and Design CS 1331 1 / 22
Git Basics Christopher Simpkins [email protected] Chris Simpkins (Georgia Tech) CS 2340 Objects and Design CS 1331 1 / 22 Version Control Systems Records changes to files over time Allows you to
Continuous Integration
LT-QAI Torch Talk: Continuous Integration Marc @dfki.de DFKI Language Technology Lab, Saarbrücken and Berlin, Germany What do I mean by Torch Talk? Idea to increase the frequency of
Software Development In the Cloud Cloud management and ALM
Software Development In the Cloud Cloud management and ALM First published in Dr. Dobb's Journal, February 2009: http://www.ddj.com/development-tools/212900736 Nick Gulrajani is a Senior Solutions Architect
Continuous integration for databases using
Continuous integration for databases using Red Wie Sie Gate die tools Microsoft SQL An overview Continuous integration for databases using Red Gate tools An overview Contents Why continuous integration?
Subversion Integration for Visual Studio
Subversion Integration for Visual Studio VisualSVN Team VisualSVN: Subversion Integration for Visual Studio VisualSVN Team Copyright 2005-2008 VisualSVN Team Windows is a registered trademark of Microsoft
Version Control Systems: SVN and GIT. How do VCS support SW development teams?
Version Control Systems: SVN and GIT How do VCS support SW development teams? CS 435/535 The College of William and Mary Agile manifesto We are uncovering better ways of developing software by doing it
Download and Installation Instructions. Android SDK and Android Development Tools (ADT) Microsoft Windows
Download and Installation Instructions for Android SDK and Android Development Tools (ADT) on Microsoft Windows Updated September, 2013 This document will describe how to download and install the Android
How To Use An Orgsync With Anorgfusion Middleware
Oracle Fusion Middleware Developing Applications Using Continuous Integration 12c (12.1.2) E26997-02 February 2014 Describes how to build automation and continuous integration for applications that you
Automatic promotion and versioning with Oracle Data Integrator 12c
Automatic promotion and versioning with Oracle Data Integrator 12c Jérôme FRANÇOISSE Rittman Mead United Kingdom Keywords: Oracle Data Integrator, ODI, Lifecycle, export, import, smart export, smart import,
Maven2 Reference. Invoking Maven General Syntax: Prints help debugging output, very useful to diagnose. Creating a new Project (jar) Example:
Maven2 Reference Invoking Maven General Syntax: mvn plugin:target [-Doption1 -Doption2 dots] mvn help mvn -X... Prints help debugging output, very useful to diagnose Creating a new Project (jar) mvn archetype:create
SOA-14: Continuous Integration in SOA Projects Andreas Gies
Distributed Team Building Principal Architect http://www.fusesource.com http://open-source-adventures.blogspot.com About the Author Principal Architect PROGRESS - Open Source Center of Competence Degree
Version Uncontrolled! : How to Manage Your Version Control
Version Uncontrolled! : How to Manage Your Version Control Harold Dost III, Raastech ABSTRACT Are you constantly wondering what is in your production environment? Do you have any doubts about what code
Sitecore InDesign Connector 1.1
Sitecore Adaptive Print Studio Sitecore InDesign Connector 1.1 - User Manual, October 2, 2012 Sitecore InDesign Connector 1.1 User Manual Creating InDesign Documents with Sitecore CMS User Manual Page
Lab 0 (Setting up your Development Environment) Week 1
ECE155: Engineering Design with Embedded Systems Winter 2013 Lab 0 (Setting up your Development Environment) Week 1 Prepared by Kirill Morozov version 1.2 1 Objectives In this lab, you ll familiarize yourself
Version Control Systems
Version Control Systems ESA 2015/2016 Adam Belloum [email protected] Material Prepared by Eelco Schatborn Today IntroducGon to Version Control Systems Centralized Version Control Systems RCS CVS SVN
Upping the game. Improving your software development process
Upping the game Improving your software development process John Ferguson Smart Principle Consultant Wakaleo Consulting Email: [email protected] Web: http://www.wakaleo.com Twitter: wakaleo Presentation
Continuous Integration on System z
Continuous Integration on System z A Proof of Concept at Generali Deutschland Informatik Services GmbH Enterprise Modernization GSE Frankfurt, 14th October 2013 Markus Holzem, GDIS-AS mailto: [email protected]
Hudson Continous Integration Server. Stefan Saasen, [email protected]
Hudson Continous Integration Server Stefan Saasen, [email protected] Continous Integration Software development practice Members of a team integrate their work frequently Each integration is verified by
Setting Up Your Android Development Environment. For Mac OS X (10.6.8) v1.0. By GoNorthWest. 3 April 2012
Setting Up Your Android Development Environment For Mac OS X (10.6.8) v1.0 By GoNorthWest 3 April 2012 Setting up the Android development environment can be a bit well challenging if you don t have all
Download and Installation Instructions. Android SDK and Android Development Tools (ADT)
Download and Installation Instructions for Android SDK and Android Development Tools (ADT) on Mac OS X Updated October, 2012 This document will describe how to download and install the Android SDK and
How to set up SQL Source Control. The short guide for evaluators
How to set up SQL Source Control The short guide for evaluators Content Introduction Team Foundation Server & Subversion setup Git setup Setup without a source control system Making your first commit Committing
Version Control with Svn, Git and git-svn. Kate Hedstrom ARSC, UAF
1 Version Control with Svn, Git and git-svn Kate Hedstrom ARSC, UAF 2 Version Control Software System for managing source files For groups of people working on the same code When you need to get back last
Installing Ruby on Windows XP
Table of Contents 1 Installation...2 1.1 Installing Ruby... 2 1.1.1 Downloading...2 1.1.2 Installing Ruby...2 1.1.3 Testing Ruby Installation...6 1.2 Installing Ruby DevKit... 7 1.3 Installing Ruby Gems...
Click Start > Control Panel > System icon to open System Properties dialog box. Click Advanced > Environment Variables.
Configure Java environment on Windows After installing Java Development Kit on Windows, you may still need to do some configuration to get Java ready for compiling and executing Java programs. The following
IKAN ALM Architecture. Closing the Gap Enterprise-wide Application Lifecycle Management
IKAN ALM Architecture Closing the Gap Enterprise-wide Application Lifecycle Management Table of contents IKAN ALM SERVER Architecture...4 IKAN ALM AGENT Architecture...6 Interaction between the IKAN ALM
