Skip to content

Commit e9eac40

Browse files
committed
Checkpoint before follow-up message
1 parent 2ab6c80 commit e9eac40

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

spml/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@
184184
</configuration>
185185
</plugin>
186186

187-
<!-- XML validation against DTD -->
187+
<!-- XML validation against XSD -->
188188
<plugin>
189189
<groupId>org.codehaus.mojo</groupId>
190190
<artifactId>xml-maven-plugin</artifactId>
@@ -203,6 +203,7 @@
203203
<include>*.xml</include>
204204
</includes>
205205
<validating>true</validating>
206+
<schemaLanguage>http://www.w3.org/2001/XMLSchema</schemaLanguage>
206207
</validationSet>
207208
</validationSets>
208209
</configuration>

spml/src/main/resources/112-java-maven-documentation.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<!DOCTYPE system-prompt SYSTEM "system-prompt.dtd">
3-
<system-prompt id="112-java-maven-documentation" version="1.0">
2+
<system-prompt xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="system-prompt.xsd"
4+
id="112-java-maven-documentation" version="1.0">
45
<metadata>
56
<description>Create README-DEV.md with information about how to use the Maven project</description>
67
<globs>pom.xml</globs>

0 commit comments

Comments
 (0)