task: addressing build warnings (#26877)
Signed-off-by: Steve Hawkins <shawkins@redhat.com>
This commit is contained in:
parent
3a04acab51
commit
6bbf8358b4
2 changed files with 20 additions and 33 deletions
|
@ -263,6 +263,26 @@
|
||||||
</resources>
|
</resources>
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
|
<execution>
|
||||||
|
<id>copy-raw-openapi-definition</id>
|
||||||
|
<phase>package</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>copy-resources</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<outputDirectory>${project.basedir}/target/apidocs-rest/output</outputDirectory>
|
||||||
|
<resources>
|
||||||
|
<resource>
|
||||||
|
<directory>${project.build.directory}/apidocs-rest/swagger/apidocs</directory>
|
||||||
|
<includes>
|
||||||
|
<include>**/openapi.yaml</include>
|
||||||
|
<include>**/openapi.json</include>
|
||||||
|
</includes>
|
||||||
|
</resource>
|
||||||
|
</resources>
|
||||||
|
<overwrite>true</overwrite>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
@ -352,31 +372,6 @@
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-resources-plugin</artifactId>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<id>copy-raw-openapi-definition</id>
|
|
||||||
<phase>package</phase>
|
|
||||||
<goals>
|
|
||||||
<goal>copy-resources</goal>
|
|
||||||
</goals>
|
|
||||||
<configuration>
|
|
||||||
<outputDirectory>${project.basedir}/target/apidocs-rest/output</outputDirectory>
|
|
||||||
<resources>
|
|
||||||
<resource>
|
|
||||||
<directory>${project.build.directory}/apidocs-rest/swagger/apidocs</directory>
|
|
||||||
<includes>
|
|
||||||
<include>**/openapi.yaml</include>
|
|
||||||
<include>**/openapi.json</include>
|
|
||||||
</includes>
|
|
||||||
</resource>
|
|
||||||
</resources>
|
|
||||||
<overwrite>true</overwrite>
|
|
||||||
</configuration>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
</profile>
|
</profile>
|
||||||
|
|
|
@ -73,14 +73,6 @@
|
||||||
<artifactId>maven-resolver-api</artifactId>
|
<artifactId>maven-resolver-api</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.jboss.arquillian</groupId>
|
|
||||||
<artifactId>arquillian-bom</artifactId>
|
|
||||||
<version>${arquillian-core.version}</version>
|
|
||||||
<type>pom</type>
|
|
||||||
<scope>import</scope>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<!-- Ability to compile/run jsp on undertow -->
|
<!-- Ability to compile/run jsp on undertow -->
|
||||||
<groupId>io.undertow.jastow</groupId>
|
<groupId>io.undertow.jastow</groupId>
|
||||||
|
|
Loading…
Reference in a new issue