2022-02-13 15:36:31 +03:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2023-01-23 15:23:10 +03:00
|
|
|
<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">
|
2022-02-13 15:36:31 +03:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>dev.struchkov.haiti</groupId>
|
2023-01-23 14:25:25 +03:00
|
|
|
<artifactId>haiti-dependencies</artifactId>
|
2023-01-23 15:22:57 +03:00
|
|
|
<version>2.4.1</version>
|
2022-02-13 15:36:31 +03:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>dev.struchkov.haiti.utils</groupId>
|
|
|
|
<artifactId>haiti-utils-field-constants</artifactId>
|
2023-01-23 15:23:10 +03:00
|
|
|
<version>0.0.7</version>
|
2022-02-13 15:36:31 +03:00
|
|
|
|
|
|
|
<name>Haiti Field Name Constants Utils</name>
|
|
|
|
<description>Generating class field names</description>
|
|
|
|
<url>https://github.com/haiti-projects/haiti-utils-field-constants</url>
|
|
|
|
<issueManagement>
|
|
|
|
<system>GitHub</system>
|
|
|
|
<url>https://github.com/haiti-projects/haiti-utils-field-constants/issues</url>
|
|
|
|
</issueManagement>
|
|
|
|
|
|
|
|
<properties>
|
2023-01-23 14:25:25 +03:00
|
|
|
<java.version>17</java.version>
|
2022-02-13 15:36:31 +03:00
|
|
|
<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>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.haiti</groupId>
|
|
|
|
<artifactId>haiti-utils</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.persistence</groupId>
|
|
|
|
<artifactId>javax.persistence-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.auto.service</groupId>
|
|
|
|
<artifactId>auto-service</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<annotationProcessorPaths>
|
|
|
|
<path>
|
|
|
|
<groupId>com.google.auto.service</groupId>
|
|
|
|
<artifactId>auto-service</artifactId>
|
|
|
|
<version>1.0.1</version>
|
|
|
|
</path>
|
|
|
|
</annotationProcessorPaths>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<scm>
|
2023-01-23 15:17:25 +03:00
|
|
|
<connection>scm:git:https://git.struchkov.dev/Haiti/haiti-utils-field-constants.git</connection>
|
|
|
|
<url>https://git.struchkov.dev/Haiti/haiti-utils-field-constants</url>
|
|
|
|
<developerConnection>scm:git:https://git.struchkov.dev/Haiti/haiti-utils-field-constants.git</developerConnection>
|
2023-01-23 15:23:10 +03:00
|
|
|
<tag>v.0.0.7</tag>
|
|
|
|
</scm>
|
2022-02-13 15:36:31 +03:00
|
|
|
|
|
|
|
</project>
|