Files
java-tutorials/vertx/pom.xml
T

74 lines
2.7 KiB
XML
Raw Normal View History

2017-03-19 22:28:34 +05:30
<?xml version="1.0"?>
2018-07-12 12:34:54 +05:30
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2017-05-12 20:32:54 +02:00
<modelVersion>4.0.0</modelVersion>
2018-07-12 12:34:54 +05:30
2017-05-12 20:32:54 +02:00
<groupId>com.baeldung</groupId>
<artifactId>vertx</artifactId>
<version>1.0-SNAPSHOT</version>
<name>vertx</name>
<url>http://maven.apache.org</url>
2017-03-19 22:28:34 +05:30
2018-07-12 12:34:54 +05:30
<parent>
<groupId>com.baeldung</groupId>
<artifactId>parent-modules</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<dependencies>
2017-05-12 20:32:54 +02:00
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-core</artifactId>
2018-07-12 12:34:54 +05:30
<version>${vertx.version}</version>
2017-05-12 20:32:54 +02:00
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-web</artifactId>
2018-07-12 12:34:54 +05:30
<version>${vertx.version}</version>
2017-05-12 20:32:54 +02:00
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-unit</artifactId>
2018-07-12 12:34:54 +05:30
<version>${vertx.version}</version>
2017-05-12 20:32:54 +02:00
<scope>test</scope>
</dependency>
</dependencies>
2017-03-19 22:28:34 +05:30
2017-05-12 20:32:54 +02:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
2018-07-12 12:34:54 +05:30
<version>${maven-shade-plugin.version}</version>
2017-05-12 20:32:54 +02:00
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
2018-07-12 12:34:54 +05:30
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
2017-05-12 20:32:54 +02:00
<manifestEntries>
<Main-Class>io.vertx.core.Starter</Main-Class>
<Main-Verticle>com.baeldung.SimpleServerVerticle</Main-Verticle>
</manifestEntries>
</transformer>
</transformers>
2018-07-12 12:34:54 +05:30
<artifactSet />
2017-05-12 20:32:54 +02:00
<outputFile>${project.build.directory}/${project.artifactId}-${project.version}-app.jar</outputFile>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
2018-07-12 12:34:54 +05:30
<vertx.version>3.0.0</vertx.version>
2017-03-19 22:28:34 +05:30
<testng.version>6.10</testng.version>
2018-07-12 12:34:54 +05:30
<maven-shade-plugin.version>2.3</maven-shade-plugin.version>
2017-03-19 22:28:34 +05:30
</properties>
2017-05-12 20:32:54 +02:00
2017-03-19 22:28:34 +05:30
</project>