FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
docker-java/docker-java-transport-jersey/pom.xml at main · 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-transport-jersey
/
pom.xml
Copy path
More file actions
More file actions
Latest commit
History
History
History
127 lines (116 loc) · 4.11 KB
Breadcrumbs
docker-java
/
docker-java-transport-jersey
/
pom.xml
Copy path
File metadata and controls
127 lines (116 loc) · 4.11 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<
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-transport-jersey</
artifactId
>
<
packaging
>jar</
packaging
>
<
name
>docker-java-transport-jersey</
name
>
<
url
>https://github.com/docker-java/docker-java</
url
>
<
description
>Java API Client for Docker</
description
>
<
properties
>
<
automatic
.module.name>com.github.dockerjava.transport.jersey</
automatic
.module.name>
</
properties
>
<
dependencies
>
<
dependency
>
<
groupId
>
${project.groupId}
</
groupId
>
<
artifactId
>docker-java-core</
artifactId
>
<
version
>
${project.version}
</
version
>
</
dependency
>
<
dependency
>
<
groupId
>org.glassfish.jersey.connectors</
groupId
>
<
artifactId
>jersey-apache-connector</
artifactId
>
<
version
>
${jersey.version}
</
version
>
</
dependency
>
<
dependency
>
<
groupId
>org.apache.httpcomponents</
groupId
>
<
artifactId
>httpcore</
artifactId
>
<
version
>4.4.13</
version
>
</
dependency
>
<
dependency
>
<
groupId
>org.apache.httpcomponents</
groupId
>
<
artifactId
>httpclient</
artifactId
>
<
version
>
${httpclient.version}
</
version
>
<
exclusions
>
<
exclusion
>
<
groupId
>commons-logging</
groupId
>
<
artifactId
>commons-logging</
artifactId
>
</
exclusion
>
</
exclusions
>
</
dependency
>
<
dependency
>
<
groupId
>org.glassfish.jersey.core</
groupId
>
<
artifactId
>jersey-client</
artifactId
>
<
version
>
${jersey.version}
</
version
>
</
dependency
>
<
dependency
>
<
groupId
>org.glassfish.jersey.inject</
groupId
>
<
artifactId
>jersey-hk2</
artifactId
>
<
version
>
${jersey.version}
</
version
>
</
dependency
>
<
dependency
>
<
groupId
>com.kohlschutter.junixsocket</
groupId
>
<
artifactId
>junixsocket-common</
artifactId
>
<
version
>
${junixsocket.version}
</
version
>
</
dependency
>
<
dependency
>
<
groupId
>com.kohlschutter.junixsocket</
groupId
>
<
artifactId
>junixsocket-native-common</
artifactId
>
<
version
>
${junixsocket.version}
</
version
>
</
dependency
>
<
dependency
>
<
groupId
>org.slf4j</
groupId
>
<
artifactId
>jcl-over-slf4j</
artifactId
>
<
version
>1.7.30</
version
>
<
scope
>test</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>
${project.groupId}
</
groupId
>
<
artifactId
>docker-java-transport-tck</
artifactId
>
<
version
>
${project.version}
</
version
>
<
scope
>test</
scope
>
</
dependency
>
</
dependencies
>
<
build
>
<
plugins
>
<
plugin
>
<
groupId
>com.github.siom79.japicmp</
groupId
>
<
artifactId
>japicmp-maven-plugin</
artifactId
>
<
configuration
>
<
parameter
>
<
excludes
>
<!--
Previously deprecated
-->
<
exclude
>com.github.dockerjava.jaxrs.ApacheUnixSocket</
exclude
>
<
exclude
>com.github.dockerjava.jaxrs.async.AbstractCallbackNotifier</
exclude
>
<
exclude
>com.github.dockerjava.jaxrs.async.GETCallbackNotifier</
exclude
>
<
exclude
>com.github.dockerjava.jaxrs.async.GETCallbackNotifier</
exclude
>
<
exclude
>com.github.dockerjava.jaxrs.async.POSTCallbackNotifier</
exclude
>
<
exclude
>com.github.dockerjava.jaxrs.UnixConnectionSocketFactory</
exclude
>
<
exclude
>com.github.dockerjava.jaxrs.JerseyDockerCmdExecFactory#releaseConnection(long)</
exclude
>
</
excludes
>
<
overrideCompatibilityChangeParameters
>
<
overrideCompatibilityChangeParameter
>
<
compatibilityChange
>SUPERCLASS_REMOVED</
compatibilityChange
>
<
binaryCompatible
>true</
binaryCompatible
>
<
sourceCompatible
>true</
sourceCompatible
>
</
overrideCompatibilityChangeParameter
>
</
overrideCompatibilityChangeParameters
>
</
parameter
>
</
configuration
>
</
plugin
>
<
plugin
>
<
groupId
>org.apache.felix</
groupId
>
<
artifactId
>maven-bundle-plugin</
artifactId
>
<
extensions
>true</
extensions
>
<
configuration
>
<
instructions
>
<
Export-Package
>com.github.dockerjava.jaxrs.*</
Export-Package
>
</
instructions
>
</
configuration
>
</
plugin
>
</
plugins
>
</
build
>
</
project
>
Back
|
FazBrowse Home
|
New Git URL