1+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
2+ <modelVersion >4.0.0</modelVersion >
3+
4+ <parent >
5+ <groupId >com.seveninformatics.cityehr.documentation</groupId >
6+ <artifactId >cityehr-documentation-parent</artifactId >
7+ <version >1.0.0-SNAPSHOT</version >
8+ <relativePath >../cityehr-documentation-parent</relativePath >
9+ </parent >
10+
11+ <artifactId >cityehr-documentation-common</artifactId >
12+ <packaging >pom</packaging >
13+
14+ <name >cityEHR Documentation Common Files</name >
15+ <description >Common Files for cityEHR documentation projects</description >
16+
17+ <scm >
18+ <connection >scm:git:https://github.com/cityehr/cityehr-documentation.git</connection >
19+ <developerConnection >scm:git:https://github.com/cityehr/cityehr-documentation.git</developerConnection >
20+ <url >scm:git:https://github.com/cityehr/cityehr-documentation.git</url >
21+ </scm >
22+
23+ <build >
24+ <plugins >
25+ <plugin >
26+ <groupId >org.codehaus.mojo</groupId >
27+ <artifactId >xml-maven-plugin</artifactId >
28+ <executions >
29+ <execution >
30+ <id >validate-xslt</id >
31+ <phase >validate</phase >
32+ <goals >
33+ <goal >validate</goal >
34+ </goals >
35+ <configuration >
36+ <catalogHandling >strict</catalogHandling >
37+ <catalogs >
38+ <catalog >${common.catalog.path} </catalog >
39+ </catalogs >
40+ <validationSets >
41+ <validationSet >
42+ <schemaLanguage >http://www.w3.org/2001/XMLSchema</schemaLanguage >
43+ <publicId >http://www.w3.org/1999/XSL/Transform</publicId >
44+ <dir >src/main/xslt</dir >
45+ <includes >
46+ <include >*.xslt</include >
47+ </includes >
48+ </validationSet >
49+ </validationSets >
50+ </configuration >
51+ </execution >
52+ </executions >
53+ </plugin >
54+
55+ <plugin >
56+ <groupId >io.xspec.maven</groupId >
57+ <artifactId >xspec-maven-plugin</artifactId >
58+ <version >2.2.0</version >
59+ <dependencies >
60+ <dependency >
61+ <groupId >net.sf.saxon</groupId >
62+ <artifactId >Saxon-HE</artifactId >
63+ <!-- Not yet compatible with Saxon 12, see: https://github.com/xspec/xspec-maven-plugin-1/issues/79 -->
64+ <version >10.9</version >
65+ </dependency >
66+ <dependency >
67+ <!-- Not yet compatible with XSpec 3, see: https://github.com/xspec/xspec-maven-plugin-1/issues/79 -->
68+ <groupId >io.xspec</groupId >
69+ <artifactId >xspec</artifactId >
70+ <version >2.3.2</version >
71+ </dependency >
72+ <dependency >
73+ <!-- See: https://github.com/xspec/xspec-maven-plugin-1/issues/73 -->
74+ <groupId >commons-io</groupId >
75+ <artifactId >commons-io</artifactId >
76+ <version >2.11.0</version >
77+ </dependency >
78+ </dependencies >
79+ <executions >
80+ <execution >
81+ <id >xspec-tests</id >
82+ <phase >test</phase >
83+ <goals ><goal >run-xspec</goal ></goals >
84+ </execution >
85+ </executions >
86+ </plugin >
87+
88+ </plugins >
89+ </build >
90+
91+ </project >
0 commit comments