Advertisement
Guest User

Untitled

a guest
Aug 10th, 2013
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. <!-- types project catalog file -->
  2. <?xml version="1.0" encoding="UTF-8"?>
  3. <catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">
  4. <!-- This Project -->
  5. <rewriteSystem systemIdStartString="http://schemas/core/types/"
  6. rewritePrefix="xsd/" />
  7. </catalog>
  8.  
  9. <!-- types project pomg file -->
  10. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  11. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  12. <modelVersion>4.0.0</modelVersion>
  13.  
  14. <parent>
  15. <groupId>schemas</groupId>
  16. <artifactId>core</artifactId>
  17. <version>1.0-SNAPSHOT</version>
  18. </parent>
  19.  
  20. <packaging>jar</packaging>
  21.  
  22. <groupId>schemas.core</groupId>
  23. <artifactId>types</artifactId>
  24.  
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.jvnet.jaxb2.maven2</groupId>
  28. <artifactId>maven-jaxb2-plugin</artifactId>
  29. <version>0.8.3</version>
  30. </dependency>
  31. </dependencies>
  32.  
  33. <build>
  34. <plugins>
  35. <plugin>
  36. <groupId>org.apache.maven.plugins</groupId>
  37. <artifactId>maven-compiler-plugin</artifactId>
  38. <version>2.5.1</version>
  39. <configuration>
  40. <source>1.7</source>
  41. <target>1.7</target>
  42. <showDeprecation>true</showDeprecation>
  43. <showWarnings>true</showWarnings>
  44. </configuration>
  45. </plugin>
  46. <plugin>
  47. <groupId>org.jvnet.jaxb2.maven2</groupId>
  48. <artifactId>maven-jaxb2-plugin</artifactId>
  49. <version>0.8.3</version>
  50. <configuration>
  51. <catalog>src/main/resources/catalog.xml</catalog>
  52. <catalogResolver>org.jvnet.jaxb2.maven2.resolver.tools.ClasspathCatalogResolver</catalogResolver>
  53. <extension>true</extension>
  54. <schemaDirectory>${basedir}/src/main/resources/xsd</schemaDirectory>
  55. <schemaIncludes>
  56. <include>types.xsd</include>
  57. </schemaIncludes>
  58. </configuration>
  59. <executions>
  60. <execution>
  61. <goals>
  62. <goal>generate</goal>
  63. </goals>
  64. </execution>
  65. </executions>
  66. </plugin>
  67. </plugins>
  68. </build>
  69. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement