haiti-framework/pom.xml

210 lines
8.0 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>
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-13 13:53:02 +03:00
<version>0.0.2</version>
2020-11-12 02:03:10 +03:00
<packaging>pom</packaging>
<modules>
<module>haiti-context</module>
<module>haiti-core</module>
2020-11-12 22:10:01 +03:00
<module>haiti-filter</module>
<module>haiti-bom</module>
2021-10-20 21:22:45 +03:00
<module>haiti-utils</module>
2022-01-13 13:53:02 +03:00
<module>haiti-exception</module>
2020-11-12 02:03:10 +03:00
</modules>
2020-11-15 13:44:50 +03:00
<name>Haiti Framework</name>
<description>Fast development to keep time on the beach</description>
<url>https://github.com/haiti-projects/haiti-framework</url>
2022-01-13 13:53:02 +03:00
<properties>
<haiti.bom.ver>0.0.2</haiti.bom.ver>
<haiti.exception.ver>0.0.2</haiti.exception.ver>
<haiti.context.ver>0.0.2</haiti.context.ver>
<haiti.core.ver>0.0.2</haiti.core.ver>
<haiti.filter.api.ver>0.0.2</haiti.filter.api.ver>
<haiti.filter.criteria.ver>0.0.2</haiti.filter.criteria.ver>
<haiti.database.ver>0.0.2</haiti.database.ver>
<haiti.utils.ver>0.0.2</haiti.utils.ver>
2020-11-15 13:44:50 +03:00
2022-01-13 13:53:02 +03:00
<plugin.nexus.staging.ver>1.6.8</plugin.nexus.staging.ver>
<plugin.maven.source.ver>3.2.1</plugin.maven.source.ver>
<plugin.maven.javadoc.ver>3.3.1</plugin.maven.javadoc.ver>
<plugin.maven.gpg.ver>3.0.1</plugin.maven.gpg.ver>
</properties>
2020-11-15 13:44:50 +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>
2022-01-13 13:53:02 +03:00
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
2020-11-15 13:44:50 +03:00
</snapshotRepository>
</distributionManagement>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/haiti-projects/haiti-framework/issues</url>
</issueManagement>
2022-01-13 13:53:02 +03:00
<dependencyManagement>
<dependencies>
<dependency>
<groupId>dev.struchkov.haiti</groupId>
<artifactId>haiti-bom</artifactId>
<version>0.0.2</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>${plugin.nexus.staging.ver}</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${plugin.maven.source.ver}</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>${plugin.maven.javadoc.ver}</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>${plugin.maven.gpg.ver}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<gpgArguments>
<gpgArgument>--pinentry-mode</gpgArgument>
<gpgArgument>loopback</gpgArgument>
</gpgArguments>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
</plugins>
</build>
2020-11-12 22:10:01 +03:00
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
2022-01-13 13:53:02 +03:00
<artifactId>maven-gpg-plugin</artifactId>
2020-11-12 22:10:01 +03:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
2022-01-13 13:53:02 +03:00
<artifactId>maven-javadoc-plugin</artifactId>
2020-11-12 22:10:01 +03:00
</plugin>
</plugins>
</build>
</profile>
</profiles>
2020-11-12 02:03:10 +03:00
<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 02:03:10 +03:00
</developer>
</developers>
2022-01-13 13:53:02 +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-12 02:03:10 +03:00
</project>