Catchdb maven dependency not import / session and document resolution

I tried to understand couchDB by following this example: -

http://www.javacodegeeks.com/2013/08/couchdb-relax.html

all db maven couch db dependencies that I imported (which I found in google), they do not allow session and document

import com.fourspaces.couchdb.Session;
import com.fourspaces.couchdb.Document;

I can always run it using jar local, as I recognized it here: How to add local jar files to the maven project?

but then I have to manually copy jar (s) in other environments (production / testing ...).

I was wondering if there is any work for this?

Please give me some tips or suggestions.

Thanks.

UPDATED

Manually adding a jar to the system and specifying it in the catalog as follows:

<dependency>
            <groupId>apache-collections-commons</groupId>
            <artifactId>com.apache-collections-commons</artifactId>
            <version>1.0</version>
            <scope>system</scope>
            <systemPath>${project.basedir}/couchdbJars/apache-collections-commons-collections-3.1.jar</systemPath>
        </dependency>
        <dependency>
            <groupId>commons-beanutils</groupId>
            <artifactId>com.commons-beanutils</artifactId>
            <version>1.8.3</version>
            <scope>system</scope>
            <systemPath>${project.basedir}/couchdbJars/commons-beanutils-1.8.3.jar</systemPath>
        </dependency>
        <dependency>
            <groupId>commons-codec</groupId>
            <artifactId>com.commons-codec</artifactId>
            <version>1.6</version>
            <scope>system</scope>
            <systemPath>${project.basedir}/couchdbJars/commons-codec-1.6.jar</systemPath>
        </dependency>
        <dependency>
            <groupId>commons-httpclient-3.1</groupId>
            <artifactId>com.commons-httpclient-3.1</artifactId>
            <version>3.1</version>
            <scope>system</scope>
            <systemPath>${project.basedir}/couchdbJars/commons-httpclient-3.1.jar</systemPath>
        </dependency>
        <dependency>
            <groupId>commons-lang-2.6</groupId>
            <artifactId>com.commons-lang-2.6</artifactId>
            <version>2.6</version>
            <scope>system</scope>
            <systemPath>${project.basedir}/couchdbJars/commons-lang-2.6.jar</systemPath>
        </dependency>
        <dependency>
            <groupId>commons-logging-api-1.1.1</groupId>
            <artifactId>com.commons-logging-api-1.1.1</artifactId>
            <version>1.1</version>
            <scope>system</scope>
            <systemPath>${project.basedir}/couchdbJars/commons-logging-api-1.1.1.jar</systemPath>
        </dependency>
        <dependency>
            <groupId>couchdb</groupId>
            <artifactId>com.couchdb</artifactId>
            <version>1.0</version>
            <scope>system</scope>
            <systemPath>${project.basedir}/couchdbJars/couchdb4j-0.1.2.jar</systemPath>
        </dependency>
        <dependency>
            <groupId>ezmorph-1.0.6.jar</groupId>
            <artifactId>com.ezmorph-1.0.6.jar</artifactId>
            <version>1.0</version>
            <scope>system</scope>
            <systemPath>${project.basedir}/couchdbJars/ezmorph-1.0.6.jar</systemPath>
        </dependency>
        <dependency>
            <groupId>httpclient-4.2.1</groupId>
            <artifactId>com.httpclient-4.2.1</artifactId>
            <version>1.0</version>
            <scope>system</scope>
            <systemPath>${project.basedir}/couchdbJars/httpclient-4.2.1.jar</systemPath>
        </dependency>
        <dependency>
            <groupId>httpcore-4.2.1</groupId>
            <artifactId>com.httpcore-4.2.1</artifactId>
            <version>1.0</version>
            <scope>system</scope>
            <systemPath>${project.basedir}/couchdbJars/httpcore-4.2.1.jar</systemPath>
        </dependency>
        <dependency>
            <groupId>json.lib</groupId>
            <artifactId>com.jsonLib</artifactId>
            <version>1.0</version>
            <scope>system</scope>
            <systemPath>${project.basedir}/couchdbJars/json-lib-2.4-jdk15.jar</systemPath>
        </dependency>
        <dependency>
            <groupId>json-simple-1.1</groupId>
            <artifactId>com.json-simple-1.1</artifactId>
            <version>1.0</version>
            <scope>system</scope>
            <systemPath>${project.basedir}/couchdbJars/json-simple-1.1.jar</systemPath>
        </dependency>
+4

Source: https://habr.com/ru/post/1607670/


All Articles