Simple XML.
Simple is a high performance XML serialization and configuration framework for Java.
Here is the list of declaration for simple-xml. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.simpleframework</groupId> <artifactId>simple-xml</artifactId> <version>2.3.5</version> </dependency>
If you think this Maven repository POM file listing for simple-xml is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The simple-xml-2.3.5 has 5 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 3.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. | 1966 |
XML Parser | stax-api 1.0.1 StAX API is the standard java XML processing API defined by JSR-173 | 254 |
XML Parser | stax 1.2.0 StAX is the reference implementation of the StAX API | 94 |
The following plugins are used in the simple-xml-2.3.5.jar
The following packages are defined in the simple-xml-2.3.5.jar
org.simpleframework.xml org.simpleframework.xml.convert org.simpleframework.xml.core org.simpleframework.xml.filter org.simpleframework.xml.strategy org.simpleframework.xml.stream org.simpleframework.xml.transform org.simpleframework.xml.util
Here is the content of the POM file.
<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>org.simpleframework</groupId> <artifactId>simple-xml</artifactId> <packaging>jar</packaging> <version>2.3.5</version> <name>Simple XML</name> <url>http://simple.sourceforge.net</url> <description>Simple is a high performance XML serialization and configuration framework for Java</description> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>http://svn.sourceforge.net/viewvc/simple/trunk/download/stream</url> <connection>https://svn.sourceforge.net/svnroot/simple/trunk/download/stream</connection> </scm> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>stax</groupId> <artifactId>stax-api</artifactId> <version>1.0.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>stax</groupId> <artifactId>stax</artifactId> <version>1.2.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>xmlunit</groupId> <artifactId>xmlunit</artifactId> <version>1.0</version> <scope>test</scope> </dependency> <dependency> <groupId>com.thoughtworks.xstream</groupId> <artifactId>xstream</artifactId> <version>1.3.1</version> <scope>test</scope> </dependency> </dependencies> <reporting> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> </plugin> </plugins> </reporting> <build> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh-external</artifactId> <version>1.0-alpha-5</version> </extension> </extensions> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <repository> <id>sourceforge</id> <name>Source Forge Repository</name> <url>scp://web.sourceforge.net/home/groups/s/si/simpleweb/htdocs/maven</url> </repository> </distributionManagement> </project>