Skip to content

Commit

Permalink
Restore pom.xml broken indent
Browse files Browse the repository at this point in the history
  • Loading branch information
vietj committed Oct 8, 2024
1 parent 35f9da9 commit d97d792
Showing 1 changed file with 79 additions and 140 deletions.
219 changes: 79 additions & 140 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,145 +14,84 @@
~
~ You may elect to redistribute this code under either of these licenses.
--><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">

<modelVersion>4.0.0</modelVersion>

<parent>

<groupId>io.vertx</groupId>

<artifactId>vertx-ext-parent</artifactId>

<version>38</version>

</parent>

<artifactId>vertx-tracing-parent</artifactId>

<version>4.5.11-SNAPSHOT</version>

<packaging>pom</packaging>

<name>Vert.x Tracing Parent</name>

<properties>

<stack.version>4.5.11-SNAPSHOT</stack.version>

<doc.skip>true</doc.skip>

<jar.manifest>${project.basedir}/src/main/resources/META-INF/MANIFEST.MF</jar.manifest>

<testcontainers.version>1.15.2</testcontainers.version>

</properties>

<dependencyManagement>

<dependencies>

<dependency>

<groupId>io.vertx</groupId>

<artifactId>vertx-dependencies</artifactId>

<version>${stack.version}</version>

<type>pom</type>

<scope>import</scope>

</dependency>

</dependencies>

</dependencyManagement>


<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.vertx</groupId>
<artifactId>vertx-ext-parent</artifactId>
<version>38</version>
</parent>

<artifactId>vertx-tracing-parent</artifactId>
<version>4.5.11-SNAPSHOT</version>
<packaging>pom</packaging>

<name>Vert.x Tracing Parent</name>

<properties>
<stack.version>4.5.11-SNAPSHOT</stack.version>
<doc.skip>true</doc.skip>
<jar.manifest>${project.basedir}/src/main/resources/META-INF/MANIFEST.MF</jar.manifest>
<testcontainers.version>1.15.2</testcontainers.version>
</properties>

<dependencyManagement>
<dependencies>

<dependency>

<groupId>io.vertx</groupId>

<artifactId>vertx-codegen</artifactId>

<scope>provided</scope>

</dependency>

<dependency>

<groupId>io.vertx</groupId>

<artifactId>vertx-docgen</artifactId>

<scope>provided</scope>

</dependency>

<dependency>

<groupId>io.vertx</groupId>

<artifactId>vertx-core</artifactId>

</dependency>

<dependency>

<groupId>io.vertx</groupId>

<artifactId>vertx-sql-client</artifactId>

<scope>test</scope>

</dependency>

<dependency>

<groupId>io.vertx</groupId>

<artifactId>vertx-pg-client</artifactId>

<scope>test</scope>

</dependency>

<dependency>

<groupId>org.testcontainers</groupId>

<artifactId>postgresql</artifactId>

<version>${testcontainers.version}</version>

<scope>test</scope>

</dependency>

<dependency>

<groupId>org.testcontainers</groupId>

<artifactId>testcontainers</artifactId>

<version>${testcontainers.version}</version>

<scope>test</scope>

</dependency>

<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-dependencies</artifactId>
<version>${stack.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>

<modules>

<module>vertx-zipkin</module>

<module>vertx-opentracing</module>

<module>vertx-opentelemetry</module>

</modules>

</project>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-codegen</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-docgen</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-core</artifactId>
</dependency>

<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-sql-client</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-pg-client</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>postgresql</artifactId>
<version>${testcontainers.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers</artifactId>
<version>${testcontainers.version}</version>
<scope>test</scope>
</dependency>

</dependencies>

<modules>
<module>vertx-zipkin</module>
<module>vertx-opentracing</module>
<module>vertx-opentelemetry</module>
</modules>
</project>

0 comments on commit d97d792

Please sign in to comment.