spring-modules
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.wildfly.swarm</groupId> <artifactId>spring-modules</artifactId> <version>1.0.0.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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.wildfly.swarm</groupId> <artifactId>spring-framework-parent</artifactId> <version>1.0.0.Final</version> <relativePath>../</relativePath> </parent> <groupId>org.wildfly.swarm</groupId> <artifactId>spring-modules</artifactId> <name>WildFly Swarm: Spring Modules</name> <description>WildFly Swarm: Spring Modules</description> <packaging>jar</packaging> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> </build> <dependencies> <dependency> <groupId>org.wildfly.swarm</groupId> <artifactId>bootstrap</artifactId> </dependency> <dependency> <groupId>org.wildfly.swarm</groupId> <artifactId>container-modules</artifactId> </dependency> <dependency> <groupId>org.wildfly.swarm</groupId> <artifactId>undertow-modules</artifactId> </dependency> <dependency> <groupId>org.wildfly.core</groupId> <artifactId>wildfly-core-feature-pack</artifactId> <type>zip</type> <scope>provided</scope> <exclusions> <exclusion> <groupId>*</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.wildfly</groupId> <artifactId>wildfly-servlet-feature-pack</artifactId> <type>zip</type> <scope>provided</scope> <exclusions> <exclusion> <groupId>*</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.wildfly</groupId> <artifactId>wildfly-feature-pack</artifactId> <type>zip</type> <scope>provided</scope> <exclusions> <exclusion> <groupId>*</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> </dependencies> </project>