haiti-framework/haiti-bom/pom.xml

244 lines
9.3 KiB
XML
Raw Normal View History

2020-11-12 22:10:01 +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>
2021-10-20 21:22:45 +03:00
<groupId>dev.struchkov.haiti</groupId>
2020-11-12 22:10:01 +03:00
<artifactId>haiti-bom</artifactId>
2021-10-20 21:22:45 +03:00
<version>0.0.1-SNAPSHOT</version>
2020-11-12 22:10:01 +03:00
<packaging>pom</packaging>
<name>Haiti BOM</name>
2020-11-15 13:44:50 +03:00
<description>Current versions of the framework dependencies</description>
2020-11-12 22:10:01 +03:00
<url>https://github.com/haiti-projects/haiti-framework</url>
2021-10-20 21:22:45 +03:00
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
<comments>
Copyright 2010 the original author or authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied.
See the License for the specific language governing permissions and
limitations under the License.
</comments>
</license>
</licenses>
2020-11-15 13:44:50 +03:00
<organization>
2021-10-20 21:22:45 +03:00
<name>Struchkov Inc.</name>
<url>https://mark.struchkov.dev</url>
2020-11-15 13:44:50 +03:00
</organization>
2020-11-12 22:10:01 +03:00
2021-10-20 21:22:45 +03:00
<scm>
<connection>scm:git:https://github.com/haiti-projects/haiti-framework.git</connection>
<url>https://github.com/haiti-projects/haiti-framework</url>
<developerConnection>scm:git:https://github.com/haiti-projects/haiti-framework.git</developerConnection>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/haiti-projects/haiti-framework/issues</url>
</issueManagement>
2020-11-12 22:10:01 +03:00
<properties>
2021-10-20 21:22:45 +03:00
<java.version>16</java.version>
<maven.compiler.source>16</maven.compiler.source>
<maven.compiler.target>16</maven.compiler.target>
2020-11-12 22:10:01 +03:00
2021-10-20 21:22:45 +03:00
<haiti.context.version>0.0.1-SNAPSHOT</haiti.context.version>
<haiti.core.version>0.0.1-SNAPSHOT</haiti.core.version>
<haiti.filter.api.version>0.0.1-SNAPSHOT</haiti.filter.api.version>
<haiti.filter.criteria.version>0.0.1-SNAPSHOT</haiti.filter.criteria.version>
<haiti.database.version>0.0.1-RELEASE</haiti.database.version>
<haiti.utils.version>0.0.1-SNAPSHOT</haiti.utils.version>
2020-11-12 22:10:01 +03:00
<spring.data.elasticsearch.version>4.1.0</spring.data.elasticsearch.version>
<spring.data.jpa.version>2.4.0</spring.data.jpa.version>
<spring.data.commons.version>2.4.0</spring.data.commons.version>
<elasticsearch.version>7.9.3</elasticsearch.version>
2021-10-20 21:22:45 +03:00
<lombok.version>1.18.22</lombok.version>
2020-11-12 22:10:01 +03:00
</properties>
<dependencyManagement>
<dependencies>
<dependency>
2021-10-20 21:22:45 +03:00
<groupId>dev.struchkov.haiti</groupId>
2020-11-12 22:10:01 +03:00
<artifactId>haiti-context</artifactId>
2021-10-20 21:22:45 +03:00
<version>${haiti.context.version}</version>
2020-11-12 22:10:01 +03:00
</dependency>
<dependency>
2021-10-20 21:22:45 +03:00
<groupId>dev.struchkov.haiti</groupId>
2020-11-12 22:10:01 +03:00
<artifactId>haiti-core</artifactId>
2021-10-20 21:22:45 +03:00
<version>${haiti.core.version}</version>
2020-11-12 22:10:01 +03:00
</dependency>
<dependency>
2021-10-20 21:22:45 +03:00
<groupId>dev.struchkov.haiti</groupId>
2020-11-12 22:10:01 +03:00
<artifactId>haiti-filter</artifactId>
2021-10-20 21:22:45 +03:00
<version>${haiti.filter.api.version}</version>
2020-11-12 22:10:01 +03:00
</dependency>
2020-11-15 13:44:50 +03:00
<dependency>
2021-10-20 21:22:45 +03:00
<groupId>dev.struchkov.haiti.filter</groupId>
2020-11-15 13:44:50 +03:00
<artifactId>haiti-filter-criteria</artifactId>
2021-10-20 21:22:45 +03:00
<version>${haiti.filter.criteria.version}</version>
</dependency>
<dependency>
<groupId>dev.struchkov.haiti</groupId>
<artifactId>haiti-utils</artifactId>
<version>${haiti.utils.version}</version>
2020-11-15 13:44:50 +03:00
</dependency>
2020-11-12 22:10:01 +03:00
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch</artifactId>
<version>${elasticsearch.version}</version>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
<artifactId>javax.persistence-api</artifactId>
<version>2.2</version>
</dependency>
<!-- spring -->
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-elasticsearch</artifactId>
<version>${spring.data.elasticsearch.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-commons</artifactId>
<version>${spring.data.commons.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jpa</artifactId>
<version>${spring.data.jpa.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
2021-10-20 21:22:45 +03:00
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
2020-11-12 22:10:01 +03:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
</build>
<developers>
<developer>
<id>uPagge</id>
<name>Struchkov Mark</name>
2021-10-20 21:22:45 +03:00
<email>mark@struchkov.dev</email>
<organization>Struchkov Inc.</organization>
<organizationUrl>https://struchkov.dev</organizationUrl>
<url>https://mark.struchkov.dev</url>
2020-11-15 13:44:50 +03:00
<roles>
2021-10-20 21:22:45 +03:00
<role>Project Lead</role>
2020-11-15 13:44:50 +03:00
</roles>
<timezone>+3</timezone>
2020-11-12 22:10:01 +03:00
</developer>
</developers>
</project>