jetty-download-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>nl.jarmoniuk</groupId> <artifactId>jetty-download-maven-plugin</artifactId> <version>1.0.1</version> </dependency>
<?xml version='1.0' encoding='UTF-8'?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"> <modelVersion>4.0.0</modelVersion> <groupId>nl.jarmoniuk</groupId> <artifactId>jetty-download-maven-plugin</artifactId> <packaging>maven-plugin</packaging> <description>Simple plugin for downloading resources based on Eclipse Jetty</description> <url>https://www.jarmoniuk.nl/jetty-download/</url> <version>1.0.1</version> <licenses> <license> <name>Apache 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <name>Jetty Download Maven Plugin</name> <organization> <name>Andrzej Jarmoniuk</name> <url>https://www.jarmoniuk.nl/jetty-download/</url> </organization> <scm> <url>https://github.com/ajarmoniuk/jetty-download-maven-plugin/tree/master</url> <connection>scm:git:https://github.com/ajarmoniuk/jetty-download-maven-plugin.git</connection> <developerConnection>scm:git@github.com:ajarmoniuk/jetty-download-maven-plugin.git</developerConnection> </scm> <developers> <developer> <id>jarmoni</id> <name>Andrzej Jarmoniuk</name> <url>https://github.com/ajarmoniuk</url> <email>gh at jarmoniuk.nl</email> </developer> </developers> <prerequisites> <maven> 3.3.9 </maven> </prerequisites> <properties> <info.versionScheme>semver-spec</info.versionScheme> </properties> <dependencies> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala3-library_3</artifactId> <version>3.2.2</version> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.8.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>3.9.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-client</artifactId> <version>9.4.51.v20230217</version> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> <version>1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>2.0.7</version> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> <version>9.4.51.v20230217</version> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-security</artifactId> <version>9.4.51.v20230217</version> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-proxy</artifactId> <version>9.4.51.v20230217</version> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-servlet</artifactId> <version>9.4.51.v20230217</version> <scope>test</scope> </dependency> <dependency> <groupId>org.scalatest</groupId> <artifactId>scalatest_3</artifactId> <version>3.2.15</version> <scope>test</scope> </dependency> </dependencies> </project>