Restoring enunciate

This commit is contained in:
Luca Frosini 2022-09-22 17:32:08 +02:00
parent c9336eb423
commit 6ef47a947e
1 changed files with 36 additions and 36 deletions

72
pom.xml
View File

@ -282,43 +282,43 @@
</plugin> </plugin>
<!-- Enunciate Maven plugin --> <!-- Enunciate Maven plugin -->
<!-- <plugin> --> <plugin>
<!-- <groupId>com.webcohesion.enunciate</groupId> --> <groupId>com.webcohesion.enunciate</groupId>
<!-- <artifactId>enunciate-maven-plugin</artifactId> --> <artifactId>enunciate-maven-plugin</artifactId>
<!-- <version>${enunciate.version}</version> --> <version>${enunciate.version}</version>
<!-- <executions> --> <executions>
<!-- <execution> --> <execution>
<!-- <id>assemble</id> --> <id>assemble</id>
<!-- <goals> --> <goals>
<!-- <goal>assemble</goal> --> <goal>assemble</goal>
<!-- </goals> --> </goals>
<!-- </execution> --> </execution>
<!-- </executions> --> </executions>
<!-- </plugin> --> </plugin>
<!-- Copy Enunciate Documentation from your-application/api-docs into your war --> <!-- Copy Enunciate Documentation from your-application/api-docs into your war -->
<!-- <plugin> --> <plugin>
<!-- <groupId>org.apache.maven.plugins</groupId> --> <groupId>org.apache.maven.plugins</groupId>
<!-- <artifactId>maven-resources-plugin</artifactId> --> <artifactId>maven-resources-plugin</artifactId>
<!-- <executions> --> <executions>
<!-- <execution> --> <execution>
<!-- <id>copy-enunciate-docs</id> --> <id>copy-enunciate-docs</id>
<!-- <phase>process-resources</phase> --> <phase>process-resources</phase>
<!-- <goals> --> <goals>
<!-- <goal>copy-resources</goal> --> <goal>copy-resources</goal>
<!-- </goals> --> </goals>
<!-- <configuration> --> <configuration>
<!-- <outputDirectory>target</outputDirectory> --> <outputDirectory>target</outputDirectory>
<!-- <resources> --> <resources>
<!-- <resource> --> <resource>
<!-- <targetPath>${project.build.directory}/${project.artifactId}-${project.version}/api-docs</targetPath> --> <targetPath>${project.build.directory}/${project.artifactId}-${project.version}/api-docs</targetPath>
<!-- <directory>${project.build.directory}/api-docs</directory> --> <directory>${project.build.directory}/api-docs</directory>
<!-- <filtering>true</filtering> --> <filtering>true</filtering>
<!-- </resource> --> </resource>
<!-- </resources> --> </resources>
<!-- </configuration> --> </configuration>
<!-- </execution> --> </execution>
<!-- </executions> --> </executions>
<!-- </plugin> --> </plugin>
</plugins> </plugins>
</build> </build>