spring-boot
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.wildfly.swarm</groupId> <artifactId>spring-boot</artifactId> <version>1.0.0.Alpha2</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-boot-parent</artifactId> <version>1.0.0.Alpha2</version> </parent> <groupId>org.wildfly.swarm</groupId> <artifactId>spring-boot</artifactId> <name>WildFly Swarm: Spring Boot</name> <description>WildFly Swarm: Spring Boot</description> <packaging>jar</packaging> <dependencies> <dependency> <groupId>org.wildfly.swarm</groupId> <artifactId>container</artifactId> </dependency> <dependency> <groupId>org.wildfly.swarm</groupId> <artifactId>msc</artifactId> </dependency> <dependency> <groupId>org.wildfly.swarm</groupId> <artifactId>undertow</artifactId> </dependency> <dependency> <groupId>org.wildfly.swarm</groupId> <artifactId>logging</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> </dependency> </dependencies> </project>