|
14 | 14 | ~ See the License for the specific language governing permissions and
|
15 | 15 | ~ limitations under the License.
|
16 | 16 | -->
|
17 |
| - |
18 | 17 | <project xmlns="http://maven.apache.org/POM/4.0.0"
|
19 |
| - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
20 |
| - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
21 |
| - <parent> |
22 |
| - <artifactId>quarkus-smallrye-fault-tolerance-parent</artifactId> |
23 |
| - <groupId>io.quarkus</groupId> |
24 |
| - <version>999-SNAPSHOT</version> |
25 |
| - <relativePath>../</relativePath> |
26 |
| - </parent> |
27 |
| - <modelVersion>4.0.0</modelVersion> |
28 |
| - |
29 |
| - <artifactId>quarkus-smallrye-fault-tolerance</artifactId> |
30 |
| - <name>Quarkus - SmallRye Fault tolerance - Runtime</name> |
| 18 | + 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"> |
| 20 | + <parent> |
| 21 | + <artifactId>quarkus-smallrye-fault-tolerance-parent</artifactId> |
| 22 | + <groupId>io.quarkus</groupId> |
| 23 | + <version>999-SNAPSHOT</version> |
| 24 | + <relativePath>../</relativePath> |
| 25 | + </parent> |
| 26 | + <modelVersion>4.0.0</modelVersion> |
31 | 27 |
|
32 |
| - <dependencies> |
33 |
| - <dependency> |
34 |
| - <groupId>io.quarkus</groupId> |
35 |
| - <artifactId>quarkus-core</artifactId> |
36 |
| - </dependency> |
37 |
| - <dependency> |
38 |
| - <groupId>io.smallrye</groupId> |
39 |
| - <artifactId>smallrye-fault-tolerance</artifactId> |
40 |
| - <exclusions> |
41 |
| - <!-- Temporary fix for dependency convergence error --> |
42 |
| - <!-- Current smallrye-metrics version depends on 1.1 --> |
43 |
| - <exclusion> |
44 |
| - <groupId>org.eclipse.microprofile.metrics</groupId> |
45 |
| - <artifactId>microprofile-metrics-api</artifactId> |
46 |
| - </exclusion> |
47 |
| - </exclusions> |
48 |
| - </dependency> |
49 |
| - <dependency> |
50 |
| - <groupId>com.oracle.substratevm</groupId> |
51 |
| - <artifactId>svm</artifactId> |
52 |
| - </dependency> |
53 |
| - </dependencies> |
| 28 | + <artifactId>quarkus-smallrye-fault-tolerance</artifactId> |
| 29 | + <name>Quarkus - SmallRye Fault tolerance - Runtime</name> |
54 | 30 |
|
55 |
| - <build> |
56 |
| - <plugins> |
57 |
| - <plugin> |
58 |
| - <groupId>io.quarkus.bootstrap</groupId> |
59 |
| - <artifactId>quarkus-bootstrap-maven-plugin</artifactId> |
60 |
| - </plugin> |
61 |
| - <plugin> |
62 |
| - <artifactId>maven-compiler-plugin</artifactId> |
63 |
| - <configuration> |
64 |
| - <annotationProcessorPaths> |
65 |
| - <path> |
66 |
| - <groupId>io.quarkus</groupId> |
67 |
| - <artifactId>quarkus-extension-processor</artifactId> |
68 |
| - <version>${project.version}</version> |
69 |
| - </path> |
70 |
| - </annotationProcessorPaths> |
71 |
| - </configuration> |
72 |
| - </plugin> |
73 |
| - </plugins> |
74 |
| - </build> |
| 31 | + <dependencies> |
| 32 | + <dependency> |
| 33 | + <groupId>io.quarkus</groupId> |
| 34 | + <artifactId>quarkus-core</artifactId> |
| 35 | + </dependency> |
| 36 | + <dependency> |
| 37 | + <groupId>io.smallrye</groupId> |
| 38 | + <artifactId>smallrye-fault-tolerance</artifactId> |
| 39 | + <exclusions> |
| 40 | + <!-- Temporary fix for dependency convergence error --> |
| 41 | + <!-- Current smallrye-metrics version depends on 1.1 --> |
| 42 | + <exclusion> |
| 43 | + <groupId>org.eclipse.microprofile.metrics</groupId> |
| 44 | + <artifactId>microprofile-metrics-api</artifactId> |
| 45 | + </exclusion> |
| 46 | + </exclusions> |
| 47 | + </dependency> |
| 48 | + <dependency> |
| 49 | + <groupId>io.quarkus</groupId> |
| 50 | + <artifactId>quarkus-smallrye-metrics</artifactId> |
| 51 | + </dependency> |
| 52 | + <dependency> |
| 53 | + <groupId>com.oracle.substratevm</groupId> |
| 54 | + <artifactId>svm</artifactId> |
| 55 | + </dependency> |
| 56 | + </dependencies> |
75 | 57 |
|
| 58 | + <build> |
| 59 | + <plugins> |
| 60 | + <plugin> |
| 61 | + <groupId>io.quarkus.bootstrap</groupId> |
| 62 | + <artifactId>quarkus-bootstrap-maven-plugin</artifactId> |
| 63 | + </plugin> |
| 64 | + <plugin> |
| 65 | + <artifactId>maven-compiler-plugin</artifactId> |
| 66 | + <configuration> |
| 67 | + <annotationProcessorPaths> |
| 68 | + <path> |
| 69 | + <groupId>io.quarkus</groupId> |
| 70 | + <artifactId>quarkus-extension-processor</artifactId> |
| 71 | + <version>${project.version}</version> |
| 72 | + </path> |
| 73 | + </annotationProcessorPaths> |
| 74 | + </configuration> |
| 75 | + </plugin> |
| 76 | + </plugins> |
| 77 | + </build> |
76 | 78 | </project>
|
0 commit comments