Authentication-Service
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>fish.focus.uvms.usm</groupId>
<artifactId>Authentication-Service</artifactId>
<version>2.2.14</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>fish.focus.uvms.usm</groupId>
<artifactId>Authentication-Module</artifactId>
<version>2.2.14</version>
</parent>
<artifactId>Authentication-Service</artifactId>
<packaging>jar</packaging>
<properties>
<ldap.use>false</ldap.use>
</properties>
<dependencies>
<dependency>
<groupId>fish.focus.uvms.usm</groupId>
<artifactId>Authentication-Model</artifactId>
</dependency>
<dependency>
<groupId>fish.focus.uvms.maven</groupId>
<artifactId>uvms-pom-arquillian-deps</artifactId>
<type>pom</type>
<exclusions>
<exclusion>
<groupId>org.eu.ingwar.tools</groupId>
<artifactId>arquillian-suite-extension</artifactId>
</exclusion>
</exclusions>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<configuration>
<execute-commands>
<scripts>
<script>${project.build.outputDirectory}/${wf.cliScript}</script>
</scripts>
</execute-commands>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>ldap-default</id>
<properties>
<ldap.domain>example.com</ldap.domain>
<ldap.host>ldaps\://svm-midway.athens.intrasoft-intl.private\:10636/</ldap.host>
<ldap.root>ou\=users;ou\=system</ldap.root>
<ldap.techdn>uid\=admin;ou\=system</ldap.techdn>
<ldap.techpass>secret</ldap.techpass>
<ldap.filter>(&(objectClass\=person)(uid\={0}))</ldap.filter>
<ldap.attrs>sn,givenName,mail</ldap.attrs>
</properties>
</profile>
<profile>
<id>ldap</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<properties>
<ldap.use>true</ldap.use>
</properties>
</profile>
<profile>
<id>ldap-conf</id>
</profile>
<profile>
<id>ldap-adam</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<properties>
<ldap.use>true</ldap.use>
<ldap.domain>mare</ldap.domain>
<ldap.host>ldap\://mare-unionvms.athens.intrasoft-intl.private\:389/</ldap.host>
<ldap.root>ou\=system,dc\=mare</ldap.root>
<ldap.techdn>cn\=admin,ou\=system,dc\=mare</ldap.techdn>
<ldap.techpass>xLdSaPCRYaS3f</ldap.techpass>
<ldap.filter>(&(objectClass\=user)(sAMAccountName\={0}))</ldap.filter>
<ldap.attrs>sn</ldap.attrs>
</properties>
</profile>
<profile>
<id>skip-ldap</id>
<activation>
<activeByDefault>true</activeByDefault>
<property>
<name>ldap.use</name>
<value>false</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>%regex[.*LDAPTest.*]</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>