godfather/bot-context/pom.xml

64 lines
2.1 KiB
XML
Raw Normal View History

2021-11-30 12:33:09 +03:00
<?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">
2021-12-01 11:17:08 +03:00
<modelVersion>4.0.0</modelVersion>
2021-11-30 12:33:09 +03:00
<parent>
<groupId>dev.struchkov.godfather</groupId>
<artifactId>godfather-bot</artifactId>
<version>0.0.3-SNAPSHOT</version>
2021-11-30 12:33:09 +03:00
</parent>
<artifactId>bot-context</artifactId>
2021-12-01 09:30:31 +03:00
<version>${godfather.context.ver}</version>
<packaging>jar</packaging>
<name>Bot Context</name>
<description>Доменные сущности, интерфейсы, для библиотеки Godfather</description>
2022-01-25 10:12:54 +03:00
<properties>
<skip.deploy>false</skip.deploy>
</properties>
2021-11-30 12:33:09 +03:00
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>javax.mail-api</artifactId>
2021-11-30 12:33:09 +03:00
</dependency>
2021-11-30 12:33:09 +03:00
<dependency>
<groupId>javax.persistence</groupId>
<artifactId>javax.persistence-api</artifactId>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
2021-11-30 12:33:09 +03:00
</dependencies>
2021-12-01 09:30:31 +03:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2022-01-25 10:12:54 +03:00
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
2021-12-01 09:30:31 +03:00
<configuration>
2022-01-25 10:12:54 +03:00
<skipNexusStagingDeployMojo>${skip.deploy}</skipNexusStagingDeployMojo>
2021-12-01 09:30:31 +03:00
</configuration>
</plugin>
</plugins>
</build>
2021-11-30 12:33:09 +03:00
</project>