Skip to content

Commit 4931cec

Browse files
committed
chore: Initial commit
1 parent d33d0bb commit 4931cec

14 files changed

Lines changed: 528 additions & 0 deletions

File tree

.gitattributes

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#
2+
# https://help.github.com/articles/dealing-with-line-endings/
3+
#
4+
# Linux start script should use lf
5+
/gradlew text eol=lf
6+
7+
# These are Windows script files and should use crlf
8+
*.bat text eol=crlf
9+

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
# Package Files #
1414
*.jar
15+
!gradle/wrapper/gradle-wrapper.jar
1516
*.war
1617
*.nar
1718
*.ear
@@ -22,3 +23,8 @@
2223
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
2324
hs_err_pid*
2425
replay_pid*
26+
27+
.gradle
28+
.DS_Store
29+
# Ignore Gradle build output directory
30+
build

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# CloudQuery Plugin SDK for Java
2+
3+
This is the high-level package to use for developing CloudQuery plugins in Java.
4+
5+
## Setup
6+
7+
```bash
8+
# Set up authentication to GitHub Packages, more in https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-gradle-registry#authenticating-to-github-packages
9+
export GITHUB_ACTOR=<your-github-username>
10+
# Classic personal access token with `read:packages` scope
11+
export GITHUB_TOKEN=<personal-access-token>
12+
```
13+
14+
## Build
15+
16+
```bash
17+
./gradlew build
18+
```

gradle.properties

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# This file was generated by the Gradle 'init' task.
2+
# https://docs.gradle.org/current/userguide/build_environment.html#sec:gradle_configuration_properties
3+
4+
org.gradle.parallel=true
5+
org.gradle.caching=true
6+

gradle/wrapper/gradle-wrapper.jar

61.9 KB
Binary file not shown.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
6+
zipStoreBase=GRADLE_USER_HOME
7+
zipStorePath=wrapper/dists

gradlew

Lines changed: 248 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)