xapi-dev
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.wetheinter</groupId> <artifactId>xapi-dev</artifactId> <version>0.5</version> </dependency>
<?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-dev-parent</artifactId> <groupId>net.wetheinter</groupId> <version>0.5</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>xapi-dev</artifactId> <name>XApi - Dev uber jar</name> <description>Everything needed to run a comprehensive dev environment. Just type X_ and pick a service from autocomplete; new dev modules will be added as they are built. The only dev service not included in the uber jar is xapi-dev-maven, as it includes all runtime dependencies of maven, adding ~4 seconds to build time, and 6 megabytes to the final output jar size (without xapi-dev-maven, it's ~1MB).</description> <url>WeTheInter.net</url> <build> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <configuration> <keepDependenciesWithProvidedScope>false</keepDependenciesWithProvidedScope> <createSourcesJar>true</createSourcesJar> <shadedArtifactAttached>false</shadedArtifactAttached> <artifactSet> <excludes> <exclude>net.wetheinter:gwt-dev</exclude> <exclude>net.wetheinter:gwt-user</exclude> <exclude>net.wetheinter:elemental</exclude> <exclude>org.apache.maven:*</exclude> <exclude>org.apache.*:*</exclude> <exclude>org.codehaus.plexus:*</exclude> <exclude>org.*:*</exclude> <exclude>javax.*:*</exclude> <exclude>commons-codec.*:*</exclude> <exclude>com.google.guava:*</exclude> <exclude>org.slf4j:*</exclude> </excludes> </artifactSet> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <additionalDependencies> <additionalDependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.1.0</version> </additionalDependency> <additionalDependency> <groupId>${gwt.groupId}</groupId> <artifactId>gwt-dev</artifactId> <version>${gwt.version}</version> </additionalDependency> <additionalDependency> <groupId>${gwt.groupId}</groupId> <artifactId>gwt-user</artifactId> <version>${gwt.version}</version> </additionalDependency> </additionalDependencies> <includeDependencySources>true</includeDependencySources> <includeTransitiveDependencySources>true</includeTransitiveDependencySources> <excludePackageNames>org.*:javax.*:com.*</excludePackageNames> <includes>net/wetheinter/**.java</includes> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skipTests>${xapi.skip.test}</skipTests> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <goals> <goal>test-jar</goal> </goals> <configuration> <forceCreation>true</forceCreation> <finalName>${project.artifactId}-${project.version}</finalName> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <properties> <xapi.skip.test>false</xapi.skip.test> </properties> </profile> </profiles> <dependencies> <dependency> <groupId>net.wetheinter</groupId> <artifactId>xapi-core-test</artifactId> <version>0.5</version> <scope>test</scope> </dependency> </dependencies> <properties> <xapi.skip.test>true</xapi.skip.test> </properties> </project>