Introduction
Avatar modules allow you to have an image for your users, based either on their id, or on their email. Currently, the Nemesis platform offers an integration with the Gravatar
service.
Dependencies
These modules depend on
GroupId | ArtifactId | Version | Type | Scope |
---|---|---|---|---|
org.springframework |
spring-context-indexer |
5.2.8.RELEASE |
jar |
compile |
javax.servlet |
javax.servlet-api |
4.0.1 |
jar |
provided |
com.h2database |
h2 |
1.4.200 |
jar |
test |
io.nemesis.tools |
nemesis-junit-listener |
2.2.0.RELEASE |
jar |
test |
javax.interceptor |
javax.interceptor-api |
1.2.2 |
jar |
compile |
org.springframework.boot |
spring-boot-starter-test |
2.3.3.RELEASE |
jar |
test |
org.mockito |
mockito-core |
3.3.3 |
jar |
test |
org.springframework.boot |
spring-boot-configuration-processor |
2.3.3.RELEASE |
jar |
compile |
net.jcip |
jcip-annotations |
1.0 |
jar |
test |
org.apache.tomcat.embed |
tomcat-embed-jasper |
9.0.37 |
jar |
test |
org.springframework.restdocs |
spring-restdocs-mockmvc |
2.0.4.RELEASE |
jar |
test |
org.springframework.security |
spring-security-test |
5.3.4.RELEASE |
jar |
test |
org.springframework.data |
spring-data-jpa |
2.3.3.RELEASE |
jar |
compile |
org.springframework.data |
spring-data-commons |
2.3.3.RELEASE |
jar |
compile |
Maven pom
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ nemesis Platform - NExt-generation Multichannel E-commerce SYStem
~
~ Copyright (c) 2010 - 2013 nemesis
~ All rights reserved.
~
~ This software is the confidential and proprietary information of nemesis
~ ("Confidential Information"). You shall not disclose such Confidential
~ Information and shall use it only in accordance with the terms of the
~ license agreement you entered into with nemesis.
-->
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.nemesis.platform.module</groupId>
<artifactId>modules</artifactId>
<version>2.3.1.BUILD-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>io.nemesis.platform.module.avatar</groupId>
<artifactId>avatar</artifactId>
<packaging>pom</packaging>
<name>Avatar Modules</name>
<url>http://docs.nemesis.io/current/platform/module/avatar</url>
<modules>
<module>nemesis-module-gravatar</module>
</modules>
</project>