143 lines
3.6 KiB
XML
143 lines
3.6 KiB
XML
|
<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>de.bstly.we</groupId>
|
||
|
<artifactId>webstly-main</artifactId>
|
||
|
<version>${revision}</version>
|
||
|
</parent>
|
||
|
|
||
|
<name>application</name>
|
||
|
<artifactId>application</artifactId>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>de.bstly.we</groupId>
|
||
|
<artifactId>webstly-core</artifactId>
|
||
|
<version>${revision}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>de.bstly.we</groupId>
|
||
|
<artifactId>webstly-email</artifactId>
|
||
|
<version>${revision}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>de.bstly.we</groupId>
|
||
|
<artifactId>webstly-i18n</artifactId>
|
||
|
<version>${revision}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>de.bstly.we</groupId>
|
||
|
<artifactId>webstly-invite</artifactId>
|
||
|
<version>${revision}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>de.bstly.we</groupId>
|
||
|
<artifactId>webstly-jitsi</artifactId>
|
||
|
<version>${revision}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>de.bstly.we</groupId>
|
||
|
<artifactId>webstly-membership</artifactId>
|
||
|
<version>${revision}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>de.bstly.we</groupId>
|
||
|
<artifactId>webstly-minetest</artifactId>
|
||
|
<version>${revision}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>de.bstly.we</groupId>
|
||
|
<artifactId>webstly-oidc</artifactId>
|
||
|
<version>${revision}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>de.bstly.we</groupId>
|
||
|
<artifactId>webstly-partey</artifactId>
|
||
|
<version>${revision}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>de.bstly.we</groupId>
|
||
|
<artifactId>webstly-services</artifactId>
|
||
|
<version>${revision}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>de.bstly.we</groupId>
|
||
|
<artifactId>webstly-urlshortener</artifactId>
|
||
|
<version>${revision}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>de.bstly.we</groupId>
|
||
|
<artifactId>webstly-wireguard</artifactId>
|
||
|
<version>${revision}</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<!-- Database -->
|
||
|
<profiles>
|
||
|
<profile>
|
||
|
<id>db-inmemory</id>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.hsqldb</groupId>
|
||
|
<artifactId>hsqldb</artifactId>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</profile>
|
||
|
<profile>
|
||
|
<id>db-mariadb</id>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.mariadb.jdbc</groupId>
|
||
|
<artifactId>mariadb-java-client</artifactId>
|
||
|
<scope>runtime</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</profile>
|
||
|
<profile>
|
||
|
<id>db-mysql</id>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>mysql</groupId>
|
||
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
<scope>runtime</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</profile>
|
||
|
<profile>
|
||
|
<id>db-postgresql</id>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.postgresql</groupId>
|
||
|
<artifactId>postgresql</artifactId>
|
||
|
<scope>runtime</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</profile>
|
||
|
</profiles>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<mainClass>de.bstly.we.Application</mainClass>
|
||
|
<finalName>we.bstly</finalName>
|
||
|
<executable>true</executable>
|
||
|
<layout>ZIP</layout>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>build-info</id>
|
||
|
<goals>
|
||
|
<goal>build-info</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|