pom.xml

changeset 29
27a0fdd7bca7
child 48
63200a99ea77
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/pom.xml	Sat May 09 14:26:31 2020 +0200
     1.3 @@ -0,0 +1,74 @@
     1.4 +<?xml version="1.0" encoding="UTF-8"?>
     1.5 +<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
     1.6 +         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     1.7 +    <modelVersion>4.0.0</modelVersion>
     1.8 +    <groupId>de.uapcore</groupId>
     1.9 +    <artifactId>lightpit</artifactId>
    1.10 +    <version>0.1-SNAPSHOT</version>
    1.11 +    <packaging>war</packaging>
    1.12 +    <properties>
    1.13 +        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    1.14 +        <maven.compiler.source>11</maven.compiler.source>
    1.15 +        <maven.compiler.target>11</maven.compiler.target>
    1.16 +        <version.maven.compiler>3.8.1</version.maven.compiler>
    1.17 +        <version.maven.war>3.2.0</version.maven.war>
    1.18 +        <version.slf4j>1.7.30</version.slf4j>
    1.19 +        <version.log4j>2.13.1</version.log4j>
    1.20 +    </properties>
    1.21 +    <dependencies>
    1.22 +        <dependency>
    1.23 +            <groupId>org.slf4j</groupId>
    1.24 +            <artifactId>slf4j-api</artifactId>
    1.25 +            <version>${version.slf4j}</version>
    1.26 +        </dependency>
    1.27 +        <dependency>
    1.28 +            <groupId>org.apache.logging.log4j</groupId>
    1.29 +            <artifactId>log4j-core</artifactId>
    1.30 +            <version>${version.log4j}</version>
    1.31 +        </dependency>
    1.32 +        <dependency>
    1.33 +            <groupId>org.apache.logging.log4j</groupId>
    1.34 +            <artifactId>log4j-slf4j-impl</artifactId>
    1.35 +            <version>${version.log4j}</version>
    1.36 +        </dependency>
    1.37 +        <dependency>
    1.38 +            <groupId>javax.servlet</groupId>
    1.39 +            <artifactId>jstl</artifactId>
    1.40 +            <version>1.2</version>
    1.41 +        </dependency>
    1.42 +        <dependency>
    1.43 +            <groupId>javax.servlet</groupId>
    1.44 +            <artifactId>javax.servlet-api</artifactId>
    1.45 +            <version>3.1.0</version>
    1.46 +            <scope>provided</scope>
    1.47 +        </dependency>
    1.48 +    </dependencies>
    1.49 +    <build>
    1.50 +        <finalName>${project.artifactId}</finalName>
    1.51 +        <plugins>
    1.52 +            <plugin>
    1.53 +                <groupId>org.apache.maven.plugins</groupId>
    1.54 +                <artifactId>maven-compiler-plugin</artifactId>
    1.55 +                <version>${version.maven.compiler}</version>
    1.56 +            </plugin>
    1.57 +            <plugin>
    1.58 +                <groupId>org.apache.maven.plugins</groupId>
    1.59 +                <artifactId>maven-war-plugin</artifactId>
    1.60 +                <version>${version.maven.war}</version>
    1.61 +                <configuration>
    1.62 +                    <archive>
    1.63 +                        <manifest>
    1.64 +                            <addClasspath>true</addClasspath>
    1.65 +                            <classpathPrefix>lib/</classpathPrefix>
    1.66 +                        </manifest>
    1.67 +                    </archive>
    1.68 +                    <webResources>
    1.69 +                        <resource>
    1.70 +                            <directory>${project.basedir}/src/main/resources</directory>
    1.71 +                        </resource>
    1.72 +                    </webResources>
    1.73 +                </configuration>
    1.74 +            </plugin>
    1.75 +        </plugins>
    1.76 +    </build>
    1.77 +</project>

mercurial