Guest User

Untitled

a guest
Feb 23rd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. <project ...>
  2. ...
  3. <dependencies>
  4. ...
  5. <dependency>
  6. <groupId>${project.groupId}</groupId>
  7. <artifactId>${artifactId.prefix}-xmlns-model</artifactId>
  8. <version>${project.parent.version}</version>
  9. </dependency>
  10. ...
  11. </dependencies>
  12. <build>
  13. <plugins>
  14. ...
  15. <plugin>
  16. <groupId>org.jvnet.jaxb2.maven2</groupId>
  17. <artifactId>maven-jaxb2-plugin</artifactId>
  18. <configuration>
  19. <verbose>true</verbose>
  20. <extension>true</extension>
  21. <strict>false</strict>
  22. <useDependenciesAsEpisodes>true</useDependenciesAsEpisodes>
  23. ...
  24. <catalog>src/main/jaxb/catalog.xml</catalog>
  25. <schemaDirectory>src/main/resources</schemaDirectory>
  26. <schemaIncludes>
  27. <include>xacml-core-v3-schema-wd-17.xsd</include>
  28. </schemaIncludes>
  29. </configuration>
  30. <executions>
  31. <execution>
  32. <goals>
  33. <goal>generate</goal>
  34. </goals>
  35. </execution>
  36. </executions>
  37. </plugin>
  38. </plugins>
  39. </build>
  40. </project>
  41.  
  42. <xs:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="http://www.w3.org/2001/xml.xsd"/>
  43.  
  44. <?xml version="1.0" encoding="UTF-8"?>
  45. <catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">
  46. <system systemId="http://www.w3.org/2001/xml.xsd" uri="maven:org.ow2.authzforce:authzforce-ce-xmlns-model:jar!/xml.xsd" />
  47. </catalog>
  48.  
  49. <xs:import namespace="http://www.w3.org/XML/1998/namespace" />
  50.  
  51. <?xml version="1.0" encoding="UTF-8"?>
  52. <catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">
  53. <public publicId="http://www.w3.org/XML/1998/namespace" uri="maven:org.ow2.authzforce:authzforce-ce-xmlns-model:jar!/xml.xsd" />
  54. </catalog>
Add Comment
Please, Sign In to add comment