Added back enunciate

This commit is contained in:
Luca Frosini 2022-07-12 11:29:53 +02:00
parent b0fc3c0f59
commit 6dbac9bff4
1 changed files with 40 additions and 40 deletions

80
pom.xml
View File

@ -252,50 +252,50 @@
</dependencies> </dependencies>
<!-- <build> --> <build>
<!-- <plugins> --> <plugins>
<!-- 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/docs into your war --> <!-- Copy Enunciate Documentation from your-application/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}/docs</targetPath> --> <targetPath>${project.build.directory}/${project.artifactId}-${project.version}/docs</targetPath>
<!-- <directory>${project.build.directory}/docs</directory> --> <directory>${project.build.directory}/docs</directory>
<!-- <filtering>true</filtering> --> <filtering>true</filtering>
<!-- </resource> --> </resource>
<!-- </resources> --> </resources>
<!-- </configuration> --> </configuration>
<!-- </execution> --> </execution>
<!-- </executions> --> </executions>
<!-- </plugin> --> </plugin>
<!-- </plugins> --> </plugins>
<!-- </build> --> </build>
</project> </project>