Closed
Description
Today, the Java Client API is packaged as java-client-api-M.m.p.jar
, for M
ajor version, m
inor , p
atch. This makes it difficult to recognize, for example, in the classpath list of an IDE. A developer is likely looking for marklogic
in the name somewhere. (It’s obvious that it’s Java already.)
Update the artifact (and its references in Maven et al) to be marklogic-client-api-M.m.p.jar
.
Some relevant external examples:
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongodb-driver</artifactId>
<version>3.3.0</version>
</dependency>
<dependency>
<groupId>com.datastax.cassandra</groupId>
<artifactId>cassandra-driver-core</artifactId>
<version>3.1.0</version>
</dependency>
<dependency>
<groupId>com.oracle.jdbc</groupId>
<artifactId>ojdbc7</artifactId>
<version>12.1.0.2</version>
</dependency>