vertigo-account
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.vertigo</groupId>
<artifactId>vertigo-account</artifactId>
<version>4.4.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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.vertigo</groupId>
<artifactId>vertigo-libs</artifactId>
<version>4.4.0</version>
</parent>
<artifactId>vertigo-account</artifactId>
<packaging>jar</packaging>
<name>vertigo-account</name>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.vertigo</groupId>
<artifactId>vertigo-redis-connector</artifactId>
<version>${vertigo.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>io.vertigo</groupId>
<artifactId>vertigo-ldap-connector</artifactId>
<version>${vertigo.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>io.vertigo</groupId>
<artifactId>vertigo-datastore</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>io.vertigo</groupId>
<artifactId>vertigo-datastore</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.vertigo</groupId>
<artifactId>vertigo-redis-connector</artifactId>
<version>${vertigo.version}</version>
<optional>true</optional> <!-- pour RedisAccountCache -->
</dependency>
<dependency>
<groupId>io.vertigo</groupId>
<artifactId>vertigo-ldap-connector</artifactId>
<version>${vertigo.version}</version>
<optional>true</optional> <!-- pour LdapAuthenticationPlugin -->
</dependency>
<!-- Tests -->
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>test</scope>
</dependency>
<!-- Connections Pool -->
<dependency>
<groupId>com.mchange</groupId>
<artifactId>c3p0</artifactId>
<optional>true</optional><!-- C3p0DataSourceProviderPlugin -->
</dependency>
</dependencies>
<build>
<!-- To use the plugin goals in your POM or parent POM -->
<plugins>
<plugin>
<!-- We need a test jar too (for LTS plugins) -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<forceCreation>true</forceCreation>
<skipIfEmpty>true</skipIfEmpty>
</configuration>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>