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.
121 lines
3.9 KiB
121 lines
3.9 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>home</artifactId> |
|
<version>1.0</version> |
|
<packaging>war</packaging> |
|
|
|
<name>home</name> |
|
<!-- FIXME change it to the project's website --> |
|
<url>http://www.molokoin.ru</url> |
|
|
|
<properties> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
<maven.compiler.source>1.7</maven.compiler.source> |
|
<maven.compiler.target>1.7</maven.compiler.target> |
|
</properties> |
|
|
|
<dependencies> |
|
<!-- markdown to html --> |
|
<dependency> |
|
<groupId>org.commonmark</groupId> |
|
<artifactId>commonmark</artifactId> |
|
<version>0.21.0</version> |
|
</dependency> |
|
<!-- xml-edit --> |
|
<dependency> |
|
<groupId>jakarta.xml.bind</groupId> |
|
<artifactId>jakarta.xml.bind-api</artifactId> |
|
<version>3.0.1</version> |
|
</dependency> |
|
<!-- bean-container --> |
|
<dependency> |
|
<groupId>jakarta.ejb</groupId> |
|
<artifactId>jakarta.ejb-api</artifactId> |
|
<version>4.0.0</version> |
|
</dependency> |
|
<!-- jdbc-access --> |
|
<dependency> |
|
<groupId>jakarta.persistence</groupId> |
|
<artifactId>jakarta.persistence-api</artifactId> |
|
<version>3.0.0</version> |
|
</dependency> |
|
<!-- servlet --> |
|
<dependency> |
|
<groupId>jakarta.servlet</groupId> |
|
<artifactId>jakarta.servlet-api</artifactId> |
|
<version>5.0.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>junit</groupId> |
|
<artifactId>junit</artifactId> |
|
<version>4.11</version> |
|
<scope>test</scope> |
|
</dependency> |
|
</dependencies> |
|
|
|
<build> |
|
<finalName>home</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>home.war</name> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</pluginManagement> |
|
</build> |
|
</project>
|
|
|