Move projects to better reflect the way that Spring Boot is released. The following projects are under `spring-boot-project`: - `spring-boot` - `spring-boot-autoconfigure` - `spring-boot-tools` - `spring-boot-starters` - `spring-boot-actuator` - `spring-boot-actuator-autoconfigure` - `spring-boot-test` - `spring-boot-test-autoconfigure` - `spring-boot-devtools` - `spring-boot-cli` - `spring-boot-docs` See gh-9316
22 lines
632 B
XML
22 lines
632 B
XML
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd">
|
|
<id>starter-poms</id>
|
|
<formats>
|
|
<format>zip</format>
|
|
</formats>
|
|
<includeBaseDirectory>false</includeBaseDirectory>
|
|
<moduleSets>
|
|
<moduleSet>
|
|
<sources>
|
|
<fileSets>
|
|
<fileSet>
|
|
<includes>
|
|
<include>**/pom.xml</include>
|
|
</includes>
|
|
</fileSet>
|
|
</fileSets>
|
|
</sources>
|
|
</moduleSet>
|
|
</moduleSets>
|
|
</assembly> |