2020-11-12 02:03:10 +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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2021-10-20 21:22:45 +03:00
|
|
|
<groupId>dev.struchkov.haiti</groupId>
|
2020-11-12 02:03:10 +03:00
|
|
|
<artifactId>haiti</artifactId>
|
2022-01-21 11:00:10 +03:00
|
|
|
<version>0.0.3</version>
|
2020-11-12 02:03:10 +03:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>haiti-core</artifactId>
|
2022-01-13 13:53:02 +03:00
|
|
|
<version>${haiti.core.ver}</version>
|
2020-11-12 02:03:10 +03:00
|
|
|
|
2020-11-15 13:44:50 +03:00
|
|
|
<name>Haiti Core</name>
|
|
|
|
<description>Implementation of the main classes of the framework</description>
|
2022-01-21 11:00:10 +03:00
|
|
|
<url>https://github.com/haiti-projects/haiti-framework</url>
|
2022-01-13 13:53:02 +03:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<skip.deploy>false</skip.deploy>
|
2022-01-21 11:00:10 +03:00
|
|
|
|
|
|
|
<java.version>11</java.version>
|
|
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
2022-01-13 13:53:02 +03:00
|
|
|
</properties>
|
2020-11-15 13:44:50 +03:00
|
|
|
|
2020-11-12 02:03:10 +03:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2021-10-20 21:22:45 +03:00
|
|
|
<groupId>dev.struchkov.haiti</groupId>
|
2020-11-12 02:03:10 +03:00
|
|
|
<artifactId>haiti-context</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2021-10-20 21:22:45 +03:00
|
|
|
<groupId>dev.struchkov.haiti</groupId>
|
|
|
|
<artifactId>haiti-filter</artifactId>
|
2020-11-12 02:03:10 +03:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2022-01-13 13:53:02 +03:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2022-01-22 11:21:36 +03:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
</plugin>
|
2022-01-13 13:53:02 +03:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skipNexusStagingDeployMojo>${skip.deploy}</skipNexusStagingDeployMojo>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2020-11-12 02:03:10 +03:00
|
|
|
</project>
|