|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | - |
3 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 |
|
7 | | - <groupId>httpfaultinjectorclient</groupId> |
| 7 | + <groupId>org.example</groupId> |
8 | 8 | <artifactId>httpfaultinjectorclient</artifactId> |
9 | 9 | <version>1.0-SNAPSHOT</version> |
10 | 10 |
|
11 | | - <name>httpfaultinjectorclient</name> |
12 | | - <!-- FIXME change it to the project's website --> |
13 | | - <url>http://www.example.com</url> |
14 | | - |
15 | 11 | <properties> |
| 12 | + <maven.compiler.source>8</maven.compiler.source> |
| 13 | + <maven.compiler.target>8</maven.compiler.target> |
16 | 14 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
17 | | - <maven.compiler.source>1.8</maven.compiler.source> |
18 | | - <maven.compiler.target>1.8</maven.compiler.target> |
19 | 15 | </properties> |
20 | 16 |
|
21 | | - <dependencyManagement> |
22 | | - <dependencies> |
23 | | - <dependency> |
24 | | - <groupId>io.projectreactor</groupId> |
25 | | - <artifactId>reactor-bom</artifactId> |
26 | | - <version>Dysprosium-SR10</version> |
27 | | - <type>pom</type> |
28 | | - <scope>import</scope> |
29 | | - </dependency> |
30 | | - </dependencies> |
31 | | - </dependencyManagement> |
32 | | - |
33 | 17 | <dependencies> |
34 | 18 | <dependency> |
35 | 19 | <groupId>io.projectreactor.netty</groupId> |
36 | 20 | <artifactId>reactor-netty</artifactId> |
| 21 | + <version>[1.2.13,1.3.0)</version> |
37 | 22 | </dependency> |
38 | 23 | </dependencies> |
39 | 24 |
|
40 | | - <build> |
41 | | - <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) --> |
42 | | - <plugins> |
43 | | - <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle --> |
44 | | - <plugin> |
45 | | - <artifactId>maven-clean-plugin</artifactId> |
46 | | - <version>3.1.0</version> |
47 | | - </plugin> |
48 | | - <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging --> |
49 | | - <plugin> |
50 | | - <artifactId>maven-resources-plugin</artifactId> |
51 | | - <version>3.0.2</version> |
52 | | - </plugin> |
53 | | - <plugin> |
54 | | - <artifactId>maven-compiler-plugin</artifactId> |
55 | | - <version>3.8.0</version> |
56 | | - </plugin> |
57 | | - <plugin> |
58 | | - <artifactId>maven-surefire-plugin</artifactId> |
59 | | - <version>2.22.1</version> |
60 | | - </plugin> |
61 | | - <plugin> |
62 | | - <artifactId>maven-jar-plugin</artifactId> |
63 | | - <version>3.0.2</version> |
64 | | - </plugin> |
65 | | - <plugin> |
66 | | - <artifactId>maven-install-plugin</artifactId> |
67 | | - <version>2.5.2</version> |
68 | | - </plugin> |
69 | | - <plugin> |
70 | | - <artifactId>maven-deploy-plugin</artifactId> |
71 | | - <version>2.8.2</version> |
72 | | - </plugin> |
73 | | - <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle --> |
74 | | - <plugin> |
75 | | - <artifactId>maven-site-plugin</artifactId> |
76 | | - <version>3.7.1</version> |
77 | | - </plugin> |
78 | | - <plugin> |
79 | | - <artifactId>maven-project-info-reports-plugin</artifactId> |
80 | | - <version>3.0.0</version> |
81 | | - </plugin> |
82 | | - </plugins> |
83 | | - </pluginManagement> |
84 | | - </build> |
85 | 25 | </project> |
0 commit comments