1

I am trying to port CouchbaseLite project from Android Studio to Eclipse which uses Maven.

How can I achieve this?

If needed, project's link is here. http://docs.couchbase.com/couchbase-lite/cbl-android/#getting-started

MariuszS
  • 30,646
  • 12
  • 114
  • 155
Master
  • 2,945
  • 5
  • 34
  • 65

1 Answers1

1

Android Studio uses Gradle, not Maven, but artifacts are downloaded from Maven Repositories. Your question is not related to Maven.

Gradle has support for eclipse, simply add eclipse plugin

apply plugin: "eclipse"

and invoke

gradle eclipse

More options are described here: Import existing Gradle Git project into Eclipse

Other option is to use Gradle Integration for Eclipse

Community
  • 1
  • 1
MariuszS
  • 30,646
  • 12
  • 114
  • 155
  • It is a thumbs up from my side. But let me take my time 2-5 days when I will try it and I will accept your answer. – Master Jan 27 '14 at 13:26