All checks were successful
continuous-integration/drone/push Build is passing
29 lines
831 B
XML
29 lines
831 B
XML
<?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>
|
|
|
|
<parent>
|
|
<groupId>ru.penkrat.stbf</groupId>
|
|
<artifactId>stbf-parent</artifactId>
|
|
<version>0.0.1</version>
|
|
</parent>
|
|
|
|
<artifactId>stbf-api</artifactId>
|
|
<name>stbf-api</name>
|
|
<description>Simple Telegram Bot Facade API Module</description>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>${java.version}</source>
|
|
<target>${java.version}</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|