spring-boot-legacy
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-legacy</artifactId> <version>2.1.0.RELEASE</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.3.RELEASE</version> <relativePath/> </parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-legacy</artifactId> <version>2.1.0.RELEASE</version> <name>Spring Boot Legacy</name> <description>Spring Boot web.xml support</description> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <exclusions> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> </exclusion> </exclusions> <optional>true</optional> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <properties> <!-- Spring Boot 2.0.x requires Java 8 or 9 --> <java.version>1.8</java.version> <spring-boot.version>2.1.3.RELEASE</spring-boot.version> </properties> <url>http://spring.io</url> <organization> <name>Pivotal</name> <url>http://spring.io</url> </organization> <licenses> <license> <name>Apache 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <url>http://github.com/dsyer/spring-boot-legacy</url> <connection>scm:git:git://github.com/dsyer/spring-boot-legacy.git</connection> <developerConnection>scm:git:ssh://git@github.com/dsyer/spring-boot-legacy.git</developerConnection> <tag>HEAD</tag> </scm> <distributionManagement> <site> <id>static.springframework.org</id> <url>scp://static.springframework.org/var/www/domains/springframework.org/static/htdocs/spring-boot-legacy</url> </site> <repository> <id>repo.spring.io</id> <name>Spring Release Repository</name> <url>http://repo.spring.io/libs-release-local</url> </repository> <snapshotRepository> <id>repo.spring.io</id> <name>Spring Snapshot Repository</name> <url>http://repo.spring.io/libs-snapshot-local</url> </snapshotRepository> </distributionManagement> <developers> <developer> <id>dsyer</id> <name>Dave Syer</name> <email>dsyer@pivotal.io</email> </developer> </developers> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <!--forkMode>pertest</forkMode --> <includes> <include>**/*Tests.java</include> </includes> <excludes> <exclude>**/Abstract*.java</exclude> </excludes> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> <phase>package</phase> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadoc</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <inherited>false</inherited> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>milestone</id> <distributionManagement> <repository> <id>repo.spring.io</id> <name>Spring Milestone Repository</name> <url>http://repo.spring.io/libs-milestone-local</url> </repository> </distributionManagement> </profile> <profile> <id>central</id> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Release Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>