serializer-2.7.2.pom 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  6. <modelVersion>4.0.0</modelVersion>
  7. <parent>
  8. <groupId>org.apache</groupId>
  9. <artifactId>apache</artifactId>
  10. <version>4</version>
  11. </parent>
  12. <groupId>xalan</groupId>
  13. <artifactId>serializer</artifactId>
  14. <version>2.7.2</version>
  15. <name>Xalan Java Serializer</name>
  16. <description>
  17. Serializer to write out XML, HTML etc. as a stream of characters from an input DOM or from input
  18. SAX events.
  19. </description>
  20. <url>http://xml.apache.org/xalan-j/</url>
  21. <dependencies>
  22. <dependency>
  23. <groupId>xml-apis</groupId>
  24. <artifactId>xml-apis</artifactId>
  25. <version>1.3.04</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>xerces</groupId>
  29. <artifactId>xercesImpl</artifactId>
  30. <version>2.9.1</version>
  31. <optional>true</optional>
  32. </dependency>
  33. </dependencies>
  34. </project>