haiti-framework/haiti-core/pom.xml

39 lines
1.4 KiB
XML
Raw Normal View History

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-07-23 10:40:47 +03:00
<version>1.1.0</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>
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>
</project>