Skip to content

Commit a129dfa

Browse files
committed
#initial-commit
1 parent 66f4858 commit a129dfa

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/maven-publish.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,9 @@ jobs:
4242
4343
- name: Build with Maven
4444
run: |
45-
mvn clean deploy -Dgpg.passphrase=$GPG_PASSPHRASE \
46-
-Dgpg.keyname=$GPG_KEY_ID \
45+
mvn clean deploy -Dgpg.keyname=$GPG_KEY_ID \
4746
-Dgpg.executable=gpg \
4847
-Dgpg.pinentry.mode=loopback
4948
env:
50-
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
49+
GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
5150
GPG_KEY_ID: ${{ secrets.GPG_KEY_ID }}

src/main/java/com/mewebstudio/springboot/jpa/nestedset/AbstractNestedSetService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* @param <ID> The type of the identifier for the nested set node.
1818
*/
1919
public abstract class AbstractNestedSetService<T extends INestedSetNode<ID>, ID> {
20-
private static final int TEMP_OFFSET = Integer.MIN_VALUE;
20+
private static final int TEMP_OFFSET = Integer.MAX_VALUE;
2121

2222
/**
2323
* The repository to be used for database operations.

0 commit comments

Comments
 (0)