We use Luntbuild to do our builds. Our project builders are in Maven 2. After each build is done we need to do a lot of cd, mkdir, cp, unzip rm and zip commands. We currently have a shell scrip that does this but we need to wait for a successful build and then manually run that script. Is there a way to set luntbuild to do the post-build actions for us as soon as it gets a successful build. If so what should the format of the post-build script be? and how do i set it up?
what's the best way to automate post-build actions?
1.1k Views Asked by Codrguy At
1
There are 1 best solutions below
Related Questions in MAVEN
- Auto reload with play2
- maven pom.xml dependencies order vs classpath/build path order
- How to ignore or fix the duplicate classes warning?
- Scala Eclipse IDE compiler giving errors until "clean" is run
- How to run multiple "mvn test"-commands from batch file?
- Not able to send email in java using SMTP,its blocked by firewall in my office.Is there any other method by which we can send mail?
- javaCV Maven project
- Logging error when executing Maven SonarQube plugin
- Gradle: Override transitive dependency by version classifier
- Why we need maven if there's javac that compiles the code?
- jar file input == null while java app is working
- JPA and web app
- Test Selector Plugin Jenkins returns No tests were executed
- Eclipse OSGI unsatisfied constraint
- GlassFish 4.0 CDI deployment failure + Apache Spark
Related Questions in MAVEN-2
- Maven profile dependency with another profile
- Maven implicit profile Activation
- Get the whole index of Maven Central
- Apache IVY Unable to resolve dependencies for MAVEN Projects
- Java application using Maven Build
- maven 2.2.1 build error : Cannot find the specified class com.ibm.websphere.ssl.protocol.SSLSocketFactory
- How to deal with checksum issue in maven 2.2.1
- Add external jar to the project and build process using maven
- Is it possible to declare multiple artifactIDs per dependency?
- Maven 2 works but Maven 3 gives authentication error with same settings and server
- get sca module bindings in EAR before deploying
- Maven <mirror> tag, meaning of external:* parameter
- Multiple maven project with different package
- how to get eclipse neon to work with maven 2
- How to stop IntelliJ IDEA from creating new annotation processor profiles when a pom file is changed
Related Questions in BUILD-AUTOMATION
- Programmatically triggered Bamboo plans
- Issue with using MSBuild to build a VS2012/VS2013 Project
- Emulate Devenv/Runexit under MSBuild
- How to force team members to comment using eclipse plugin or something else
- Re-associate changesets and work items with build
- Why am I getting "could not find com.android.tools.build:gradle" error?
- Is it possible to use PackagingOptions configured per CPU architecture on Gradle?
- Cross-platform Hosted Continuous Integration
- How can I use two "replace" tasks from "grunt-replace" and "grunt-text-replace" in same gruntfile.js
- how to make shorthand commands using phing
- Automated make system with regex pattern matching
- TFS label deployment to QA or PROD IIS environments
- How can I cancel build from Task in TFSBuild.proj?
- Jenkins internal working
- Map gulp.task over multidimensional array
Related Questions in LUNTBUILD
- luntbuild + maven + findbugs = OutOfMemoryException
- how to modify luntbuild mail notification template?
- how to use schedule variables in builders in luntbuild?
- Continuous integration with ClearCase and long-updating snapshot views
- what's the best way to automate post-build actions?
- Luntbuild for .net
- Luntbuild No modules defined! Error
- How can I get the revision number into an Ant property in Luntbuild?
- Can I specify which VCS module or adaptor is used by a Luntbuild buiulder or schedule?
- CI server, lunt build or Jenkins
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You may want to run your script via the maven invoker plugin. There is also an example on their site.