Skip to content
Snippets Groups Projects
Select Git revision
  • 75bd34902b45e52ef87c7c7160b374b3b3860cf3
  • master default
  • renovate/junit-jupiter-engine.version
  • renovate/opencsv.version
  • renovate/org.springframework.boot-spring-boot-starter-parent-3.x
  • renovate/testcontainer.version
  • renovate/jgit.version
  • renovate/selenium.version
  • renovate/datatables.version
  • renovate/jacoco-maven-plugin.version
  • renovate/org.apache.maven.plugins-maven-surefire-plugin-3.x
  • demo
  • v1_8_1
  • v2.18.0
  • v2.17.2
  • v2.17.1
  • v2.17.0
  • v2.16.1
  • v2.16.0
  • v2.15.1
  • v2.15.0
  • v2.14.0
  • v2.13.0
  • v2.12.0
  • v2.11.0
  • v2.10.0
  • v2.9.2
  • v2.9.1
  • v2.9.0
  • v2.8.0
  • testPipeline2
  • v2.7.0
  • v2.6.1
33 results

pom.xml

Blame
  • pom.xml 3.36 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
        <modelVersion>4.0.0</modelVersion>
    
        <groupId>de.deadlocker8</groupId>
        <artifactId>BudgetMaster</artifactId>
        <packaging>pom</packaging>
        <version>2.17.2</version>
        <name>BudgetMaster</name>
    
        <modules>
            <module>BudgetMasterServer</module>
        </modules>
    
        <repositories>
            <repository>
                <id>release</id>
                <url>https://maven.thecodelabs.de/artifactory/TheCodeLabs-release</url>
                <releases>
                    <enabled>true</enabled>
                </releases>
                <snapshots>
                    <enabled>false</enabled>
                </snapshots>
            </repository>
            <repository>
                <id>snapshots</id>
                <url>https://maven.thecodelabs.de/artifactory/TheCodeLabs-snapshots</url>
                <releases>
                    <enabled>false</enabled>
                </releases>
                <snapshots>
                    <enabled>true</enabled>
                </snapshots>
            </repository>
        </repositories>
    
        <parent>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-parent</artifactId>
            <version>3.3.4</version>
        </parent>
    
        <properties>
            <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
            <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
            <java.version>17</java.version>
    
            <app.versionDate>${maven.build.timestamp}</app.versionDate>
            <maven.build.timestamp.format>dd.MM.yy</maven.build.timestamp.format>
            <app.versionCode>49</app.versionCode>
            <app.author>Robert Goldmann</app.author>
    
            <testcontainer.version>1.20.3</testcontainer.version>
            <assertj-core.version>3.26.3</assertj-core.version>
        </properties>
    
        <dependencies>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-test</artifactId>
                <scope>test</scope>
            </dependency>
    
            <dependency>
                <groupId>org.assertj</groupId>
                <artifactId>assertj-core</artifactId>
                <version>${assertj-core.version}</version>
                <scope>test</scope>
            </dependency>
    
            <dependency>
                <groupId>org.testcontainers</groupId>
                <artifactId>junit-jupiter</artifactId>
                <version>${testcontainer.version}</version>
                <scope>test</scope>
            </dependency>
    
            <dependency>
                <groupId>org.testcontainers</groupId>
                <artifactId>postgresql</artifactId>
                <version>${testcontainer.version}</version>
                <scope>test</scope>
            </dependency>
        </dependencies>
    
        <distributionManagement>
            <repository>
                <id>release</id>
                <name>TheCodeLabs-releases</name>
                <url>https://maven.thecodelabs.de/artifactory/TheCodeLabs-release</url>
            </repository>
            <snapshotRepository>
                <id>snapshots</id>
                <name>TheCodeLabs-snapshots</name>
                <url>https://maven.thecodelabs.de/artifactory/TheCodeLabs-snapshots</url>
            </snapshotRepository>
        </distributionManagement>
    </project>