weld-servlet
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jboss.weld.servlet</groupId> <artifactId>weld-servlet</artifactId> <version>2.4.8.Final</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>weld-servlet-parent</artifactId> <groupId>org.jboss.weld.servlet</groupId> <version>2.4.8.Final</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.jboss.weld.servlet</groupId> <artifactId>weld-servlet</artifactId> <packaging>jar</packaging> <name>Weld Servlet (Uber Jar)</name> <url>http://weld.cdi-spec.org</url> <licenses> <license> <name>Apache License, Version 2.0</name> <distribution>repo</distribution> <url>http://www.apache.org/licenses/LICENSE-2.0.html</url> </license> </licenses> <dependencies> <dependency> <groupId>org.jboss.weld.servlet</groupId> <artifactId>weld-servlet-core</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.jboss.weld</groupId> <artifactId>weld-core-impl</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.jboss.weld</groupId> <artifactId>weld-core-jsf</artifactId> <optional>true</optional> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <configuration> <finalName>not-really</finalName> <attach>false</attach> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <id>default</id> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <createSourcesJar>true</createSourcesJar> <createDependencyReducedPom>false</createDependencyReducedPom> <artifactSet> <excludes> <exclude>xml-apis:xml-apis</exclude> <exclude>org.apache.tomcat:catalina</exclude> <exclude>org.apache.tomcat:servlet-api</exclude> <exclude>org.apache.tomcat:juli</exclude> <exclude>org.apache.tomcat:annotations-api</exclude> <exclude>javax.faces:jsf-api</exclude> <exclude>org.mortbay.jetty:jetty</exclude> <exclude>javax.el:el-api</exclude> <exclude>org.jboss.spec.javax.el:jboss-el-api_3.0_spec</exclude> </excludes> </artifactSet> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <activation> <property> <name>release</name> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <includeDependencySources>true</includeDependencySources> <dependencySourceIncludes> <dependency-source>org.jboss.weld:*</dependency-source> <dependency-source>org.jboss.weld.servlet:*</dependency-source> <dependency-source>javax.enterprise:*</dependency-source> <dependency-source>javax.inject:*</dependency-source> </dependencySourceIncludes> </configuration> <executions> <execution> <id>aggregate-jar</id> <goals> <goal>aggregate-jar</goal> </goals> <phase>package</phase> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>