jbosssx
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.picketbox</groupId> <artifactId>jbosssx</artifactId> <version>5.1.0.Final</version> </dependency>
<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/xsd/maven-4.0.0.xsd"> <parent> <groupId>org.picketbox</groupId> <artifactId>jbosssx-pom</artifactId> <version>5.1.0.Final</version> <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>jbosssx</artifactId> <packaging>jar</packaging> <name>PicketBox Implementation Full JAR Distribution</name> <description>PicketBox is a security project for Java Applications.</description> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>2.3</version> <configuration> <createSourcesJar>true</createSourcesJar> <createDependencyReducedPom>false</createDependencyReducedPom> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <includes> <include>org.picketbox:picketbox-acl-impl</include> <include>org.picketbox:picketbox-identity-impl</include> <include>org.picketbox:jbosssx-bare</include> </includes> </artifactSet> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" /> </transformers> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/jandex.idx</exclude> </excludes> </filter> </filters> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.picketbox</groupId> <artifactId>jbosssx-bare</artifactId> </dependency> <dependency> <groupId>org.picketbox</groupId> <artifactId>picketbox-acl-impl</artifactId> </dependency> <dependency> <groupId>org.picketbox</groupId> <artifactId>picketbox-identity-impl</artifactId> </dependency> </dependencies> </project>