undertow-examples
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.undertow</groupId> <artifactId>undertow-examples</artifactId> <version>2.3.18.Final</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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/maven-v4_0_0.xsd"> <parent> <artifactId>undertow-parent</artifactId> <groupId>io.undertow</groupId> <version>2.3.18.Final</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>io.undertow</groupId> <artifactId>undertow-examples</artifactId> <name>Undertow Examples</name> <version>2.3.18.Final</version> <build> <resources> <resource> <directory>src/main/java</directory> <excludes> <exclude>**/*.java</exclude> </excludes> </resource> <resource> <directory>src/main/resources</directory> </resource> </resources> <finalName>undertow-examples</finalName> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <mainClass>io.undertow.examples.Runner</mainClass> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <configuration> <executable>java</executable> <arguments> <argument>-jar</argument> <argument>target/${project.build.finalName}.jar</argument> </arguments> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging-processor</artifactId> <version>2.2.1.Final</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>jboss-logging-annotations</artifactId> <groupId>org.jboss.logging</groupId> </exclusion> <exclusion> <artifactId>jdeparser</artifactId> <groupId>org.jboss.jdeparser</groupId> </exclusion> </exclusions> </dependency> </dependencies> </project>