pom.xml

Sun, 21 Jun 2020 12:32:25 +0200

author
Mike Becker <universe@uap-core.de>
date
Sun, 21 Jun 2020 12:32:25 +0200
changeset 94
edba952cfc57
parent 87
501addad452b
child 96
b7b685f31e39
permissions
-rw-r--r--

fix: issue form should always include the currently selected versions

     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
     3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     4     <modelVersion>4.0.0</modelVersion>
     5     <groupId>de.uapcore</groupId>
     6     <artifactId>lightpit</artifactId>
     7     <version>0.3</version>
     8     <packaging>war</packaging>
     9     <properties>
    10         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    11         <maven.compiler.source>11</maven.compiler.source>
    12         <maven.compiler.target>11</maven.compiler.target>
    13         <version.maven.compiler>3.8.1</version.maven.compiler>
    14         <version.maven.war>3.2.0</version.maven.war>
    15         <version.slf4j>1.7.30</version.slf4j>
    16         <version.log4j>2.13.1</version.log4j>
    17     </properties>
    18     <dependencies>
    19         <dependency>
    20             <groupId>org.slf4j</groupId>
    21             <artifactId>slf4j-api</artifactId>
    22             <version>${version.slf4j}</version>
    23         </dependency>
    24         <dependency>
    25             <groupId>org.apache.logging.log4j</groupId>
    26             <artifactId>log4j-core</artifactId>
    27             <version>${version.log4j}</version>
    28         </dependency>
    29         <dependency>
    30             <groupId>org.apache.logging.log4j</groupId>
    31             <artifactId>log4j-slf4j-impl</artifactId>
    32             <version>${version.log4j}</version>
    33         </dependency>
    34         <dependency>
    35             <groupId>javax.servlet</groupId>
    36             <artifactId>javax.servlet-api</artifactId>
    37             <version>3.1.0</version>
    38             <scope>provided</scope>
    39         </dependency>
    40         <dependency>
    41             <groupId>javax.servlet</groupId>
    42             <artifactId>jstl</artifactId>
    43             <version>1.2</version>
    44             <scope>provided</scope>
    45         </dependency>
    46     </dependencies>
    47     <build>
    48         <finalName>${project.artifactId}</finalName>
    49         <plugins>
    50             <plugin>
    51                 <groupId>org.apache.maven.plugins</groupId>
    52                 <artifactId>maven-compiler-plugin</artifactId>
    53                 <version>${version.maven.compiler}</version>
    54             </plugin>
    55             <plugin>
    56                 <groupId>org.apache.maven.plugins</groupId>
    57                 <artifactId>maven-war-plugin</artifactId>
    58                 <version>${version.maven.war}</version>
    59                 <configuration>
    60                     <webResources>
    61                         <resource>
    62                             <directory>${project.basedir}/src/main/resources</directory>
    63                         </resource>
    64                     </webResources>
    65                 </configuration>
    66             </plugin>
    67         </plugins>
    68     </build>
    69 </project>

mercurial