web
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>pl.chilldev.web</groupId>
<artifactId>web</artifactId>
<version>0.1.2</version>
</dependency><?xml version="1.0" encoding="utf-8"?>
<!--
# This file is part of the ChillDev-Web.
#
# @license http://mit-license.org/ The MIT license
# @copyright 2014 - 2016 © 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 -->
<groupId>pl.chilldev.web</groupId>
<artifactId>web</artifactId>
<packaging>pom</packaging>
<version>0.1.2</version>
<parent>
<groupId>pl.chilldev.parent</groupId>
<artifactId>parent-opensource</artifactId>
<version>0.1.0</version>
</parent>
<!-- project meta info -->
<name>ChillDev Web</name>
<url>https://chilloutdevelopment.github.io/pl.chilldev.web</url>
<description>ChillDev-Web is set of generic, web-related utilities for Java and Spring.</description>
<inceptionYear>2014</inceptionYear>
<!-- legal info -->
<licenses>
<license>
<name>The MIT license</name>
<url>http://mit-license.org/</url>
<distribution>repo</distribution>
<comments>MIT</comments>
</license>
</licenses>
<organization>
<name>Rafał Wrzeszcz - Wrzasq.pl</name>
<url>http://wrzasq.pl/</url>
</organization>
<!-- POM can't have more then one
<organization>
<name>Chillout Development</name>
<url>http://chilldev.pl/</url>
</organization>
-->
<!-- personal info -->
<developers>
<developer>
<id>rafal.wrzeszcz</id>
<name>Rafał Wrzeszcz</name>
<email>rafal.wrzeszcz@wrzasq.pl</email>
<url>http://wrzasq.pl/</url>
<organization>Rafał Wrzeszcz - Wrzasq.pl</organization>
<organizationUrl>http://wrzasq.pl/</organizationUrl>
<roles>
<role>creator</role>
<role>owner</role>
<role>manager</role>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>+1</timezone>
<properties>
<picUrl>http://www.gravatar.com/avatar/412a39726c1c9c96965d9db8f8c6787a.png</picUrl>
</properties>
</developer>
</developers>
<!-- development handling -->
<issueManagement>
<system>GitHub</system>
<url>https://github.com/chilloutdevelopment/pl.chilldev.web/issues</url>
</issueManagement>
<ciManagement>
<system>Travis CI</system>
<url>https://travis-ci.org/chilloutdevelopment/pl.chilldev.web</url>
</ciManagement>
<scm>
<connection>scm:git:https://github.com/chilloutdevelopment/pl.chilldev.web.git</connection>
<developerConnection>scm:git:git@github.com:chilloutdevelopment/pl.chilldev.web.git</developerConnection>
<url>https://github.com/chilloutdevelopment/pl.chilldev.web</url>
</scm>
<!-- distribution handling -->
<distributionManagement>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<!-- project dependencies -->
<dependencies>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-web-api</artifactId>
<version>7.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
<!-- build profiles -->
<profiles>
<profile>
<id>deploy</id>
<build>
<plugins>
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<configuration combine.self="override">
<merge>false</merge>
<message>${project.version} ${project.artifactId} API doc.</message>
<noJekyll>true</noJekyll>
<server>github</server>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<inherited>false</inherited>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<!-- components of ChillDev-Web project -->
<modules>
<module>web-core</module>
<module>web-faces</module>
<module>web-spring</module>
</modules>
</project>