288 lines
11 KiB
XML
288 lines
11 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
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>org.jeudego.pairgoth</groupId>
|
|
<artifactId>engine-parent</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>view-webapp</artifactId>
|
|
|
|
<packaging>war</packaging>
|
|
<name>${project.groupId}:${project.artifactId}</name>
|
|
<description>PairGoth pairing system</description>
|
|
<url>TODO</url>
|
|
<properties>
|
|
<pac4j.version>5.7.1</pac4j.version>
|
|
</properties>
|
|
<build>
|
|
<defaultGoal>package</defaultGoal>
|
|
<sourceDirectory>src/main/kotlin</sourceDirectory>
|
|
<testSourceDirectory>src/test/kotlin</testSourceDirectory>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
<artifactId>kotlin-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>compile</id>
|
|
<phase>compile</phase>
|
|
<goals>
|
|
<goal>compile</goal>
|
|
</goals>
|
|
</execution>
|
|
<execution>
|
|
<id>test-compile</id>
|
|
<phase>test-compile</phase>
|
|
<goals>
|
|
<goal>test-compile</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<classpathDependencyExcludes>
|
|
<classpathDependencyExclude>com.republicate:webapp-slf4j-logger</classpathDependencyExclude>
|
|
</classpathDependencyExcludes>
|
|
</configuration>
|
|
</plugin>
|
|
<!-- sass to css -->
|
|
<plugin>
|
|
<groupId>io.github.cleydyr</groupId>
|
|
<artifactId>dart-sass-maven-plugin</artifactId>
|
|
<version>1.1.0</version>
|
|
<executions>
|
|
<execution>
|
|
<id>generate-css-using-sass</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>compile-sass</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<outputFolder>${project.build.directory}/generated-resources/css</outputFolder>
|
|
</configuration>
|
|
</plugin>
|
|
<!--
|
|
<plugin>
|
|
<groupId>com.gitlab.haynes</groupId>
|
|
<artifactId>libsass-maven-plugin</artifactId>
|
|
<version>0.2.29</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>compile</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<inputPath>${basedir}/src/main/sass/</inputPath>
|
|
<inputSyntax>scss</inputSyntax>
|
|
<outputPath>${project.build.directory}/${project.build.finalName}/css</outputPath>
|
|
<generateSourceMap>true</generateSourceMap>
|
|
<sourceMapOutputPath>${project.build.directory}/${project.build.finalName}/css</sourceMapOutputPath>
|
|
</configuration>
|
|
</plugin>
|
|
-->
|
|
<plugin>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-maven-plugin</artifactId>
|
|
<version>${jetty.version}</version>
|
|
<configuration>
|
|
<scan>1</scan>
|
|
<httpConnector>
|
|
<port>8080</port>
|
|
</httpConnector>
|
|
<systemProperties>
|
|
<pairgoth.api.url>http://localhost:8085/api/</pairgoth.api.url>
|
|
<pairgoth.env>dev</pairgoth.env>
|
|
</systemProperties>
|
|
<webApp>
|
|
<resourceBases>${project.basedir}/src/main/webapp,${project.build.directory}/generated-resources/</resourceBases>
|
|
</webApp>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
<configuration>
|
|
<webResources>
|
|
<resource>
|
|
<directory>${project.build.directory}/generated-resources/css</directory>
|
|
<targetPath>css</targetPath>
|
|
<includes>
|
|
<include>main.css</include>
|
|
</includes>
|
|
</resource>
|
|
</webResources>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.junit</groupId>
|
|
<artifactId>junit-bom</artifactId>
|
|
<version>5.9.3</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
<dependencies>
|
|
<!-- main dependencies -->
|
|
<dependency>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
<artifactId>kotlin-test-junit5</artifactId>
|
|
<version>${kotlin.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
|
<version>${kotlin.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
<artifactId>kotlin-reflect</artifactId>
|
|
<version>${kotlin.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jetbrains.kotlinx</groupId>
|
|
<artifactId>kotlinx-datetime-jvm</artifactId>
|
|
<version>0.4.0</version>
|
|
</dependency>
|
|
<!-- servlets and mail APIs -->
|
|
<dependency>
|
|
<groupId>jakarta.servlet</groupId>
|
|
<artifactId>jakarta.servlet-api</artifactId>
|
|
<version>${servlet.api.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sun.mail</groupId>
|
|
<artifactId>jakarta.mail</artifactId>
|
|
<version>1.6.7</version>
|
|
</dependency>
|
|
<!-- auth -->
|
|
<dependency>
|
|
<groupId>org.pac4j</groupId>
|
|
<artifactId>pac4j-oauth</artifactId>
|
|
<version>${pac4j.version}</version>
|
|
</dependency>
|
|
<!-- logging -->
|
|
<dependency>
|
|
<groupId>io.github.microutils</groupId>
|
|
<artifactId>kotlin-logging-jvm</artifactId>
|
|
<version>3.0.5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.republicate</groupId>
|
|
<artifactId>webapp-slf4j-logger</artifactId>
|
|
<version>3.0</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-simple</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.diogonunes</groupId>
|
|
<artifactId>JColor</artifactId>
|
|
<version>5.0.1</version>
|
|
</dependency>
|
|
<!-- mailer -->
|
|
<dependency>
|
|
<groupId>com.republicate</groupId>
|
|
<artifactId>simple-mailer</artifactId>
|
|
<version>1.6</version>
|
|
</dependency>
|
|
<!-- json -->
|
|
<dependency>
|
|
<groupId>com.republicate.kson</groupId>
|
|
<artifactId>essential-kson-jvm</artifactId>
|
|
<version>2.3</version>
|
|
</dependency>
|
|
<!-- charset detection
|
|
<dependency>
|
|
<groupId>com.ibm.icu</groupId>
|
|
<artifactId>icu4j</artifactId>
|
|
<version>70.1</version>
|
|
</dependency>
|
|
-->
|
|
<!-- http client -->
|
|
<dependency>
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
<artifactId>okhttp</artifactId>
|
|
<version>4.8.1</version>
|
|
</dependency>
|
|
<!-- server-side events -->
|
|
<dependency>
|
|
<groupId>com.republicate</groupId>
|
|
<artifactId>jeasse-servlet3</artifactId>
|
|
<version>1.2</version>
|
|
</dependency>
|
|
<!-- templating -->
|
|
<dependency>
|
|
<groupId>org.apache.velocity.tools</groupId>
|
|
<artifactId>velocity-tools-view</artifactId>
|
|
<version>3.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.velocity</groupId>
|
|
<artifactId>velocity-engine-core</artifactId>
|
|
<version>2.4-SNAPSHOT</version>
|
|
</dependency>
|
|
<!-- tests -->
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
<version>${junit.jupiter.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mockito.kotlin</groupId>
|
|
<artifactId>mockito-kotlin</artifactId>
|
|
<version>4.1.0</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<!-- test emails -->
|
|
<dependency>
|
|
<groupId>com.icegreen</groupId>
|
|
<artifactId>greenmail</artifactId>
|
|
<version>1.6.12</version>
|
|
<scope>test</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>javax.activation</groupId>
|
|
<artifactId>activation</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>com.sun.mail</groupId>
|
|
<artifactId>javax.mail</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|