haiti-framework/pom.xml

116 lines
4.2 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>
<groupId>org.sadtech.haiti</groupId>
<artifactId>haiti</artifactId>
2020-11-12 22:10:01 +03:00
<version>0.0.1-RELEASE</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>
2020-11-12 02:03:10 +03:00
</modules>
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>
<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 02:03:10 +03:00
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.sadtech.haiti</groupId>
2020-11-12 22:10:01 +03:00
<artifactId>haiti-bom</artifactId>
<version>0.0.1-RELEASE</version>
<type>pom</type>
<scope>import</scope>
2020-11-12 02:03:10 +03:00
</dependency>
</dependencies>
</dependencyManagement>
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>
2020-11-12 02:03:10 +03:00
<developers>
<developer>
<id>uPagge</id>
<name>Struchkov Mark</name>
<email>upagge@ya.ru</email>
<organization>SADTECH</organization>
2020-11-12 22:10:01 +03:00
<url>https://uPagge.sadtech.org</url>
2020-11-12 02:03:10 +03:00
</developer>
</developers>
</project>