picocontainer
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.picocontainer</groupId> <artifactId>picocontainer</artifactId> <version>2.15.2</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>picocontainer-parent</artifactId> <groupId>org.picocontainer</groupId> <version>2.15.2</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>picocontainer</artifactId> <name>PicoContainer Core</name> <build> <plugins> <plugin> <groupId>com.thoughtworks.paranamer</groupId> <artifactId>paranamer-maven-plugin</artifactId> <version>2.8.2</version> <executions> <execution> <id>generate</id> <phase>test</phase> <goals> <goal>generate</goal> </goals> </execution> </executions> <configuration> <sourceDirectory>src/test</sourceDirectory> <outputDirectory>target/test-classes</outputDirectory> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.5.2</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <shadedArtifactId>picocontainer</shadedArtifactId> <artifactSet> <excludes> <exclude>javax.annotation:jsr250-api</exclude> <exclude>javax.inject:javax.inject</exclude> </excludes> </artifactSet> <filters> <filter> <artifact>com.thoughtworks.paranamer:paranamer</artifact> <excludes> <exclude>com/thoughtworks/paranamer/Javadoc*</exclude> <exclude>com/thoughtworks/paranamer/Null*</exclude> </excludes> </filter> </filters> <relocations> <relocation> <pattern>com.thoughtworks.paranamer</pattern> <shadedPattern>org.picocontainer.paranamer</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>javax.annotation</groupId> <artifactId>jsr250-api</artifactId> <version>1.0</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> <version>1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.jmock</groupId> <artifactId>jmock-junit4</artifactId> <version>2.5.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>jmock</artifactId> <groupId>org.jmock</groupId> </exclusion> <exclusion> <artifactId>junit-dep</artifactId> <groupId>junit</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.thoughtworks.xstream</groupId> <artifactId>xstream</artifactId> <version>1.4.21</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>mxparser</artifactId> <groupId>io.github.x-stream</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>xpp3</groupId> <artifactId>xpp3_min</artifactId> <version>1.1.3.4.O</version> <scope>test</scope> </dependency> </dependencies> </project>