<?xml version="1.0" encoding="UTF-8"?>
<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">
  <parent>
    <artifactId>xapi-jre-parent</artifactId>
    <groupId>net.wetheinter</groupId>
    <version>0.5</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>xapi-jre</artifactId>
  <name>XApi - Jre uber jar</name>
  <description>This module exists solely to package all other jre modules into a single
    uber jar.  This makes deploying to non-mavenized targets much easier.
    
    Of course, you would be wise to inherit your dependencies individually;
    the uber jar is intended for projects like collide,
    which have complex configuration, and adding many jars would be a pain.
    
    It also allows dependent modules to discover new features,
    as modules graduate from labs to final, they will be added here.
    As you type X_, autocomplete will expose newly added services.</description>
  <url>WeTheInter.net</url>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
      </plugin>
      <plugin>
        <artifactId>maven-javadoc-plugin</artifactId>
        <configuration>
          <includeDependencySources>true</includeDependencySources>
          <includeTransitiveDependencySources>true</includeTransitiveDependencySources>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
          <finalName>${project.artifactId}-${project.version}</finalName>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>net.wetheinter</groupId>
      <artifactId>xapi-core-test</artifactId>
      <version>0.5</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>junit</artifactId>
          <groupId>junit</groupId>
        </exclusion>
      </exclusions>
    </dependency>
  </dependencies>
</project>

