facelets-taglib-spring-social
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>pl.chilldev.facelets</groupId> <artifactId>facelets-taglib-spring-social</artifactId> <version>0.0.5</version> </dependency>
<?xml version="1.0" encoding="utf-8"?> <!-- # This file is part of the ChillDev-Facelets. # # @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 --> <artifactId>facelets-taglib-spring-social</artifactId> <packaging>jar</packaging> <parent> <groupId>pl.chilldev.facelets</groupId> <artifactId>facelets</artifactId> <version>0.0.5</version> <relativePath>../</relativePath> </parent> <!-- project meta info --> <name>ChillDev Spring Social Facelets taglib</name> <url>https://chilloutdevelopment.github.io/pl.chilldev.facelets/facelets-taglib-spring-social/</url> <description>Facelets taglib for Spring Social.</description> <inceptionYear>2014</inceptionYear> <!-- plugins configuration --> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <configuration> <usedDependencies> <usedDependency>javax:javaee-web-api</usedDependency> </usedDependencies> </configuration> </plugin> </plugins> </build> <!-- project dependencies --> <dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>4.3.2.RELEASE</version> </dependency> <dependency> <groupId>org.springframework.social</groupId> <artifactId>spring-social-core</artifactId> <version>1.1.4.RELEASE</version> </dependency> </dependencies> <!-- build profiles --> <profiles> <profile> <id>deploy</id> <build> <plugins> <plugin> <groupId>com.github.github</groupId> <artifactId>site-maven-plugin</artifactId> <configuration> <path>${project.artifactId}/</path> <merge>true</merge> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>