Search   Browse   Javadoc Search   Javadoc Browse   More   Web Tutorials
Maven-Focused Java Class and Archive Search Engine

Dependency Information / POM Inspector

Dependency Information
Maven Dependency
<dependency>
   <groupId>com.thoughtworks.xstream</groupId>
   <artifactId>xstream</artifactId>
   <version>1.2.2</version>
</dependency>
Ivy Dependency
<dependency org="com.thoughtworks.xstream" name="xstream" rev="1.2.2" />
Archive: /com/thoughtworks/xstream Project search for 'com.thoughtworks.xstream'/xstream Project search for 'xstream'/1.2.2/xstream-1.2.2.jar Inspect contents of 'xstream-1.2.2.jar'  
View Archive Details: xstream-1.2.2.jar

Project Summary
Name: XStream Core
Group ID:  Project search for 'com.thoughtworks.xstream' com.thoughtworks.xstream
Artifact ID:  Project search for 'xstream' xstream
Version: 1.2.2
Inspecting /com/thoughtworks/xstream Project search for 'com.thoughtworks.xstream'/xstream Project search for 'xstream'/1.2.2/xstream-1.2.2.pom 
POM
<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>
  <parent>
    <groupId>com.thoughtworks.xstreamProject search for 'com.thoughtworks.xstream'</groupId>
    <artifactId>xstream-parentProject search for 'xstream-parent'</artifactId>
    <version>1.2.2</version>
  </parent>
  <artifactId>xstreamProject search for 'xstream'</artifactId>
  <packaging>jar</packaging>
  <name>XStream Core</name>

  <dependencies>
    <dependency>
      <groupId>dom4jProject search for 'dom4j'</groupId>
      <artifactId>dom4jProject search for 'dom4j'</artifactId>
      <optional>true</optional>
    </dependency>

    <dependency>
      <groupId>jdomProject search for 'jdom'</groupId>
      <artifactId>jdomProject search for 'jdom'</artifactId>
      <optional>true</optional>
    </dependency>

    <dependency>
      <groupId>joda-timeProject search for 'joda-time'</groupId>
      <artifactId>joda-timeProject search for 'joda-time'</artifactId>
      <optional>true</optional>
    </dependency>

    <dependency>
      <groupId>com.megginson.saxProject search for 'com.megginson.sax'</groupId>
      <artifactId>xml-writerProject search for 'xml-writer'</artifactId>
      <optional>true</optional>
    </dependency>

    <dependency>
      <groupId>staxProject search for 'stax'</groupId>
      <artifactId>staxProject search for 'stax'</artifactId>
      <optional>true</optional>
    </dependency>

    <dependency>
      <groupId>org.codehaus.woodstoxProject search for 'org.codehaus.woodstox'</groupId>
      <artifactId>wstx-aslProject search for 'wstx-asl'</artifactId>
      <optional>true</optional>
    </dependency>

    <dependency>
      <groupId>staxProject search for 'stax'</groupId>
      <artifactId>stax-apiProject search for 'stax-api'</artifactId>
      <optional>true</optional>
    </dependency>

    <dependency>
      <groupId>xomProject search for 'xom'</groupId>
      <artifactId>xomProject search for 'xom'</artifactId>
      <optional>true</optional>
    </dependency>

    <dependency>
      <groupId>xpp3Project search for 'xpp3'</groupId>
      <artifactId>xpp3_minProject search for 'xpp3_min'</artifactId>
    </dependency>

    <dependency>
      <groupId>cglibProject search for 'cglib'</groupId>
      <artifactId>cglib-nodepProject search for 'cglib-nodep'</artifactId>
      <optional>true</optional>
    </dependency>

    <dependency>
      <groupId>org.codehaus.jettisonProject search for 'org.codehaus.jettison'</groupId>
      <artifactId>jettisonProject search for 'jettison'</artifactId>
      <optional>true</optional>
    </dependency>


    <!-- test-scoped -->
    <dependency>
      <groupId>junitProject search for 'junit'</groupId>
      <artifactId>junitProject search for 'junit'</artifactId>
    </dependency>

    <dependency>
      <groupId>jmockProject search for 'jmock'</groupId>
      <artifactId>jmockProject search for 'jmock'</artifactId>
    </dependency>

    <dependency>
      <groupId>oroProject search for 'oro'</groupId>
      <artifactId>oroProject search for 'oro'</artifactId>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>commons-langProject search for 'commons-lang'</groupId>
      <artifactId>commons-langProject search for 'commons-lang'</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.pluginsProject search for 'org.apache.maven.plugins'</groupId>
        <artifactId>maven-surefire-pluginProject search for 'maven-surefire-plugin'</artifactId>
        <configuration>
          <systemProperties>
            <property>
              <name>test.src.dir</name>
              <value>${project.build.testSourceDirectory}</value>
            </property>
          </systemProperties>
        </configuration>
      </plugin>
    </plugins>
  </build>

  <profiles>
    <profile>
      <id>jdk15</id>
      <activation>
        <jdk>1.5</jdk>
      </activation>
      <build>
        <plugins>
          <!-- two-stage compile process as a workaround until multiple JDK support is added
            http://jira.codehaus.org/browse/MCOMPILER-37 
          -->
          <plugin>
            <groupId>org.apache.maven.pluginsProject search for 'org.apache.maven.plugins'</groupId>
            <artifactId>maven-compiler-pluginProject search for 'maven-compiler-plugin'</artifactId>
            <configuration>
              <source>1.3</source>
              <target>1.3</target>
              <excludes>
                <exclude>**/annotations/*</exclude>
                <exclude>**/enums/*</exclude>
              </excludes>
              <testExcludes>
                <exclude>**/annotations/*</exclude>
                <exclude>**/enums/*</exclude>
                <exclude>**/acceptance/SecurityManagerTest*</exclude>
              </testExcludes>
            </configuration>
            <executions>
              <execution>
                <id>compile-jdk15</id>
                <configuration>
                  <source>1.5</source>
                  <target>1.5</target>
                  <excludes>
                    <exclude>foo</exclude>
                    <exclude>foo</exclude>
                  </excludes>
                  <testExcludes>
                    <exclude>foo</exclude>
                    <exclude>foo</exclude>
                    <exclude>**/acceptance/SecurityManagerTest*</exclude>
                  </testExcludes>
                </configuration>
                <goals>
                  <goal>compile</goal>
                  <goal>testCompile</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.pluginsProject search for 'org.apache.maven.plugins'</groupId>
            <artifactId>maven-javadoc-pluginProject search for 'maven-javadoc-plugin'</artifactId>
            <executions>
              <execution>
                <id>attach-javadoc</id>
                <phase>package</phase>
                <goals>
                  <goal>jar</goal>
                </goals>
                <configuration>
                  <excludePackageNames>
                    com.thoughtworks.xstream.core.*:com.thoughtworks.xstream.io.xml.xppdom.*
                  </excludePackageNames>
                  <links>
                    <link>http://java.sun.com/j2se/1.5/docs/api</link>
                  </links>
                </configuration>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.pluginsProject search for 'org.apache.maven.plugins'</groupId>
            <artifactId>maven-source-pluginProject search for 'maven-source-plugin'</artifactId>
          </plugin>
        </plugins>
      </build>
    </profile>
    <profile>
      <!-- Drop this profile if MNG-1910 is applied! -->
      <id>jdk16</id>
      <activation>
        <jdk>1.6</jdk>
      </activation>
      <build>
        <plugins>
          <!-- two-stage compile process as a workaround until multiple JDK support is added
            http://jira.codehaus.org/browse/MCOMPILER-37 
          -->
          <plugin>
            <groupId>org.apache.maven.pluginsProject search for 'org.apache.maven.plugins'</groupId>
            <artifactId>maven-compiler-pluginProject search for 'maven-compiler-plugin'</artifactId>
            <configuration>
              <source>1.3</source>
              <target>1.3</target>
              <excludes>
                <exclude>**/annotations/*</exclude>
                <exclude>**/enums/*</exclude>
              </excludes>
              <testExcludes>
                <exclude>**/annotations/*</exclude>
                <exclude>**/enums/*</exclude>
                <exclude>**/acceptance/SecurityManagerTest*</exclude>
              </testExcludes>
            </configuration>
            <executions>
              <execution>
                <id>compile-jdk15</id>
                <configuration>
                  <source>1.5</source>
                  <target>1.5</target>
                  <excludes>
                    <exclude>foo</exclude>
                    <exclude>foo</exclude>
                  </excludes>
                  <testExcludes>
                    <exclude>foo</exclude>
                    <exclude>foo</exclude>
                    <exclude>**/acceptance/SecurityManagerTest*</exclude>
                  </testExcludes>
                </configuration>
                <goals>
                  <goal>compile</goal>
                  <goal>testCompile</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.pluginsProject search for 'org.apache.maven.plugins'</groupId>
            <artifactId>maven-javadoc-pluginProject search for 'maven-javadoc-plugin'</artifactId>
            <executions>
              <execution>
                <id>attach-javadoc</id>
                <phase>package</phase>
                <goals>
                  <goal>jar</goal>
                </goals>
                <configuration>
                  <excludePackageNames>
                    com.thoughtworks.xstream.core.*:com.thoughtworks.xstream.io.xml.xppdom.*
                  </excludePackageNames>
                  <links>
                    <link>http://java.sun.com/j2se/1.5/docs/api</link>
                  </links>
                </configuration>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.pluginsProject search for 'org.apache.maven.plugins'</groupId>
            <artifactId>maven-source-pluginProject search for 'maven-source-plugin'</artifactId>
          </plugin>
        </plugins>
      </build>
    </profile>
    <profile>
      <id>jdk14</id>
      <activation>
        <jdk>1.4</jdk>
      </activation>
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.pluginsProject search for 'org.apache.maven.plugins'</groupId>
            <artifactId>maven-compiler-pluginProject search for 'maven-compiler-plugin'</artifactId>
            <configuration>
              <source>1.4</source>
              <target>1.4</target>
              <excludes>
                <exclude>**/annotations/*</exclude>
                <exclude>**/enums/*</exclude>
              </excludes>
              <testExcludes>
                <exclude>**/annotations/*</exclude>
                <exclude>**/enums/*</exclude>
                <exclude>**/reflection/PureJavaReflectionProvider15Test*</exclude>
                <exclude>**/acceptance/SecurityManagerTest*</exclude>
              </testExcludes>
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
    <profile>
      <id>macosx</id>
      <activation>
        <os>
          <name>Mac OS X</name>
        </os>
      </activation>
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.pluginsProject search for 'org.apache.maven.plugins'</groupId>
            <artifactId>maven-surefire-pluginProject search for 'maven-surefire-plugin'</artifactId>
            <configuration>
              <excludes>
                <!-- Some apple.awt classes throw UnsupportedOperationException  -->
                <exclude>**/SwingTest.java</exclude>
              </excludes>
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>

  <reporting>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.pluginsProject search for 'org.apache.maven.plugins'</groupId>
        <artifactId>maven-javadoc-pluginProject search for 'maven-javadoc-plugin'</artifactId>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.pluginsProject search for 'org.apache.maven.plugins'</groupId>
        <artifactId>maven-surefire-report-pluginProject search for 'maven-surefire-report-plugin'</artifactId>
      </plugin>
      <plugin>
        <groupId>org.codehaus.mojoProject search for 'org.codehaus.mojo'</groupId>
        <artifactId>cobertura-maven-pluginProject search for 'cobertura-maven-plugin'</artifactId>
      </plugin>
    </plugins>
  </reporting>

</project>