Skip to content
Snippets Groups Projects
Select Git revision
  • 25c1c69fff6d1c4c6da6f1ef61c20b52a03d6f98
  • master default
  • renovate/junit-jupiter-engine.version
  • renovate/selenium.version
  • renovate/testcontainer.version
  • demo
  • v1_8_1
  • v2.18.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
27 results

pom.xml

Blame
  • pom.xml 12.49 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>
        <version>2.4.0</version>
        <name>BudgetMaster</name>
    
        <repositories>
            <repository>
                <id>release</id>
                <url>https://maven.thecodedev.de/artifactory/TheCodeLabs-release</url>
                <releases>
                    <enabled>true</enabled>
                </releases>
                <snapshots>
                    <enabled>false</enabled>
                </snapshots>
            </repository>
            <repository>
                <id>snapshots</id>
                <url>https://maven.thecodedev.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>1.5.13.RELEASE</version>
            <relativePath/>
        </parent>
    
        <dependencyManagement>
            <dependencies>
                <dependency>
                    <groupId>de.thecodelabs</groupId>
                    <artifactId>jlibs</artifactId>
                    <version>${jlibs.version}</version>
                    <type>pom</type>
                    <scope>import</scope>
                </dependency>
            </dependencies>
        </dependencyManagement>
    
        <properties>
            <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
            <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
            <java.version>1.8</java.version>
    
            <jlibs.version>2.0.5</jlibs.version>
            <versionizer.version>1.1.0</versionizer.version>
            <webjars-locator.version>0.36</webjars-locator.version>
            <jquery.version>3.3.1</jquery.version>
            <materializecss.version>1.0.0</materializecss.version>
            <fontawesome.version>5.0.10</fontawesome.version>
            <sortablejs.version>1.8.1</sortablejs.version>
            <mousetrap.version>1.6.1</mousetrap.version>
            <codemirror.version>5.45.0</codemirror.version>
            <webdrivermanager.version>2.2.1</webdrivermanager.version>
            <selenium.version>3.141.59</selenium.version>
    
            <app.versionDate>${maven.build.timestamp}</app.versionDate>
            <maven.build.timestamp.format>dd.MM.yy</maven.build.timestamp.format>
            <app.versionCode>22</app.versionCode>
            <app.author>Robert Goldmann</app.author>
    
            <project.outputDirectory>build/${project.version}</project.outputDirectory>
            <project.artifactName>${project.artifactId}-v${project.version}</project.artifactName>
            <project.exe>${project.outputDirectory}/${project.artifactName}.exe</project.exe>
        </properties>
    
        <dependencies>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-freemarker</artifactId>
            </dependency>
    
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-devtools</artifactId>
            </dependency>
    
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-web</artifactId>
            </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-data-jpa</artifactId>
            </dependency>
    
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-tomcat</artifactId>
            </dependency>
    
            <dependency>
                <groupId>joda-time</groupId>
                <artifactId>joda-time</artifactId>
            </dependency>
    
            <dependency>
                <groupId>org.jadira.usertype</groupId>
                <artifactId>usertype.core</artifactId>
                <version>5.0.0.GA</version>
            </dependency>
    
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-security</artifactId>
            </dependency>
    
            <dependency>
                <groupId>de.thecodelabs</groupId>
                <artifactId>libUtils</artifactId>
            </dependency>
    
            <dependency>
                <groupId>de.thecodelabs</groupId>
                <artifactId>libStorage</artifactId>
            </dependency>
    
            <dependency>
                <groupId>de.thecodelabs.versionizer</groupId>
                <artifactId>api</artifactId>
                <version>${versionizer.version}</version>
                <exclusions>
                    <exclusion>
                        <groupId>de.thecodelabs</groupId>
                        <artifactId>libLogger-slf4j</artifactId>
                    </exclusion>
                </exclusions>
            </dependency>
    
            <dependency>
                <groupId>com.h2database</groupId>
                <artifactId>h2</artifactId>
            </dependency>
    
            <dependency>
                <groupId>com.itextpdf</groupId>
                <artifactId>itextpdf</artifactId>
                <version>5.5.13</version>
            </dependency>
    
            <!--Webjars-->
            <dependency>
                <groupId>org.webjars</groupId>
                <artifactId>webjars-locator</artifactId>
                <version>${webjars-locator.version}</version>
            </dependency>
            <dependency>
                <groupId>org.webjars</groupId>
                <artifactId>jquery</artifactId>
                <version>${jquery.version}</version>
            </dependency>
            <dependency>
                <groupId>org.webjars</groupId>
                <artifactId>materializecss</artifactId>
                <version>${materializecss.version}</version>
            </dependency>
            <dependency>
                <groupId>org.webjars</groupId>
                <artifactId>font-awesome</artifactId>
                <version>${fontawesome.version}</version>
            </dependency>
            <dependency>
                <groupId>org.webjars.npm</groupId>
                <artifactId>sortablejs</artifactId>
                <version>${sortablejs.version}</version>
            </dependency>
            <dependency>
                <groupId>org.webjars.npm</groupId>
                <artifactId>mousetrap</artifactId>
                <version>${mousetrap.version}</version>
            </dependency>
            <dependency>
                <groupId>org.webjars</groupId>
                <artifactId>codemirror</artifactId>
                <version>${codemirror.version}</version>
            </dependency>
    
            <!-- selenium -->
            <dependency>
                <groupId>org.seleniumhq.selenium</groupId>
                <artifactId>selenium-api</artifactId>
                <version>${selenium.version}</version>
                <scope>test</scope>
            </dependency>
            <dependency>
                <groupId>org.seleniumhq.selenium</groupId>
                <artifactId>selenium-firefox-driver</artifactId>
                <version>${selenium.version}</version>
                <scope>test</scope>
            </dependency>
            <dependency>
                <groupId>org.seleniumhq.selenium</groupId>
                <artifactId>selenium-support</artifactId>
                <version>${selenium.version}</version>
                <scope>test</scope>
            </dependency>
        </dependencies>
    
        <build>
            <plugins>
                <plugin>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-maven-plugin</artifactId>
                    <configuration>
                        <outputDirectory>${project.outputDirectory}</outputDirectory>
                        <finalName>${project.artifactName}</finalName>
                    </configuration>
                    <executions>
                        <execution>
                            <goals>
                                <goal>repackage</goal>
                            </goals>
                        </execution>
                    </executions>
                </plugin>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-war-plugin</artifactId>
                    <version>3.2.2</version>
                    <configuration>
                        <webappDirectory>${basedir}/src/main</webappDirectory>
                        <outputDirectory>${project.outputDirectory}</outputDirectory>
                        <warName>${project.artifactName}</warName>
                    </configuration>
                    <executions>
                        <execution>
                            <id>war-packaging</id>
                            <goals>
                                <goal>war</goal>
                            </goals>
                            <phase>package</phase>
                        </execution>
                    </executions>
                </plugin>
                <plugin>
                    <groupId>com.akathist.maven.plugins.launch4j</groupId>
                    <artifactId>launch4j-maven-plugin</artifactId>
                    <version>1.7.21</version>
                    <executions>
                        <execution>
                            <id>l4j-clui</id>
                            <phase>package</phase>
                            <goals>
                                <goal>launch4j</goal>
                            </goals>
                            <configuration>
                                <headerType>gui</headerType>
                                <jar>${project.outputDirectory}/${project.artifactName}.jar</jar>
                                <outfile>${project.exe}</outfile>
                                <downloadUrl>http://java.com/download</downloadUrl>
                                <classPath>
                                    <mainClass>${project.groupId}${project.artifactId}.Main</mainClass>
                                </classPath>
                                <jre>
                                    <bundledJre64Bit>false</bundledJre64Bit>
                                    <bundledJreAsFallback>false</bundledJreAsFallback>
                                    <minVersion>1.8.0</minVersion>
                                    <jdkPreference>preferJre</jdkPreference>
                                    <runtimeBits>64/32</runtimeBits>
                                </jre>
                                <icon>build/icon.ico</icon>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>
    
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-surefire-plugin</artifactId>
                    <version>2.12</version>
                    <configuration>
                        <junitArtifactName>junit:junit</junitArtifactName>
                        <argLine>-Dfile.encoding=UTF-8</argLine>
    
                        <systemPropertyVariables>
                            <testProfile>true</testProfile>
                        </systemPropertyVariables>
                    </configuration>
                </plugin>
    
                <!--Deploy Plugin-->
                <plugin>
                    <groupId>org.codehaus.mojo</groupId>
                    <artifactId>build-helper-maven-plugin</artifactId>
                    <version>1.10</version>
                    <executions>
                        <execution>
                            <id>attach-artifacts</id>
                            <phase>package</phase>
                            <goals>
                                <goal>attach-artifact</goal>
                            </goals>
                            <configuration>
                                <artifacts>
                                    <artifact>
                                        <file>${project.exe}</file>
                                        <type>exe</type>
                                    </artifact>
                                </artifacts>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </build>
    
        <distributionManagement>
            <repository>
                <id>release</id>
                <name>TheCodeLabs-releases</name>
                <url>https://maven.thecodedev.de/artifactory/TheCodeLabs-release</url>
            </repository>
            <snapshotRepository>
                <id>snapshots</id>
                <name>TheCodeLabs-snapshots</name>
                <url>https://maven.thecodedev.de/artifactory/TheCodeLabs-snapshots</url>
            </snapshotRepository>
        </distributionManagement>
    </project>