|
15 | 15 | limitations under the License. |
16 | 16 |
|
17 | 17 | --> |
18 | | -<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"> |
| 18 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 19 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
19 | 20 | <modelVersion>4.0.0</modelVersion> |
20 | 21 | <parent> |
21 | 22 | <groupId>org.commonjava</groupId> |
|
25 | 26 |
|
26 | 27 | <groupId>org.commonjava.util</groupId> |
27 | 28 | <artifactId>http-testserver-parent</artifactId> |
28 | | - <version>2.1.1-SNAPSHOT</version> |
| 29 | + <version>2.2-SNAPSHOT</version> |
29 | 30 | <packaging>pom</packaging> |
30 | 31 |
|
31 | 32 | <name>http-testserver</name> |
32 | 33 | <inceptionYear>2011-2022</inceptionYear> |
33 | | - |
| 34 | + |
34 | 35 | <scm> |
35 | 36 | <connection>scm:git:https://github.com/Commonjava/http-testserver</connection> |
36 | 37 | <developerConnection>scm:git:https://github.com/Commonjava/http-testserver</developerConnection> |
37 | 38 | <url>https://github.com/Commonjava/http-testserver</url> |
38 | 39 | <tag>HEAD</tag> |
39 | 40 | </scm> |
40 | | - |
| 41 | + |
41 | 42 | <properties> |
42 | 43 | <projectOwner>Red Hat, Inc.</projectOwner> |
43 | 44 | <projectEmail>https://github.com/Commonjava/http-testserver</projectEmail> |
44 | 45 | <javaVersion>11</javaVersion> |
45 | 46 | <undertowVersion>2.2.26.Final</undertowVersion> |
46 | 47 | <slf4j.versoin>1.7.25</slf4j.versoin> |
| 48 | + <quarkus.version>2.16.11.Final</quarkus.version> |
47 | 49 | </properties> |
48 | 50 |
|
49 | 51 | <dependencyManagement> |
50 | 52 | <dependencies> |
| 53 | + <dependency> |
| 54 | + <groupId>io.quarkus</groupId> |
| 55 | + <artifactId>quarkus-bom</artifactId> |
| 56 | + <version>${quarkus.version}</version> |
| 57 | + <type>pom</type> |
| 58 | + <scope>import</scope> |
| 59 | + </dependency> |
51 | 60 | <dependency> |
52 | 61 | <groupId>org.commonjava.boms</groupId> |
53 | 62 | <artifactId>web-commons-bom</artifactId> |
|
70 | 79 | <artifactId>jboss-logging</artifactId> |
71 | 80 | <version>3.4.0.Final</version> |
72 | 81 | </dependency> |
| 82 | + <dependency> |
| 83 | + <groupId>junit</groupId> |
| 84 | + <artifactId>junit</artifactId> |
| 85 | + <version>4.13.2</version> |
| 86 | + </dependency> |
| 87 | + <dependency> |
| 88 | + <groupId>org.junit.jupiter</groupId> |
| 89 | + <artifactId>junit-jupiter</artifactId> |
| 90 | + <version>5.9.2</version> |
| 91 | + </dependency> |
| 92 | + <dependency> |
| 93 | + <groupId>org.hamcrest</groupId> |
| 94 | + <artifactId>hamcrest</artifactId> |
| 95 | + <version>2.2</version> |
| 96 | + </dependency> |
| 97 | + <dependency> |
| 98 | + <groupId>org.commonjava.util</groupId> |
| 99 | + <artifactId>http-testserver-core</artifactId> |
| 100 | + <version>2.2-SNAPSHOT</version> |
| 101 | + </dependency> |
73 | 102 | </dependencies> |
74 | 103 | </dependencyManagement> |
75 | | - |
| 104 | + |
76 | 105 | <modules> |
77 | 106 | <module>core</module> |
78 | 107 | <module>junit4</module> |
|
0 commit comments