Skip to content

Commit

Permalink
Fiddle with project to make the example work
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolai Parlog authored and gunnarmorling committed May 25, 2021
1 parent 78c2534 commit 8448593
Showing 1 changed file with 1 addition and 89 deletions.
90 changes: 1 addition & 89 deletions integrationtest/undertow/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,96 +80,8 @@
<plugin>
<groupId>${project.groupId}</groupId>
<artifactId>moditect-maven-plugin</artifactId>
<version>1.0.0-SNAPSHOT</version>
<executions>
<execution>
<id>add-module-info-to-dependencies</id>
<phase>package</phase>
<configuration>
<outputDirectory>${project.build.directory}/modules</outputDirectory>
<modules>
<module>
<artifact>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging</artifactId>
</artifact>
<moduleInfo>
<name>org.jboss.logging</name>
<requires>
static jboss.logmanager;
static log4j*;
static slf4j.api;
*;
</requires>
</moduleInfo>
</module>
<module>
<artifact>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging-annotations</artifactId>
</artifact>
<moduleInfo>
<name>org.jboss.logging.annotations</name>
</moduleInfo>
</module>
<module>
<artifact>
<groupId>org.jboss.xnio</groupId>
<artifactId>xnio-api</artifactId>
</artifact>
<moduleInfo>
<name>org.jboss.xnio.api</name>
<addServiceUses>true</addServiceUses>
<exports>
org.xnio._private to org.jboss.logging;
*;
</exports>
</moduleInfo>
</module>
<module>
<artifact>
<groupId>org.jboss.xnio</groupId>
<artifactId>xnio-nio</artifactId>
</artifact>
<moduleInfo>
<name>org.jboss.xnio.nio</name>
<requires>
static org.jboss.logging.annotations;
org.jboss.logging;
*;
</requires>
</moduleInfo>
</module>
<module>
<artifact>
<groupId>org.eclipse.jetty.alpn</groupId>
<artifactId>alpn-api</artifactId>
</artifact>
<moduleInfo>
<name>alpn.api</name>
</moduleInfo>
</module>
<module>
<artifact>
<groupId>io.undertow</groupId>
<artifactId>undertow-core</artifactId>
</artifact>
<moduleInfo>
<name>io.undertow.core</name>
</moduleInfo>
</module>
</modules>
<module>
<mainClass>com.example.HelloWorldServer</mainClass>
<moduleInfo>
<name>com.example</name>
<exports>!*;</exports>
</moduleInfo>
</module>
</configuration>
<goals>
<goal>add-module-info</goal>
</goals>
</execution>
<execution>
<id>create-runtime-image</id>
<phase>package</phase>
Expand Down

0 comments on commit 8448593

Please sign in to comment.