Skip to content

  • Top Certifications
  • Courses
  • Tutorials
  • Forum & Support
  • DevOps Tools
  • Slides
  • Update
  • Professional
  • anthillpro-vs-atlassian-bamboo
    Tools Comparison

    Anthillpro Comparison with Atlassian Bamboo – Continuous Integration Tools Review

    ByRajesh Kumar April 28, 2010November 19, 2021

    ANTHILLPRO COMPARISON WITH ATLASSIAN BAMBOO AnthillPro Vs Bamboo OR Difference between AnthillPro and Bamboo OR Last month i was discussing with Eric Minick from Anthillpro on Why Build Engineer should be go for AnthillPro instead of Bamboo and i found some interesting inputs which i am sharing below; Introduction Bamboo is a respectable team level…

    Read More Anthillpro Comparison with Atlassian Bamboo – Continuous Integration Tools ReviewContinue

  • perl-introduction
    Perl

    Introduction of Perl – Complete Overview

    ByRajesh Kumar April 26, 2010December 27, 2017

    What is Perl Perl is a programming language, It’s Object Oriented, simple to learn and very powerful. Perl stand for: “Practical Extraction and Reporting Language”. Perl is an Interpreted language, so you don’t have to compile it like you do Java, C, C++ etc. For fast development work, that’s a godsend. Perl is a versatile,…

    Read More Introduction of Perl – Complete OverviewContinue

  • ssh-with-cvs
    CVS

    How to configure and use SSH authentication system server CVS

    ByRajesh Kumar April 20, 2010December 27, 2017

    How to configure and use SSH authentication system server CVS cvs (Concurrent Version System) is a very popular version control tool. Although its function as Perforce, Subversion and other powerful, but because of its easy configuration, simple to use and the introduction of longer, so in all a kind of software project widely used. first…

    Read More How to configure and use SSH authentication system server CVSContinue

  • scm-interview-questions
    Interview Questions & Answers

    General SCM Interview Questions and Answer – SCM Job Interview Kit

    ByRajesh Kumar April 16, 2010February 4, 2020

      General SCM Interview Questions – SCM Job Interview Kit What do you think about configuration management? What do you understand about Change Management? branching methodologies and what currently theya re using it. Show with some example with pros and cons Concept of Merging and Why do we need? What do you think about build…

    Read More General SCM Interview Questions and Answer – SCM Job Interview KitContinue

  • unix-command-grep
    Linux

    Unix Command: Grep – Quick Reference – Pattern – Examples – Options

    ByRajesh Kumar April 16, 2010September 25, 2018

    Grep scans its input for a pattern, and can display the selected pattern, the line numbers of the filenames where the pattern occurs, The command uses the following syntax grep options pattern filesname(s) grep searches for pattern in one or more filenames. Example for Grep command: grep “sales” emp.lst grep “director” emp1.lst emp2.lst grep ‘jai…

    Read More Unix Command: Grep – Quick Reference – Pattern – Examples – OptionsContinue

  • shell-script-descriptive-interview-questions-sets
    Interview Questions & Answers

    Shell Bash Scripting Interview Questions and Answer – Part 1

    ByRajesh Kumar April 16, 2010December 22, 2022

    Interview Questions Sets : Shell Script Descriptive Questions Sets What is shell scripting? Shell scripting is used to program command line of an operating system. Shell Scripting is also used to program the shell which is the base for any operating system. Shell scripts often refer to programming UNIX. Shell scripting is mostly used to…

    Read More Shell Bash Scripting Interview Questions and Answer – Part 1Continue

  • perforce-quick-facts
    Perforce

    Perforce Quick Facts – Perforce Quick Start Guide

    ByRajesh Kumar April 16, 2010February 1, 2025

    Perforce Quick Facts Clients ============================================== P4V: Visual Client – (Included in the P4V Installer) Provides access to versioned files through a graphical interface and also includes tools for merging and visualizing code evolution. P4Merge: Visual Merge Tool – (Included in the P4V Installer) Provides graphical three-way merging and side-by-side file comparisons P4: Command-Line Client –…

    Read More Perforce Quick Facts – Perforce Quick Start GuideContinue

  • maven-interview-questions-answers
    Interview Questions & Answers

    Maven Interview Questions and Answers – Maven Job Interview Kit

    ByRajesh Kumar April 16, 2010November 19, 2021

    Maven Interview Questions and Answers Contributed by Rajesh Kumar with the help of Google Search and www.scmGalaxy.com Is there a way to use the current date in the POM? Take a look at the buildnumber plugin. It can be used to generate a build date each time I do a build, as follows: <plugin> <groupId>org.codehaus.mojo</groupId>…

    Read More Maven Interview Questions and Answers – Maven Job Interview KitContinue

  • about-scmgalaxy
    General

    Know About scmGalaxy – Introduction

    ByRajesh Kumar April 16, 2010December 27, 2017

    scmGalaxy is a community initiatives based on Software configuration management that helps community members to optimize their software development process, Software Development Life Cycle optimization, Agile Methodologies and improve productivity across all aspects of Java development, including Build Scripts, Testing, Issue Tracking, Continuous Integration, Code Quality and more! scmGalaxy is a community initiatives based on Software…

    Read More Know About scmGalaxy – IntroductionContinue

  • shell-programming-interview
    Interview Questions & Answers

    Shell Bash Scripting Interview Questions and Answer – Part 2

    ByRajesh Kumar April 16, 2010December 22, 2022

    Interview Questions Sets : Shell Programming How do you find out what’s your shell? Answer: echo $SHELL What’s the command to find out today’s date? Answer: date  What’s the command to find out users on the system? Answer: who How do you find out the current directory you’re in? Answer: pwd How do you remove…

    Read More Shell Bash Scripting Interview Questions and Answer – Part 2Continue

  • pom
    Uncategorised

    Project Object Model – What is POM?

    ByRajesh Kumar April 14, 2010December 27, 2017

    What is POM A Project Object Model or POM is the fundamental unit of work in Maven. It is an XML file that contains information about the project and configuration details used by Maven to build the project. It contains default values for most projects. Examples for this are the build directory, which is target;…

    Read More Project Object Model – What is POM?Continue

  • reporting-plugins-in-maven
    Maven

    Reporting Plugins in Maven | Maven Plugins That Provide Reports

    ByRajesh Kumar April 14, 2010November 20, 2021

    Reporting plugins Plugins which generate reports, are configured as reports in the POM and run under the site generation lifecycle. This plugin consists of several reports that you can run selectively, individually or even run all of them. Please see below for instructions on how to configure your pom.xml to do this. Run All Reports…

    Read More Reporting Plugins in Maven | Maven Plugins That Provide ReportsContinue

  • properties-in-maven
    Maven

    Properties in Maven – List of Maven Properties

    ByRajesh Kumar April 14, 2010November 20, 2021

    Intro It is a collection of things found in the offcial maven documentation and postings to the maven user mailing list. Build in properties ${basedir} represents the directory containing pom.xml ${version} equivalent to ${project.version} or ${pom.version} Pom/Project properties All elements in the pom.xml, can be referenced with the project. prefix or using pom. as prefix….

    Read More Properties in Maven – List of Maven PropertiesContinue

  • profiles-in-maven
    Maven

    Profiles in Maven – How to Build Maven Profile ?

    ByRajesh Kumar April 14, 2010November 20, 2021

    Reference: Apache Maven,Current version User Guide Profiles in Maven  Use of profile: Maven 2.0 goes to great lengths to ensure that builds are portable. Among other things, this means allowing build configuration inside the POM, avoiding all filesystem references (in inhertiance, dependencies, and other places), and leaning much more heavily on the local repository to…

    Read More Profiles in Maven – How to Build Maven Profile ?Continue

  • issuemanagement-in-maven
    Uncategorised

    issue Management in Maven

    ByRajesh Kumar April 14, 2010November 20, 2021

    issueManagement Information about the issue tracking (or bug tracking) system used to manage this project. Element Description system The name of the issue management system, e.g. Bugzilla url URL for the issue management system used by the project. Example:

    Read More issue Management in MavenContinue

  • maven-introduction
    Maven

    Introduction of Maven – Complete Guide

    ByRajesh Kumar April 14, 2010November 20, 2021

    Contents What is Maven? Philosophy of Maven Benefits of Maven High Level Features and Benefits of Maven Download Maven Installation Instructions Windows 2000/XP Unix-based Operating Systems (Linux, Solaris and Mac OS X) Optional configuration Settings Settings Reference First Maven project? What is Maven? Apache Maven is a software project management and comprehension tool. Based on…

    Read More Introduction of Maven – Complete GuideContinue

  • maven-1-and-maven-2-differences
    Tools Comparison

    Difference between Maven 1 and Maven 2 | Maven 1 Vs Maven 2

    ByRajesh Kumar April 14, 2010November 20, 2021

    What is Maven 2? Maven 2.0 is a complete rewrite of the ‘original’ Maven application (‘Maven 1’). As such, it is very different from Maven 1, and not backwards-compatible (eg, it cannot execute Maven 1 plugins). However, Maven 2.0 is the latest stable release of the Maven application, and new users are generally encouraged to…

    Read More Difference between Maven 1 and Maven 2 | Maven 1 Vs Maven 2Continue

  • svn-integration-in-ant-build
    Training

    How to Integrate Subversion Into Your Ant Build ? – Step by step guide

    ByRajesh Kumar April 14, 2010December 27, 2017

    SVNAnt SVNAnt is an Ant task allowing you to interact with Subversion within the convenience of your Ant build script. No more writing custom scripts to get the revision of your repository to tag your release jars. Nor do you have to make command line calls to checkout your latest and greatest as part of…

    Read More How to Integrate Subversion Into Your Ant Build ? – Step by step guideContinue

  • apache-ant-complete-task-reference
    Apache Ant

    Apache Ant – A Complete TASK Reference

    ByRajesh Kumar April 14, 2010December 27, 2017

    Apache Ant Task: zip Description: Creates a zipfile. The basedir attribute is the reference directory from where to zip. Note that file permissions will not be stored in the resulting zipfile. It is possible to refine the set of files that are being zipped. This can be done with the includes, includesfile, excludes, excludesfile and…

    Read More Apache Ant – A Complete TASK ReferenceContinue

  • ant_opts-in-ant-script
    Apache Ant

    Usage of ANT_OPTS in Ant Script | ANT_OPTS capabilities

    ByRajesh Kumar April 14, 2010December 27, 2017

    Usage of ANT_OPTS in Ant Script | ANT_OPTS capabilities Ant has three environment variables that you can use to set its default behavior. • ANT_ARGS Set this variable to include those options you use frequently. • ANT_OPTS is a list of arguments that you want to pass to the JVM that will run Ant. •…

    Read More Usage of ANT_OPTS in Ant Script | ANT_OPTS capabilitiesContinue

  • Training

    Power Point PPT: Apache Ant

    ByRajesh Kumar March 21, 2010

    Power Point PPT: Apache Ant {slideshare}[slideshare id=1117746&doc=apacheant-090308134221-phpapp01]{/slideshare}

    Read More Power Point PPT: Apache AntContinue

  • apache-ant-ppt
    Apache Ant

    Power Point PPT: Apache Ant – Complete Guide

    ByRajesh Kumar March 21, 2010December 27, 2017

    Power Point PPT: Apache Ant Apache Ant from Rajesh Kumar  

    Read More Power Point PPT: Apache Ant – Complete GuideContinue

  • Uncategorised

    Power Point PPT: Build And Automation

    ByRajesh Kumar March 21, 2010May 28, 2020

    Power Point PPT: Build And Automation {slideshare}[slideshare id=1117747&doc=buildandautomation-090308134143-phpapp01]{/slideshare}

    Read More Power Point PPT: Build And AutomationContinue

  • build-and-automation
    Uncategorised

    Power Point PPT: Build And Automation

    ByRajesh Kumar March 21, 2010December 27, 2017

    Power Point PPT: Build And Automation Build And Automation from Rajesh Kumar

    Read More Power Point PPT: Build And AutomationContinue

  • Uncategorised

    Power Point PPT: Configuration Management

    ByRajesh Kumar March 21, 2010May 28, 2020

    Power Point PPT: Configuration Management {slideshare}[slideshare id=1117749&doc=configurationmanagement-090308134227-phpapp02]{/slideshare}

    Read More Power Point PPT: Configuration ManagementContinue

  • Uncategorised

    Power Point PPT: Configuration Management

    ByRajesh Kumar March 21, 2010May 28, 2020

    Power Point PPT: Configuration Management {slideshare}[slideshare id=1117749&doc=configurationmanagement-090308134227-phpapp02]{/slideshare}

    Read More Power Point PPT: Configuration ManagementContinue

  • Training

    Power Point PPT: Introduction To Ant

    ByRajesh Kumar March 21, 2010

    Power Point PPT: Introduction To Ant {slideshare}[slideshare id=1117751&doc=introductiontoant-090308134145-phpapp02]{/slideshare}

    Read More Power Point PPT: Introduction To AntContinue

  • ant-introduction-ppt
    Apache Ant

    Power Point PPT: Introduction To Ant

    ByRajesh Kumar March 21, 2010December 27, 2017

    Power Point PPT: Introduction To Ant Introduction To Ant from Rajesh Kumar  

    Read More Power Point PPT: Introduction To AntContinue

  • Uncategorised

    Power Point PPT: Introduction To Software Configuration Management

    ByRajesh Kumar March 21, 2010May 28, 2020

    Power Point PPT: Introduction To Software Configuration Management {slideshare}[slideshare id=1117752&doc=introductiontosoftwareconfigurationmanagement-090308134213-phpapp02]{/slideshare}

    Read More Power Point PPT: Introduction To Software Configuration ManagementContinue

  • software-configuration-management-introduction
    Uncategorised

    Power Point PPT: Introduction To Software Configuration Management

    ByRajesh Kumar March 21, 2010December 27, 2017

    Power Point PPT: Introduction To Software Configuration Management Introduction To Software Configuration Management from Rajesh Kumar  

    Read More Power Point PPT: Introduction To Software Configuration ManagementContinue

Page navigation

Previous PagePrevious 1 … 382 383 384 385 386 … 388 Next PageNext

© 2026 - WordPress Theme by Kadence WP

  • Top Certifications
  • Courses
  • Tutorials
  • Forum & Support
  • DevOps Tools
  • Slides
  • Update
  • Professional
Search