Skip to content

Commit 45e079e

Browse files
authored
v1.12.0 (#34)
* add PUT / PATCH /documents/{documentId}/tags * change to use OpenAPI generator
1 parent 28df98f commit 45e079e

653 files changed

Lines changed: 83644 additions & 19748 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.checkstyle

Lines changed: 0 additions & 12 deletions
This file was deleted.

.classpath

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,13 @@
66
<attribute name="gradle_used_by_scope" value="main,test"/>
77
</attributes>
88
</classpathentry>
9-
<classpathentry kind="src" output="bin/main" path="src/main/resources">
10-
<attributes>
11-
<attribute name="gradle_scope" value="main"/>
12-
<attribute name="gradle_used_by_scope" value="main,test"/>
13-
</attributes>
14-
</classpathentry>
159
<classpathentry kind="src" output="bin/test" path="src/test/java">
1610
<attributes>
1711
<attribute name="gradle_scope" value="test"/>
1812
<attribute name="gradle_used_by_scope" value="test"/>
1913
<attribute name="test" value="true"/>
2014
</attributes>
2115
</classpathentry>
22-
<classpathentry kind="src" output="bin/test" path="src/test/resources">
23-
<attributes>
24-
<attribute name="gradle_scope" value="test"/>
25-
<attribute name="gradle_used_by_scope" value="test"/>
26-
<attribute name="test" value="true"/>
27-
</attributes>
28-
</classpathentry>
2916
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11/"/>
3017
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
3118
<classpathentry kind="output" path="bin/default"/>

.github/workflows/main.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,14 @@ jobs:
3030
with:
3131
java-version: '11'
3232
distribution: 'temurin'
33+
- name: Restore gradle.properties
34+
env:
35+
GRADLE_PROPERTIES: ${{ secrets.GRADLE_PROPERTIES }}
36+
shell: bash
37+
run: |
38+
mkdir -p ~/.gradle/
39+
echo "GRADLE_USER_HOME=${HOME}/.gradle" >> $GITHUB_ENV
40+
echo "${GRADLE_PROPERTIES}" > ~/.gradle/gradle.properties
3341
- name: Build with Gradle
3442
uses: gradle/gradle-build-action@v2
3543
with:

.github/workflows/publish.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,15 @@ jobs:
3333
mkdir -p ~/.gradle/
3434
echo "GRADLE_USER_HOME=${HOME}/.gradle" >> $GITHUB_ENV
3535
echo "${GRADLE_PROPERTIES}" > ~/.gradle/gradle.properties
36+
- name: Restore gpg key
37+
env:
38+
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
39+
shell: bash
40+
run: |
41+
mkdir /home/runner/.gnupg
42+
echo -n "${{ secrets.GPG_PRIVATE_KEY }}" | base64 --decode > /home/runner/.gnupg/secring.gpg
43+
- name: List keys
44+
run: gpg -K
3645
- name: Build with Gradle
3746
uses: gradle/gradle-build-action@v2
3847
with:

.gitignore

Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,21 @@
1-
# Compiled class file
21
*.class
32

4-
# Log file
5-
*.log
6-
7-
# BlueJ files
8-
*.ctxt
9-
103
# Mobile Tools for Java (J2ME)
114
.mtj.tmp/
125

136
# Package Files #
147
*.jar
158
*.war
16-
*.nar
179
*.ear
18-
*.zip
19-
*.tar.gz
20-
*.rar
10+
11+
# exclude jar for gradle wrapper
12+
!gradle/wrapper/*.jar
2113

2214
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
2315
hs_err_pid*
24-
/.gradle/
25-
/build/
26-
gradle.properties
27-
!gradle/wrapper/gradle-wrapper.jar
16+
17+
# build files
18+
**/target
19+
target
20+
.gradle
21+
build

.openapi-generator-ignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# OpenAPI Generator Ignore
2+
# Generated by openapi-generator https://github.com/openapitools/openapi-generator
3+
4+
# Use this file to prevent files from being overwritten by the generator.
5+
# The patterns follow closely to .gitignore or .dockerignore.
6+
7+
# As an example, the C# client generator defines ApiClient.cs.
8+
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
9+
#ApiClient.cs
10+
11+
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
12+
#foo/*/qux
13+
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
14+
15+
# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
16+
#foo/**/qux
17+
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
18+
19+
# You can also negate patterns with an exclamation (!).
20+
# For example, you can ignore all files in a docs folder with the file extension .md:
21+
#docs/*.md
22+
# Then explicitly reverse the ignore rule for a single file:
23+
#!docs/README.md

0 commit comments

Comments
 (0)