sd-auth-client-postgres
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>systems.dennis</groupId>
<artifactId>sd-auth-client-postgres</artifactId>
<version>1.0.8</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>
<packaging>jar</packaging>
<artifactId>sd-auth-client-postgres</artifactId>
<version>1.0.8</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<maven.compiler.source>1.10</maven.compiler.source>
<maven.compiler.target>1.10</maven.compiler.target>
<shared.version>3.6.2</shared.version>
<parent.version>1.1.5</parent.version>
<postgres.version>1.1.8</postgres.version>
<servers.version>1.0.3</servers.version>
</properties>
<parent>
<groupId>systems.dennis</groupId>
<artifactId>sd-parent</artifactId>
<version>1.1.5</version>
</parent>
<dependencies>
<!-- to enable hot swapping, disable cache for template and enable live reload -->
<dependency>
<groupId>systems.dennis</groupId>
<artifactId>sd-shared-web</artifactId>
<version>${shared.version}</version>
</dependency>
<dependency>
<groupId>systems.dennis</groupId>
<artifactId>sd-shared-web-db-postgres</artifactId>
<version>${postgres.version}</version>
</dependency>
<dependency>
<groupId>systems.dennis</groupId>
<artifactId>sd-shared-web-servers-postgres</artifactId>
<version>${servers.version}</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt</artifactId>
<version>0.12.5</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
</dependency>
</dependencies>
</project>