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 9d52c4c commit f11365b
Showing 1 changed file with 93 additions and 170 deletions.
263 changes: 93 additions & 170 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,175 +14,98 @@
~
~ 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-openapi</artifactId>

<version>4.5.11-SNAPSHOT</version>

<name>Vert.x OpenAPI</name>

<properties>

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

<doc.skip>false</doc.skip>

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

</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-openapi</artifactId>
<version>4.5.11-SNAPSHOT</version>

<name>Vert.x OpenAPI</name>

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

<dependencyManagement>
<dependencies>

<dependency>

<groupId>io.vertx</groupId>

<artifactId>vertx-core</artifactId>

</dependency>

<dependency>

<groupId>io.vertx</groupId>

<artifactId>vertx-json-schema</artifactId>

</dependency>

<dependency>

<groupId>org.yaml</groupId>

<artifactId>snakeyaml</artifactId>

</dependency>

<dependency>

<groupId>io.vertx</groupId>

<artifactId>vertx-codegen</artifactId>

<scope>provided</scope>

<optional>true</optional>

</dependency>

<dependency>

<groupId>io.vertx</groupId>

<artifactId>vertx-docgen</artifactId>

<scope>provided</scope>

</dependency>

<!-- Test deps -->

<dependency>

<groupId>io.vertx</groupId>

<artifactId>vertx-junit5</artifactId>

<scope>test</scope>

</dependency>

<dependency>

<groupId>com.google.truth</groupId>

<artifactId>truth</artifactId>

<version>1.1.3</version>

<scope>test</scope>

</dependency>

<dependency>

<groupId>org.mockito</groupId>

<artifactId>mockito-junit-jupiter</artifactId>

<version>4.11.0</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>

<build>

<plugins>

<plugin>

<groupId>org.apache.maven.plugins</groupId>

<artifactId>maven-compiler-plugin</artifactId>

<configuration>

<source>1.8</source>

<target>1.8</target>

</configuration>

</plugin>

<plugin>

<groupId>org.apache.maven.plugins</groupId>

<artifactId>maven-surefire-plugin</artifactId>

<version>2.22.2</version>

</plugin>

</plugins>

</build>

</project>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-core</artifactId>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-json-schema</artifactId>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-codegen</artifactId>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-docgen</artifactId>
<scope>provided</scope>
</dependency>

<!-- Test deps -->
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-junit5</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.truth</groupId>
<artifactId>truth</artifactId>
<version>1.1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>4.11.0</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
</plugin>
</plugins>
</build>
</project>

0 comments on commit f11365b

Please sign in to comment.