Browse Source

Polish

pull/15823/head
Stephane Nicoll 7 years ago
parent
commit
5e2d5959f3
  1. 24
      spring-boot-project/spring-boot-docs/pom.xml
  2. 1
      spring-boot-project/spring-boot-parent/pom.xml

24
spring-boot-project/spring-boot-docs/pom.xml

@ -944,14 +944,6 @@
<artifactId>spring-boot-starter-web</artifactId> <artifactId>spring-boot-starter-web</artifactId>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<!-- Documentation generation -->
<dependency>
<groupId>io.spring.docresources</groupId>
<artifactId>spring-doc-resources</artifactId>
<version>0.1.0.BUILD-SNAPSHOT</version>
<type>zip</type>
<optional>true</optional>
</dependency>
</dependencies> </dependencies>
<build> <build>
<plugins> <plugins>
@ -1162,15 +1154,19 @@
<execution> <execution>
<id>unpack-doc-resources</id> <id>unpack-doc-resources</id>
<goals> <goals>
<goal>unpack-dependencies</goal> <goal>unpack</goal>
</goals> </goals>
<phase>generate-resources</phase> <phase>generate-resources</phase>
<configuration> <configuration>
<includeGroupIds>io.spring.docresources</includeGroupIds> <artifactItems>
<includeArtifactIds>spring-doc-resources</includeArtifactIds> <artifactItem>
<includeTypes>zip</includeTypes> <groupId>io.spring.docresources</groupId>
<excludeTransitive>true</excludeTransitive> <artifactId>spring-doc-resources</artifactId>
<outputDirectory>${refdocs.build.directory}</outputDirectory> <version>${spring-doc-resources.version}</version>
<type>zip</type>
<outputDirectory>${refdocs.build.directory}</outputDirectory>
</artifactItem>
</artifactItems>
</configuration> </configuration>
</execution> </execution>
</executions> </executions>

1
spring-boot-project/spring-boot-parent/pom.xml

@ -27,6 +27,7 @@
<maven-resolver.version>1.1.1</maven-resolver.version> <maven-resolver.version>1.1.1</maven-resolver.version>
<spock.version>1.0-groovy-2.4</spock.version> <spock.version>1.0-groovy-2.4</spock.version>
<dependency-management-plugin.version>1.0.6.RELEASE</dependency-management-plugin.version> <dependency-management-plugin.version>1.0.6.RELEASE</dependency-management-plugin.version>
<spring-doc-resources.version>0.1.0.BUILD-SNAPSHOT</spring-doc-resources.version>
</properties> </properties>
<scm> <scm>
<url>http://github.com/spring-projects/spring-boot</url> <url>http://github.com/spring-projects/spring-boot</url>

Loading…
Cancel
Save