Skip to content

Commit

Permalink
Merge branch 'release/1.42.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
jesse-gallagher committed Sep 20, 2024
2 parents e6e990f + 1414564 commit 492ae62
Show file tree
Hide file tree
Showing 21 changed files with 36 additions and 19 deletions.
2 changes: 1 addition & 1 deletion domino-jnx-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.hcl.domino</groupId>
<artifactId>domino-jnx</artifactId>
<version>1.42.1</version>
<version>1.42.2</version>
</parent>
<artifactId>domino-jnx-api</artifactId>
<name>HCL Domino API</name>
Expand Down
5 changes: 5 additions & 0 deletions domino-jnx-api/src/main/java/com/hcl/domino/dql/DQL.java
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,11 @@ public static abstract class DQLTerm {
*/
@Override
public abstract String toString();

@Override
public boolean equals(Object obj) {
return obj != null && getClass().equals(obj.getClass()) && toString().equals(obj.toString());
}
}

public static class InViewsOrFoldersTerm extends DQLTerm {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,9 @@ public void testFormulas() {
assertEquals("Bar = 'Baz' and @formula('Foo=''Hello''')", DQL.and(DQL.item("Bar").isEqualTo("Baz"), DQL.formula("Foo='Hello'")).toString());
}

@Test
public void testTermEquivalence() {
assertEquals(DQL.item("Foo").isEqualTo("Bar"), DQL.item("Foo").isEqualTo("Bar"));
}

}
9 changes: 8 additions & 1 deletion domino-jnx-commons/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.hcl.domino</groupId>
<artifactId>domino-jnx</artifactId>
<version>1.42.1</version>
<version>1.42.2</version>
</parent>
<artifactId>domino-jnx-commons</artifactId>
<name>HCL Domino API Common Code</name>
Expand Down Expand Up @@ -41,6 +41,13 @@
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
<!-- used commonly downstream, useful for development toolchains-->
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.2</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<finalName>${jar.finalName}</finalName>
Expand Down
2 changes: 1 addition & 1 deletion domino-jnx-console/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.hcl.domino</groupId>
<artifactId>domino-jnx</artifactId>
<version>1.42.1</version>
<version>1.42.2</version>
</parent>
<artifactId>domino-jnx-console</artifactId>
<name>HCL Domino API Server Controller Connector</name>
Expand Down
2 changes: 1 addition & 1 deletion domino-jnx-jna/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.hcl.domino</groupId>
<artifactId>domino-jnx</artifactId>
<version>1.42.1</version>
<version>1.42.2</version>
</parent>
<artifactId>domino-jnx-jna</artifactId>
<name>HCL Domino API, JNA Implementation</name>
Expand Down
2 changes: 1 addition & 1 deletion example/jnx-example-domino-servlet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.hcl.domino</groupId>
<artifactId>domino-jnx</artifactId>
<version>1.42.1</version>
<version>1.42.2</version>
<relativePath>../..</relativePath>
</parent>
<artifactId>jnx-example-domino-servlet</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion example/jnx-example-domino-webapp-admin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.hcl.domino</groupId>
<artifactId>domino-jnx</artifactId>
<version>1.42.1</version>
<version>1.42.2</version>
<relativePath>../..</relativePath>
</parent>
<artifactId>jnx-example-domino-webapp-admin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion example/jnx-example-gluon/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.hcl.domino</groupId>
<artifactId>domino-jnx</artifactId>
<version>1.42.1</version>
<version>1.42.2</version>
<relativePath>../..</relativePath>
</parent>
<artifactId>jnx-example-gluon</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion example/jnx-example-graalvm-native/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.hcl.domino</groupId>
<artifactId>domino-jnx</artifactId>
<version>1.42.1</version>
<version>1.42.2</version>
<relativePath>../..</relativePath>
</parent>
<artifactId>jnx-example-graalvm-native</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion example/jnx-example-runjava/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.hcl.domino</groupId>
<artifactId>domino-jnx</artifactId>
<version>1.42.1</version>
<version>1.42.2</version>
<relativePath>../..</relativePath>
</parent>
<artifactId>jnx-example-runjava</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion example/jnx-example-swt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.hcl.domino</groupId>
<artifactId>domino-jnx</artifactId>
<version>1.42.1</version>
<version>1.42.2</version>
<relativePath>../..</relativePath>
</parent>
<artifactId>jnx-example-swt</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion example/jnx-example-webapp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.hcl.domino</groupId>
<artifactId>domino-jnx</artifactId>
<version>1.42.1</version>
<version>1.42.2</version>
<relativePath>../..</relativePath>
</parent>
<artifactId>jnx-example-webapp</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion integration/domino-jnx-jakarta-security/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.hcl.domino</groupId>
<artifactId>domino-jnx</artifactId>
<version>1.42.1</version>
<version>1.42.2</version>
<relativePath>../..</relativePath>
</parent>
<artifactId>domino-jnx-jakarta-security</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion integration/domino-jnx-jsonb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.hcl.domino</groupId>
<artifactId>domino-jnx</artifactId>
<version>1.42.1</version>
<version>1.42.2</version>
<relativePath>../..</relativePath>
</parent>
<artifactId>domino-jnx-jsonb</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion integration/domino-jnx-lsxbeshim/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.hcl.domino</groupId>
<artifactId>domino-jnx</artifactId>
<version>1.42.1</version>
<version>1.42.2</version>
<relativePath>../..</relativePath>
</parent>
<artifactId>domino-jnx-lsxbeshim</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion integration/domino-jnx-rawdoc-json/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.hcl.domino</groupId>
<artifactId>domino-jnx</artifactId>
<version>1.42.1</version>
<version>1.42.2</version>
<relativePath>../..</relativePath>
</parent>
<artifactId>domino-jnx-rawdoc-json</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion integration/domino-jnx-vertx-json/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.hcl.domino</groupId>
<artifactId>domino-jnx</artifactId>
<version>1.42.1</version>
<version>1.42.2</version>
<relativePath>../..</relativePath>
</parent>
<artifactId>domino-jnx-vertx-json</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion integration/domino-jnx-xpages/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.hcl.domino</groupId>
<artifactId>domino-jnx</artifactId>
<version>1.42.1</version>
<version>1.42.2</version>
<relativePath>../..</relativePath>
</parent>
<artifactId>domino-jnx-xpages</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.hcl.domino</groupId>
<artifactId>domino-jnx</artifactId>
<version>1.42.1</version>
<version>1.42.2</version>
<packaging>pom</packaging>
<name>HCL Domino API Parent Project</name>
<description>Modern Java API for HCL Domino</description>
Expand Down
2 changes: 1 addition & 1 deletion test/it-domino-jnx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.hcl.domino</groupId>
<artifactId>domino-jnx</artifactId>
<version>1.42.1</version>
<version>1.42.2</version>
<relativePath>../..</relativePath>
</parent>
<artifactId>it-domino-jnx</artifactId>
Expand Down

0 comments on commit 492ae62

Please sign in to comment.