You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
108 lines
4.0 KiB
108 lines
4.0 KiB
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
<modelVersion>4.0.0</modelVersion> |
|
<parent> |
|
<groupId>eu.dnetlib</groupId> |
|
<artifactId>dnet45-parent</artifactId> |
|
<version>1.0.0</version> |
|
</parent> |
|
<artifactId>login-service</artifactId> |
|
<version>1.0.6-SNAPSHOT</version> |
|
<packaging>war</packaging> |
|
<name>login-service</name> |
|
<description>login-service</description> |
|
<properties> |
|
<java.version>1.8</java.version> |
|
</properties> |
|
<scm> |
|
<url>https://code-repo.d4science.org/MaDgIK/login-service</url> |
|
<connection>scm:git:gitea@code-repo.d4science.org:MaDgIK/login-service.git</connection> |
|
<developerConnection>scm:git:gitea@code-repo.d4science.org:MaDgIK/login-service.git</developerConnection> |
|
<tag>login-service-1.0.0</tag> |
|
</scm> |
|
<dependencyManagement> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-dependencies</artifactId> |
|
<version>1.5.8.RELEASE</version> |
|
<type>pom</type> |
|
<scope>import</scope> |
|
</dependency> |
|
</dependencies> |
|
</dependencyManagement> |
|
<dependencies> |
|
<!-- Spring Boot --> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-web</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-tomcat</artifactId> |
|
<scope>provided</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-test</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-security</artifactId> |
|
</dependency> |
|
<!-- Redis --> |
|
<dependency> |
|
<groupId>org.springframework.session</groupId> |
|
<artifactId>spring-session-data-redis</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>biz.paluch.redis</groupId> |
|
<artifactId>lettuce</artifactId> |
|
<version>4.3.3.Final</version> |
|
</dependency> |
|
<!-- Mitre --> |
|
<dependency> |
|
<groupId>org.mitre</groupId> |
|
<artifactId>openid-connect-client</artifactId> |
|
<version>1.3.0</version> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.bouncycastle</groupId> |
|
<artifactId>bcprov-jdk15on</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
</dependencies> |
|
<build> |
|
<resources> |
|
<resource> |
|
<directory>src/main/resources</directory> |
|
<filtering>true</filtering> |
|
</resource> |
|
</resources> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
<configuration> |
|
<mainClass>eu.dnetlib.loginservice.LoginServiceApplication</mainClass> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<goals> |
|
<goal>repackage</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-war-plugin</artifactId> |
|
<version>2.6</version> |
|
<configuration> |
|
<failOnMissingWebXml>false</failOnMissingWebXml> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project>
|
|
|