XSOM.
XML Schema Object Model (XSOM) is a Java library that allows applications to easily parse XML Schema documents and inspect information in them. It is expected to be useful for applications that need to take XML Schema as an input..
Here is the list of declaration for xsom. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.sun.xsom</groupId> <artifactId>xsom</artifactId> <version>20100725</version> </dependency>
If you think this Maven repository POM file listing for xsom is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:CDDL v1.0 / GPL v2 dual license
URL: https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html.
The xsom-20100725 has 2 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | junit 4.8.1 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 1256 |
The following table lists the most popular artifacts which are depending on xsom-20100725. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Cache | ehcache-core 2.4.5 This is the ehcache core module. Pair it with other modules for added functionality. | 6 |
Parser | jaxb2-basics-jaxb-xjc 2.1.13.MR3 Modular build of schema compiler (XJC) from JAXB RI | 6 |
Cache | ehcache-core 2.5.2 This is the ehcache core module. Pair it with other modules for added functionality. | 18 |
Cache | ehcache-core 2.5.7 This is the ehcache core module. Pair it with other modules for added functionality. | 5 |
Cache | ehcache-core 2.4.0 This is the ehcache core module. Pair it with other modules for added functionality. | 6 |
Cache | ehcache-core 2.6.5 This is the ehcache core module. Pair it with other modules for added functionality. | 6 |
Cache | ehcache-core 2.4.8 This is the ehcache core module. Pair it with other modules for added functionality. | 7 |
Cache | ehcache-core 2.6.8 This is the ehcache core module. Pair it with other modules for added functionality. | 13 |
Cache | ehcache-core 2.5.0 This is the ehcache core module. Pair it with other modules for added functionality. | 5 |
Cache | ehcache-core 2.6.2 This is the ehcache core module. Pair it with other modules for added functionality. | 28 |
Cache | ehcache-core 2.5.1 This is the ehcache core module. Pair it with other modules for added functionality. | 10 |
Cache | ehcache-core 2.6.0 This is the ehcache core module. Pair it with other modules for added functionality. | 6 |
Cache | ehcache-core 2.4.1 This is the ehcache core module. Pair it with other modules for added functionality. | 5 |
Cache | ehcache-core 2.5.6 This is the ehcache core module. Pair it with other modules for added functionality. | 5 |
Cache | ehcache-core 2.6.6 This is the ehcache core module. Pair it with other modules for added functionality. | 7 |
Cache | ehcache-core 2.4.3 This is the ehcache core module. Pair it with other modules for added functionality. | 17 |
The following plugins are used in the xsom-20100725.jar
The following packages are defined in the xsom-20100725.jar
com.sun.xml.xsom com.sun.xml.xsom.impl com.sun.xml.xsom.impl.parser com.sun.xml.xsom.impl.parser.state com.sun.xml.xsom.impl.scd com.sun.xml.xsom.impl.util com.sun.xml.xsom.parser com.sun.xml.xsom.util com.sun.xml.xsom.visitor
Here is the content of the POM file.
<?xml version="1.0"?> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.sun.xsom</groupId> <artifactId>xsom</artifactId> <version>20100725</version> <packaging>jar</packaging> <name>XSOM</name> <description>XML Schema Object Model (XSOM) is a Java library that allows applications to easily parse XML Schema documents and inspect information in them. It is expected to be useful for applications that need to take XML Schema as an input.</description> <url>https://xsom.dev.java.net/</url> <licenses> <license> <name>CDDL v1.0 / GPL v2 dual license</name> <url>https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://xsom.dev.java.net/source/browse/xsom/xsom</url> <connection>scm:cvs:pserver:guest@cvs.dev.java.net:/cvs/xsom/xsom</connection> <developerConnection>scm:cvs:pserver:username@cvs.dev.java.net:/cvs/xsom/xsom</developerConnection> </scm> <dependencies> <dependency> <groupId>relaxngDatatype</groupId> <artifactId>relaxngDatatype</artifactId> <version>20020414</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> </dependencies> <build> <sourceDirectory>src</sourceDirectory> <testSourceDirectory>test</testSourceDirectory> <resources> <resource> <directory>src</directory> <excludes> <exclude>**/*.java</exclude> </excludes> </resource> </resources> <testResources> <testResource> <directory>test</directory> <excludes> <exclude>**/*.java</exclude> </excludes> </testResource> </testResources> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>add-source</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>build/src</source> </sources> </configuration> </execution> </executions> </plugin> <!--plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>javacc-maven-plugin</artifactId> <version>2.6</version> <executions> <execution> <id>javacc</id> <goals> <goal>javacc</goal> </goals> <configuration> <sourceDirectory>src/org/kohsuke/rngom/parse/compact</sourceDirectory> <outputDirectory>src/org/kohsuke/rngom/parse/compact</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skipTests>true</skipTests> </configuration> </plugin--> </plugins> <pluginManagement> <plugins> <plugin> <inherited>true</inherited> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> </plugins> </pluginManagement> </build> </project>