Add an element ID to testpage for testing
This commit is contained in:
parent
93b8d2fb2d
commit
251df0849d
|
@ -244,6 +244,18 @@
|
||||||
<packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes>
|
<packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-source-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<phase>package</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>jar-no-fork</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
|
|
@ -62,7 +62,7 @@
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<th:block th:text="${action}"/>
|
<th:block th:text="${action}"/>
|
||||||
<a th:href="${requestUrl}" th:utext="${requestUrlText}"/>
|
<a th:href="${requestUrl}" th:utext="${requestUrlText}" id="requestUrlAnchor"/>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr th:if="${requestHeaders.length} > 0">
|
<tr th:if="${requestHeaders.length} > 0">
|
||||||
|
|
Loading…
Reference in New Issue