difference between Gradle and accurev

143 views Asked by At

Can any one explain the difference between Accurev and Gradle.

I am trying to use it in eclipse mars version. I have a project got from AccuRev how can I import it as a gradle or as AccuRev?

3

There are 3 answers

0
jstanley On
0
Valentin Michalak On

It's pretty simple, a little search on your favorite search engine could help you to understood :

  • AccuRev: Versioning tool (like git)
  • Gradle: Build tool (like maven)
0
Novaterata On

AccuRev is not a build system or project format, it's a source control management system like cvs, subversion, git, tfs, mercurial etc.

Gradle is a build system and project format similar to maven, but with groovy scripting, so you essentially get the declarative style of maven plus the imperative style of ant.

You would keep/promote a gradle project to AccuRev, but you would need to create the gradle project first.

So first things first you need to figure out what kind of project you already have as that has not been determined.