All Downloads are FREE. Search and download functionalities are using the official Maven repository.

-lgpl.3.2.2.source-code.project.xml Maven / Gradle / Ivy

There is a newer version: 3.2.7
Show newest version
<?xml version="1.0" encoding="UTF-8"?>

<!-- Sample Maven project file for Woodstox, written by Christian Niles
  -->

<project>
    
    <!-- maven project version -->
    <pomVersion>3</pomVersion>
    
    <!-- Project IDs (used in JARs and such) -->
    <id>woodstox</id>
    <groupId>woodstox</groupId>
    
    <!-- Project Info -->
    <name>Woodstox</name>
    <currentVersion>3.2.0</currentVersion>
    
    <shortDescription>
         Woodstox is an Open Source XML-processor written in Java, that implements Stax API (version 1.0).
    </shortDescription>
    
    <description>
         Woodstox is an Open Source XML-processor written in Java, that implements Stax API (version 1.0). Stax specifies interface for standard J2ME "pull-parsers" (as opposed to "push parser" like SAX API ones); at high-level Stax specifies 2 types (iterator and event based) readers and writers that used to access and output XML documents.
    </description>
    
    <!-- Project URL -->
    <url>http://woodstox.codehaus.org/</url>
    
    <!-- Developers -->
    <developers>
        <developer>
            <name>Tatu Saloranta</name>
            <email>[email protected]</email>
        </developer>
    </developers>
    
    <!-- Distribution Licenses -->
    <licenses>
        <license>
            <name>LGPL</name>
            <url>http://opensource.org/licenses/lgpl-license.php</url>
        </license>
        <license>
            <name>ASL</name>
            <url>http://opensource.org/licenses/apache2.0.php</url>
        </license>
    </licenses>
    
    <!-- basic dependencies -->
    <dependencies>
        
        <!-- Stax API -->
        <dependency>
            <groupId>jsr173</groupId>
            <artifactId>jsr173-api</artifactId>
            <jar>jsr173_1.0_api.jar</jar>
            <url>http://www.jcp.org/en/jsr/detail?id=173</url>
        </dependency>
        
    </dependencies>
    
    <!-- Build Settings -->
    <build>
        <sourceDirectory>${basedir}/src/java</sourceDirectory>
        <resources>
            <resource>
		<directory>${basedir}/src/resources</directory>
		<targetPath>META-INF/services</targetPath>
		<includes>
		  <include>javax.xml.stream.*</include>
		</includes>
            </resource>
        </resources>
    
    </build>
    
</project>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy