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.
155 lines
5.1 KiB
155 lines
5.1 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>ru.molokoin</groupId> |
|
<artifactId>storage</artifactId> |
|
<version>1.0</version> |
|
<packaging>war</packaging> |
|
|
|
<name>storage Maven Webapp</name> |
|
<!-- FIXME change it to the project's website --> |
|
<url>http://www.example.com</url> |
|
|
|
<properties> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
<maven.compiler.source>17</maven.compiler.source> |
|
<maven.compiler.target>17</maven.compiler.target> |
|
</properties> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>jakarta.servlet.jsp.jstl</groupId> |
|
<artifactId>jakarta.servlet.jsp.jstl-api</artifactId> |
|
<version>3.0.0</version> |
|
<!-- <scope>provided</scope> --> |
|
</dependency> |
|
<!-- <dependency> |
|
<groupId>jakarta.platform</groupId> |
|
<artifactId>jakarta.jakartaee-api</artifactId> |
|
<version>10.0.0</version> |
|
<scope>provided</scope> |
|
</dependency> --> |
|
<!-- <dependency> |
|
<groupId>org.glassfish.web</groupId> |
|
<artifactId>jakarta.servlet.jsp.jstl-api</artifactId> |
|
<version>3.0.1</version> |
|
</dependency> --> |
|
<dependency> |
|
<groupId>org.glassfish.web</groupId> |
|
<artifactId>jakarta.servlet.jsp.jstl</artifactId> |
|
<version>3.0.1</version> |
|
</dependency> |
|
|
|
|
|
<!-- <dependency> |
|
<groupId>org.apache.taglibs</groupId> |
|
<artifactId>taglibs-standard-impl</artifactId> |
|
<version>1.2.5</version> |
|
<scope>provided</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.taglibs</groupId> |
|
<artifactId>taglibs-standard-spec</artifactId> |
|
<version>1.2.5</version> |
|
<scope>provided</scope> |
|
</dependency> --> |
|
<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>junit</groupId> |
|
<artifactId>junit</artifactId> |
|
<version>4.11</version> |
|
<scope>test</scope> |
|
</dependency> |
|
</dependencies> |
|
|
|
<build> |
|
<finalName>storage</finalName> |
|
<pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) --> |
|
<plugins> |
|
<plugin> |
|
<artifactId>maven-clean-plugin</artifactId> |
|
<version>3.1.0</version> |
|
</plugin> |
|
<!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging --> |
|
<plugin> |
|
<artifactId>maven-resources-plugin</artifactId> |
|
<version>3.0.2</version> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<version>3.8.0</version> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-surefire-plugin</artifactId> |
|
<version>2.22.1</version> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-war-plugin</artifactId> |
|
<version>3.2.2</version> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-install-plugin</artifactId> |
|
<version>2.5.2</version> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-deploy-plugin</artifactId> |
|
<version>2.8.2</version> |
|
<configuration> |
|
<!-- отключаю плагин по умолчанию --> |
|
<skip>true</skip> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.wildfly.plugins</groupId> |
|
<artifactId>wildfly-maven-plugin</artifactId> |
|
<version>4.1.0.Final</version> |
|
<executions> |
|
<execution> |
|
<phase>deploy</phase> |
|
<goals> |
|
<goal>deploy</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
<configuration> |
|
<hostname>molokoin.ru</hostname> |
|
<port>9990</port> |
|
<username>esoe</username> |
|
<password>psalm6912</password> |
|
<name>storage.war</name> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</pluginManagement> |
|
</build> |
|
</project>
|
|
|