|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <!-- |
3 | | - ~ Licensed to the Apache Software Foundation (ASF) under one or more |
4 | | - ~ contributor license agreements. See the NOTICE file distributed with |
5 | | - ~ this work for additional information regarding copyright ownership. |
6 | | - ~ The ASF licenses this file to You under the Apache License, Version 2.0 |
7 | | - ~ (the "License"); you may not use this file except in compliance with |
8 | | - ~ the License. You may obtain a copy of the License at |
9 | | - ~ |
10 | | - ~ http://www.apache.org/licenses/LICENSE-2.0 |
11 | | - ~ |
12 | | - ~ Unless required by applicable law or agreed to in writing, software |
13 | | - ~ distributed under the License is distributed on an "AS IS" BASIS, |
14 | | - ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
15 | | - ~ See the License for the specific language governing permissions and |
16 | | - ~ limitations under the License. |
| 3 | + Licensed to the Apache Software Foundation (ASF) under one or more |
| 4 | + contributor license agreements. See the NOTICE file distributed with |
| 5 | + this work for additional information regarding copyright ownership. |
| 6 | + The ASF licenses this file to You under the Apache License, Version 2.0 |
| 7 | + (the "License"); you may not use this file except in compliance with |
| 8 | + the License. You may obtain a copy of the License at |
| 9 | +
|
| 10 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | +
|
| 12 | + Unless required by applicable law or agreed to in writing, software |
| 13 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | + See the License for the specific language governing permissions and |
| 16 | + limitations under the License. |
17 | 17 | --> |
18 | 18 |
|
19 | 19 | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
57 | 57 | <version>4.13.2</version> |
58 | 58 | <scope>compile</scope> |
59 | 59 | </dependency> |
| 60 | + <dependency> |
| 61 | + <groupId>jakarta.ws.rs</groupId> |
| 62 | + <artifactId>jakarta.ws.rs-api</artifactId> |
| 63 | + <version>3.0.0</version> |
| 64 | + </dependency> |
| 65 | + <dependency> |
| 66 | + <groupId>org.glassfish.jersey.inject</groupId> |
| 67 | + <artifactId>jersey-hk2</artifactId> |
| 68 | + <version>3.0.3</version> |
| 69 | + <scope>test</scope> |
| 70 | + </dependency> |
| 71 | + <dependency> |
| 72 | + <groupId>org.glassfish.jersey.core</groupId> |
| 73 | + <artifactId>jersey-client</artifactId> |
| 74 | + <version>3.0.3</version> |
| 75 | + <scope>compile</scope> |
| 76 | + </dependency> |
60 | 77 | </dependencies> |
61 | 78 |
|
62 | 79 | <build> |
|
92 | 109 | </execution> |
93 | 110 | </executions> |
94 | 111 | </plugin> |
| 112 | + <plugin> |
| 113 | + <groupId>org.apache.maven.plugins</groupId> |
| 114 | + <artifactId>maven-resources-plugin</artifactId> |
| 115 | + <executions> |
| 116 | + <execution> |
| 117 | + <id>generate-version</id> |
| 118 | + <phase>process-resources</phase> |
| 119 | + <goals> |
| 120 | + <goal>copy-resources</goal> |
| 121 | + </goals> |
| 122 | + <configuration> |
| 123 | + <outputDirectory>${project.build.directory}/classes</outputDirectory> |
| 124 | + <resources> |
| 125 | + <resource> |
| 126 | + <directory>src/main/resources</directory> |
| 127 | + <filtering>true</filtering> |
| 128 | + <includes> |
| 129 | + <include>jar.txt</include> |
| 130 | + </includes> |
| 131 | + </resource> |
| 132 | + </resources> |
| 133 | + </configuration> |
| 134 | + </execution> |
| 135 | + </executions> |
| 136 | + </plugin> |
95 | 137 | </plugins> |
96 | 138 | </build> |
97 | 139 |
|
|
0 commit comments