Browse Source

WIP

issue/4471
Marcin Grzejszczak 1 year ago
parent
commit
c238288290
No known key found for this signature in database
GPG Key ID: 9663E23C6E20556A
  1. 2
      pom.xml
  2. 2
      spring-data-mongodb-benchmarks/pom.xml
  3. 2
      spring-data-mongodb-distribution/pom.xml
  4. 2
      spring-data-mongodb/pom.xml
  5. 4
      spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/index/CompoundWildcardIndexDefinition.java
  6. 4
      spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/index/CompoundWildcardIndexed.java

2
pom.xml

@ -5,7 +5,7 @@
<groupId>org.springframework.data</groupId> <groupId>org.springframework.data</groupId>
<artifactId>spring-data-mongodb-parent</artifactId> <artifactId>spring-data-mongodb-parent</artifactId>
<version>4.4.0-SNAPSHOT</version> <version>4.4.0-4471-SNAPSHOT</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<name>Spring Data MongoDB</name> <name>Spring Data MongoDB</name>

2
spring-data-mongodb-benchmarks/pom.xml

@ -7,7 +7,7 @@
<parent> <parent>
<groupId>org.springframework.data</groupId> <groupId>org.springframework.data</groupId>
<artifactId>spring-data-mongodb-parent</artifactId> <artifactId>spring-data-mongodb-parent</artifactId>
<version>4.4.0-SNAPSHOT</version> <version>4.4.0-4471-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>

2
spring-data-mongodb-distribution/pom.xml

@ -15,7 +15,7 @@
<parent> <parent>
<groupId>org.springframework.data</groupId> <groupId>org.springframework.data</groupId>
<artifactId>spring-data-mongodb-parent</artifactId> <artifactId>spring-data-mongodb-parent</artifactId>
<version>4.4.0-SNAPSHOT</version> <version>4.4.0-4471-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>

2
spring-data-mongodb/pom.xml

@ -13,7 +13,7 @@
<parent> <parent>
<groupId>org.springframework.data</groupId> <groupId>org.springframework.data</groupId>
<artifactId>spring-data-mongodb-parent</artifactId> <artifactId>spring-data-mongodb-parent</artifactId>
<version>4.4.0-SNAPSHOT</version> <version>4.4.0-4471-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>

4
spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/index/CompoundWildcardIndexDefinition.java

@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2023 the original author or authors. * Copyright 2014-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -23,7 +23,7 @@ import org.springframework.util.Assert;
* one or more non-wildcard fields. * one or more non-wildcard fields.
* *
* @author Julia Lee * @author Julia Lee
* @since 4.2 * @since 4.4
*/ */
public class CompoundWildcardIndexDefinition extends WildcardIndex { public class CompoundWildcardIndexDefinition extends WildcardIndex {

4
spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/index/CompoundWildcardIndexed.java

@ -1,5 +1,5 @@
/* /*
* Copyright 2011-2023 the original author or authors. * Copyright 2011-2024 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -52,6 +52,8 @@ import java.lang.annotation.Target;
* </pre> * </pre>
* *
* @author Julia Lee * @author Julia Lee
* @author Marcin Grzejszczak
* @since 4.4.0
*/ */
@Target({ ElementType.TYPE }) @Target({ ElementType.TYPE })
@Documented @Documented

Loading…
Cancel
Save