Skip to content

Commit cf8d577

Browse files
committed
Added initial files
0 parents  commit cf8d577

17 files changed

Lines changed: 765 additions & 0 deletions

.gitignore

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
.gradle
2+
build/
3+
!gradle/wrapper/gradle-wrapper.jar
4+
!**/src/main/**/build/
5+
!**/src/test/**/build/
6+
7+
### IntelliJ IDEA ###
8+
.idea/modules.xml
9+
.idea/jarRepositories.xml
10+
.idea/compiler.xml
11+
.idea/libraries/
12+
*.iws
13+
*.iml
14+
*.ipr
15+
out/
16+
!**/src/main/**/out/
17+
!**/src/test/**/out/
18+
19+
### Eclipse ###
20+
.apt_generated
21+
.classpath
22+
.factorypath
23+
.project
24+
.settings
25+
.springBeans
26+
.sts4-cache
27+
bin/
28+
!**/src/main/**/bin/
29+
!**/src/test/**/bin/
30+
31+
### NetBeans ###
32+
/nbproject/private/
33+
/nbbuild/
34+
/dist/
35+
/nbdist/
36+
/.nb-gradle/
37+
38+
### VS Code ###
39+
.vscode/
40+
41+
### Mac OS ###
42+
.DS_Store

.idea/.gitignore

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

.idea/discord.xml

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

.idea/gradle.xml

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

.idea/misc.xml

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

.idea/vcs.xml

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

build.gradle

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
plugins {
2+
id "java"
3+
id "com.github.johnrengelman.shadow" version "8.1.1"
4+
id "io.github.intisy.github-gradle" version "1.4.4"
5+
id "io.github.intisy.online-gradle" version "1.7.2"
6+
}
7+
8+
online {
9+
autoUpdate = true
10+
updateDelay = 3600
11+
presets = [
12+
"https://raw.githubusercontent.com/intisy/gradle-snippets/presets/default.preset:17",
13+
"https://raw.githubusercontent.com/intisy/gradle-snippets/presets/publish.preset"
14+
]
15+
}
16+
17+
repositories {
18+
mavenLocal()
19+
mavenCentral()
20+
}
21+
22+
java {
23+
sourceCompatibility = JavaVersion.VERSION_17
24+
targetCompatibility = JavaVersion.VERSION_17
25+
}
26+
27+
dependencies {
28+
implementation "com.github.docker-java:docker-java:3.5.1"
29+
implementation 'com.github.docker-java:docker-java-transport-zerodep:3.5.1'
30+
implementation "com.google.code.gson:gson:2.10.1"
31+
implementation "org.apache.commons:commons-compress:1.24.0"
32+
implementation 'org.slf4j:slf4j-simple:2.0.7'
33+
}

gradle.properties

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
display_name=Docker Java
2+
artifact_name=docker-java
3+
artifact_id=docker
4+
artifact_group=io.github.intisy
5+
artifact_description=Java Docker Server and API Client
6+
author=intisy

gradle/wrapper/gradle-wrapper.jar

59.3 KB
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Sun Jun 15 08:19:47 CEST 2025
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
5+
zipStoreBase=GRADLE_USER_HOME
6+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)