Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ subprojects {
testImplementation "org.springframework:spring-test:${springVersion}"

// Forcing Spring to use logback instead of commons-logging
testImplementation "ch.qos.logback:logback-classic:1.5.19"
testImplementation "ch.qos.logback:logback-classic:1.5.21"
testImplementation 'org.slf4j:jcl-over-slf4j:2.0.17'
testImplementation 'org.slf4j:slf4j-api:2.0.17'
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@
* Generates Entity Services model artifacts based on model definitions. This is implemented as a command, though it's
* not likely to be invoked as part of e.g. an "mlDeploy" call in ml-gradle. But implementing it as a command does
* allow for that possibility, and it's also easy to invoke by itself in ml-gradle too.
*
* @deprecated since 6.2.0
*/
@Deprecated
public class GenerateModelArtifactsCommand extends AbstractCommand {

// Should be very rare to need to override this, but just in case
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertTrue;

@Deprecated
public class GenerateModelArtifactsTest extends AbstractAppDeployerTest {

@AfterEach
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
*/
package com.marklogic.client.ext.es;

/**
* @deprecated since 6.2.0
*/
@Deprecated
public class CodeGenerationRequest {

private boolean generateDatabaseProperties = true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@

/**
* Handles loading a model and then making calls to generate code for it.
* @deprecated since 6.2.0
*/
@Deprecated
public class EntityServicesManager {

private String modelCollection = "http://marklogic.com/entity-services/models";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
*/
package com.marklogic.client.ext.es;

/**
* @deprecated since 6.2.0
*/
@Deprecated
public class GeneratedCode {

private String title;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
/**
* Tests against the default Documents database. Doesn't clear it out before or after.
*/
@Deprecated
public class EntityServicesTest extends AbstractIntegrationTest {

private final static String MODEL = "{\n" +
Expand Down