Skip to content

Commit bf04c6a

Browse files
committed
feat: package updated and published as version 1.0.3
1 parent 8adf344 commit bf04c6a

387 files changed

Lines changed: 22089 additions & 11789 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.

.github/workflows/maven.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
3+
#
4+
# This file is auto-generated by OpenAPI Generator (https://openapi-generator.tech)
5+
6+
name: Java CI with Maven
7+
8+
on:
9+
release:
10+
types: [published]
11+
12+
jobs:
13+
build:
14+
name: Build Permify API
15+
runs-on: ubuntu-latest
16+
strategy:
17+
matrix:
18+
java: [ 17, 21 ]
19+
steps:
20+
- uses: actions/checkout@v4
21+
- name: Set up JDK
22+
uses: actions/setup-java@v4
23+
with:
24+
java-version: ${{ matrix.java }}
25+
distribution: 'temurin'
26+
cache: maven
27+
- name: Build with Maven
28+
run: mvn -B package --no-transfer-progress --file pom.xml

.github/workflows/mvn-publish.yml

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

.gitignore

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,26 @@
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-
replay_pid*
16+
17+
# build files
18+
**/target
19+
target
20+
.gradle
21+
build
22+
private-key.asc
23+
gradle.properties
24+
generator/
25+
_gradle.properties
26+
.openapi-generator
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

.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)