You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.5 KiB
73 lines
2.5 KiB
1 year ago
|
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<groupId>com.example</groupId>
|
||
|
<artifactId>dev_j200_2</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<name>dev_j200_2</name>
|
||
|
<packaging>war</packaging>
|
||
|
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<maven.compiler.target>1.8</maven.compiler.target>
|
||
|
<maven.compiler.source>1.8</maven.compiler.source>
|
||
|
<junit.version>5.7.1</junit.version>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>jakarta.ejb</groupId>
|
||
|
<artifactId>jakarta.ejb-api</artifactId>
|
||
|
<version>4.0.0</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>jakarta.persistence</groupId>
|
||
|
<artifactId>jakarta.persistence-api</artifactId>
|
||
|
<version>3.0.0</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>jakarta.servlet</groupId>
|
||
|
<artifactId>jakarta.servlet-api</artifactId>
|
||
|
<version>5.0.0</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>jakarta.ws.rs</groupId>
|
||
|
<artifactId>jakarta.ws.rs-api</artifactId>
|
||
|
<version>3.1.0</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>jakarta.xml.bind</groupId>
|
||
|
<artifactId>jakarta.xml.bind-api</artifactId>
|
||
|
<version>4.0.0</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.junit.jupiter</groupId>
|
||
|
<artifactId>junit-jupiter-api</artifactId>
|
||
|
<version>${junit.version}</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.junit.jupiter</groupId>
|
||
|
<artifactId>junit-jupiter-engine</artifactId>
|
||
|
<version>${junit.version}</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-war-plugin</artifactId>
|
||
|
<version>3.3.1</version>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|