|
52 | 52 | <groupId>org.osgi</groupId>
|
53 | 53 | <artifactId>org.osgi.core</artifactId>
|
54 | 54 | </dependency>
|
| 55 | + <!-- CONNECTORS --> |
| 56 | + <dependency> |
| 57 | + <groupId>org.glassfish.jersey.connectors</groupId> |
| 58 | + <artifactId>jersey-apache-connector</artifactId> |
| 59 | + <version>${project.version}</version> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>org.glassfish.jersey.connectors</groupId> |
| 63 | + <artifactId>jersey-grizzly-connector</artifactId> |
| 64 | + <version>${project.version}</version> |
| 65 | + </dependency> |
| 66 | + <dependency> |
| 67 | + <groupId>org.glassfish.jersey.connectors</groupId> |
| 68 | + <artifactId>jersey-jdk-connector</artifactId> |
| 69 | + <version>${project.version}</version> |
| 70 | + </dependency> |
| 71 | + <dependency> |
| 72 | + <groupId>org.glassfish.jersey.connectors</groupId> |
| 73 | + <artifactId>jersey-jetty-connector</artifactId> |
| 74 | + <version>${project.version}</version> |
| 75 | + </dependency> |
| 76 | + <dependency> |
| 77 | + <groupId>org.glassfish.jersey.connectors</groupId> |
| 78 | + <artifactId>jersey-netty-connector</artifactId> |
| 79 | + <version>${project.version}</version> |
| 80 | + </dependency> |
55 | 81 | <!-- CONTAINERS -->
|
56 | 82 | <dependency>
|
57 | 83 | <groupId>org.glassfish.jersey.containers</groupId>
|
|
91 | 117 | <version>${project.version}</version>
|
92 | 118 | </dependency>
|
93 | 119 | <!-- MEDIA -->
|
| 120 | + <dependency> |
| 121 | + <groupId>org.glassfish.jersey.media</groupId> |
| 122 | + <artifactId>jersey-media-jaxb</artifactId> |
| 123 | + <version>${project.version}</version> |
| 124 | + </dependency> |
| 125 | + <dependency> |
| 126 | + <groupId>org.glassfish.jersey.media</groupId> |
| 127 | + <artifactId>jersey-media-json-binding</artifactId> |
| 128 | + <version>${project.version}</version> |
| 129 | + </dependency> |
| 130 | + <dependency> |
| 131 | + <groupId>org.glassfish.jersey.media</groupId> |
| 132 | + <artifactId>jersey-media-json-jackson</artifactId> |
| 133 | + <version>${project.version}</version> |
| 134 | + </dependency> |
| 135 | + <dependency> |
| 136 | + <groupId>org.glassfish.jersey.media</groupId> |
| 137 | + <artifactId>jersey-media-json-jettison</artifactId> |
| 138 | + <version>${project.version}</version> |
| 139 | + </dependency> |
| 140 | + <dependency> |
| 141 | + <groupId>org.glassfish.jersey.media</groupId> |
| 142 | + <artifactId>jersey-media-json-processing</artifactId> |
| 143 | + <version>${project.version}</version> |
| 144 | + </dependency> |
94 | 145 | <dependency>
|
95 | 146 | <groupId>org.glassfish.jersey.media</groupId>
|
96 | 147 | <artifactId>jersey-media-moxy</artifactId>
|
|
106 | 157 | <artifactId>jersey-media-sse</artifactId>
|
107 | 158 | <version>${project.version}</version>
|
108 | 159 | </dependency>
|
| 160 | + <!-- kryo --> |
| 161 | + <dependency> |
| 162 | + <groupId>org.glassfish.jersey.media</groupId> |
| 163 | + <artifactId>jersey-media-kryo</artifactId> |
| 164 | + <version>${project.version}</version> |
| 165 | + </dependency> |
| 166 | + <!-- INJECT --> |
| 167 | + <dependency> |
| 168 | + <groupId>org.glassfish.jersey.inject</groupId> |
| 169 | + <artifactId>jersey-cdi2-se</artifactId> |
| 170 | + <version>${project.version}</version> |
| 171 | + </dependency> |
| 172 | + <dependency> |
| 173 | + <groupId>org.glassfish.jersey.inject</groupId> |
| 174 | + <artifactId>jersey-hk2</artifactId> |
| 175 | + <version>${project.version}</version> |
| 176 | + </dependency> |
| 177 | + <!-- EXT --> |
| 178 | + <dependency> |
| 179 | + <groupId>org.glassfish.jersey.ext.cdi</groupId> |
| 180 | + <artifactId>jersey-cdi1x</artifactId> |
| 181 | + <version>${project.version}</version> |
| 182 | + </dependency> |
| 183 | + <dependency> |
| 184 | + <groupId>org.glassfish.jersey.ext</groupId> |
| 185 | + <artifactId>jersey-declarative-linking</artifactId> |
| 186 | + <version>${project.version}</version> |
| 187 | + </dependency> |
| 188 | + <dependency> |
| 189 | + <groupId>org.glassfish.jersey.ext.microprofile</groupId> |
| 190 | + <artifactId>jersey-mp-config</artifactId> |
| 191 | + <version>${project.version}</version> |
| 192 | + </dependency> |
| 193 | + <dependency> |
| 194 | + <groupId>org.glassfish.jersey.ext</groupId> |
| 195 | + <artifactId>jersey-wadl-doclet</artifactId> |
| 196 | + <version>${project.version}</version> |
| 197 | + </dependency> |
| 198 | + <!-- incubator --> |
| 199 | + <dependency> |
| 200 | + <groupId>org.glassfish.jersey.incubator</groupId> |
| 201 | + <artifactId>jersey-open-tracing</artifactId> |
| 202 | + <version>${project.version}</version> |
| 203 | + </dependency> |
| 204 | + <!-- security --> |
| 205 | + <dependency> |
| 206 | + <groupId>org.glassfish.jersey.security</groupId> |
| 207 | + <artifactId>oauth1-signature</artifactId> |
| 208 | + <version>${project.version}</version> |
| 209 | + </dependency> |
109 | 210 | </dependencies>
|
| 211 | + <profiles> |
| 212 | + <profile> |
| 213 | + <id>jetty2x</id> |
| 214 | + <activation> |
| 215 | + <activeByDefault>false</activeByDefault> |
| 216 | + </activation> |
| 217 | + <dependencies> |
| 218 | + <dependency> |
| 219 | + <groupId>org.glassfish.jersey.ext.microprofile</groupId> |
| 220 | + <artifactId>jersey-mp-rest-client</artifactId> |
| 221 | + <version>${project.version}</version> |
| 222 | + </dependency> |
| 223 | + <!-- media --> |
| 224 | + <dependency> |
| 225 | + <groupId>org.glassfish.jersey.media</groupId> |
| 226 | + <artifactId>jersey-media-json-jackson1</artifactId> |
| 227 | + <version>${project.version}</version> |
| 228 | + </dependency> |
| 229 | + <!-- connectors --> |
| 230 | + <dependency> |
| 231 | + <groupId>org.glassfish.jersey.connectors</groupId> |
| 232 | + <artifactId>jersey-helidon-connector</artifactId> |
| 233 | + <version>${project.version}</version> |
| 234 | + </dependency> |
| 235 | + </dependencies> |
| 236 | + </profile> |
| 237 | + </profiles> |
110 | 238 | <build>
|
111 | 239 | <plugins>
|
112 | 240 | <plugin>
|
|
0 commit comments