You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
2.3 KiB
XML
63 lines
2.3 KiB
XML
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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>twopm.tech.orm-bench</groupId>
|
|
<artifactId>bom</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<relativePath>../../pom.xml</relativePath>
|
|
</parent>
|
|
<groupId>twopm.tech.bench.orm</groupId>
|
|
<artifactId>vertx-postgresql-reactive</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.vertx</groupId>
|
|
<artifactId>vertx-stack-depchain</artifactId>
|
|
<version>${vertx.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.vertx</groupId>
|
|
<artifactId>vertx-core</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>io.reactiverse</groupId>
|
|
<artifactId>vertx-maven-plugin</artifactId>
|
|
<version>${vertx-maven-plugin.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<id>vmp</id>
|
|
<goals>
|
|
<goal>initialize</goal>
|
|
<goal>package</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<redeploy>true</redeploy>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<version>${exec-maven-plugin.version}</version>
|
|
<configuration>
|
|
<mainClass>io.vertx.core.Launcher</mainClass>
|
|
<arguments>
|
|
<argument>run</argument>
|
|
<argument>${main.verticle}</argument>
|
|
</arguments>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |