java-support
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.shibboleth.utilities</groupId> <artifactId>java-support</artifactId> <version>8.0.0</version> </dependency>
<?xml version="1.0"?> <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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>net.shibboleth</groupId> <artifactId>parent</artifactId> <version>11.0.0</version> </parent> <name>java-support</name> <groupId>net.shibboleth.utilities</groupId> <artifactId>java-support</artifactId> <version>8.0.0</version> <packaging>jar</packaging> <properties> <automatic.module.name>net.shibboleth.utilities.java.support</automatic.module.name> </properties> <scm> <connection>scm:git:https://git.shibboleth.net/git/${project.artifactId}</connection> <developerConnection>scm:git:git@git.shibboleth.net:${project.artifactId}</developerConnection> <url>https://git.shibboleth.net/view/?p=${project.artifactId}.git</url> </scm> <dependencies> <!-- Compile Dependencies --> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <!-- OPTIONAL Compile Dependencies --> <dependency> <!-- Required if you're using classes from the logging package. --> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>compile</scope><!-- normally runtime --> <optional>true</optional> </dependency> <dependency> <!-- Required if you're using classes from the logging package. --> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> <scope>compile</scope><!-- normally runtime --> <optional>true</optional> </dependency> <dependency> <!-- Required if you're using anything in the httpclient package --> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <optional>true</optional> </dependency> <dependency> <!-- Required if you're using anything in the httpclient package --> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient-cache</artifactId> <optional>true</optional> </dependency> <dependency> <!-- Required if you're using anything in the httpclient package --> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> <optional>true</optional> </dependency> <dependency> <!-- Required if using classes with command line support. --> <groupId>com.beust</groupId> <artifactId>jcommander</artifactId> <optional>true</optional> </dependency> <dependency> <!-- Required if you're using classes from the velocity package --> <groupId>org.apache.velocity</groupId> <artifactId>velocity-engine-core</artifactId> <optional>true</optional> </dependency> <dependency> <!-- Required if you're using classes from the security package. --> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15on</artifactId> <optional>true</optional> </dependency> <dependency> <!-- Required if you're using classes from the security package. --> <groupId>org.bouncycastle</groupId> <artifactId>bcpkix-jdk15on</artifactId> <optional>true</optional> </dependency> <!-- Provided Dependencies --> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <scope>provided</scope> </dependency> <!-- Runtime Dependencies --> <!-- Test Dependencies --> <dependency> <groupId>org.xmlunit</groupId> <artifactId>xmlunit-legacy</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>${spring.groupId}</groupId> <artifactId>spring-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>${spring.groupId}</groupId> <artifactId>spring-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>${spring.groupId}</groupId> <artifactId>spring-web</artifactId> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <site> <id>site</id> <url>dav:${shibboleth.site.url}${project.artifactId}/${project.version}/</url> </site> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Automatic-Module-Name>${automatic.module.name}</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> </plugins> </build> </project>