FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
docker-java/docker-java-core/pom.xml at 3.5.0 · docker-java/docker-java · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
docker-java
/
docker-java
Public
Notifications
You must be signed in to change notification settings
Fork
1.1k
Star
3.2k
Code
Issues
41
Pull requests
61
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
docker-java
/
docker-java-core
/
pom.xml
Copy path
More file actions
More file actions
Latest commit
History
History
History
107 lines (93 loc) · 2.9 KB
Breadcrumbs
docker-java
/
docker-java-core
/
pom.xml
Copy path
File metadata and controls
107 lines (93 loc) · 2.9 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<
project
xmlns
=
"
http://maven.apache.org/POM/4.0.0
"
xmlns
:
xsi
=
"
http://www.w3.org/2001/XMLSchema-instance
"
xsi
:
schemaLocation
=
"
http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd
"
>
<
modelVersion
>4.0.0</
modelVersion
>
<
parent
>
<
groupId
>com.github.docker-java</
groupId
>
<
artifactId
>docker-java-parent</
artifactId
>
<
version
>0-SNAPSHOT</
version
>
<
relativePath
>../pom.xml</
relativePath
>
</
parent
>
<
artifactId
>docker-java-core</
artifactId
>
<
packaging
>jar</
packaging
>
<
name
>docker-java-core</
name
>
<
url
>https://github.com/docker-java/docker-java</
url
>
<
description
>Java API Client for Docker</
description
>
<
properties
>
<
automatic
.module.name>com.github.dockerjava.core</
automatic
.module.name>
</
properties
>
<
dependencies
>
<
dependency
>
<
groupId
>
${project.groupId}
</
groupId
>
<
artifactId
>docker-java-api</
artifactId
>
<
version
>
${project.version}
</
version
>
</
dependency
>
<
dependency
>
<
groupId
>
${project.groupId}
</
groupId
>
<
artifactId
>docker-java-transport</
artifactId
>
<
version
>
${project.version}
</
version
>
</
dependency
>
<
dependency
>
<
groupId
>org.slf4j</
groupId
>
<
artifactId
>slf4j-api</
artifactId
>
<
version
>
${slf4j-api.version}
</
version
>
</
dependency
>
<
dependency
>
<
groupId
>commons-io</
groupId
>
<
artifactId
>commons-io</
artifactId
>
<
version
>
${commons-io.version}
</
version
>
</
dependency
>
<
dependency
>
<
groupId
>org.apache.commons</
groupId
>
<
artifactId
>commons-compress</
artifactId
>
<
version
>
${commons-compress.version}
</
version
>
</
dependency
>
<
dependency
>
<
groupId
>org.apache.commons</
groupId
>
<
artifactId
>commons-lang3</
artifactId
>
<
version
>
${commons-lang3.version}
</
version
>
</
dependency
>
<
dependency
>
<
groupId
>com.fasterxml.jackson.core</
groupId
>
<
artifactId
>jackson-databind</
artifactId
>
<
version
>
${jackson.version}
</
version
>
</
dependency
>
<
dependency
>
<
groupId
>com.google.guava</
groupId
>
<
artifactId
>guava</
artifactId
>
<
version
>
${guava.version}
</
version
>
</
dependency
>
<
dependency
>
<
groupId
>org.bouncycastle</
groupId
>
<
artifactId
>bcpkix-jdk18on</
artifactId
>
<
version
>
${bouncycastle.version}
</
version
>
</
dependency
>
<
dependency
>
<
groupId
>com.google.code.findbugs</
groupId
>
<
artifactId
>annotations</
artifactId
>
<
version
>3.0.1u2</
version
>
<
scope
>provided</
scope
>
</
dependency
>
</
dependencies
>
<
build
>
<
plugins
>
<
plugin
>
<
groupId
>org.apache.felix</
groupId
>
<
artifactId
>maven-bundle-plugin</
artifactId
>
<
extensions
>true</
extensions
>
<
configuration
>
<
instructions
>
<
Export-Package
>com.github.dockerjava.core.*</
Export-Package
>
</
instructions
>
</
configuration
>
</
plugin
>
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-compiler-plugin</
artifactId
>
<
configuration
>
<
source
>8</
source
>
<
target
>8</
target
>
<
parameters
>true</
parameters
>
</
configuration
>
</
plugin
>
</
plugins
>
</
build
>
</
project
>
Back
|
FazBrowse Home
|
New Git URL