commons-web
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>pl.chilldev.commons</groupId> <artifactId>commons-web</artifactId> <version>0.4.4</version> </dependency>
<?xml version="1.0" encoding="utf-8"?> <!-- # This file is part of the ChillDev-Commons. # # @license http://mit-license.org/ The MIT license # @copyright 2016 - 2018 © by Rafał Wrzeszcz - Wrzasq.pl. --> <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> <!-- core project settings --> <artifactId>commons-web</artifactId> <packaging>jar</packaging> <parent> <groupId>pl.chilldev.commons</groupId> <artifactId>commons</artifactId> <version>0.4.4</version> <relativePath>../</relativePath> </parent> <!-- project meta info --> <name>ChillDev Commons Web</name> <url>https://chilloutdevelopment.github.io/pl.chilldev.commons/commons-web/</url> <description>Web-app related utilities.</description> <inceptionYear>2016</inceptionYear> <!-- project dependencies --> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>commons-daemon</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> <version>9.3.25.v20180904</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-servlet</artifactId> <version>9.3.25.v20180904</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-util</artifactId> <version>9.3.25.v20180904</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.25</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>5.1.2.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>5.1.2.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>5.1.2.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>5.1.2.RELEASE</version> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>4.0.1</version> <scope>provided</scope> </dependency> </dependencies> </project>