2019-01-24 22:20:26 +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>
|
|
|
|
|
|
2019-07-12 11:41:25 +03:00
|
|
|
|
<groupId>org.sadtech.social</groupId>
|
|
|
|
|
<artifactId>social-core</artifactId>
|
|
|
|
|
<version>0.6.3-SNAPSHOT</version>
|
2019-04-29 12:13:19 +03:00
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
2020-05-03 19:52:44 +03:00
|
|
|
|
<name>Social Core</name>
|
|
|
|
|
<description>
|
|
|
|
|
Набор классов для реализации абстрактных проектов для социальных сетей и месенджеров, без привязки к конкретным
|
|
|
|
|
сервисам.
|
|
|
|
|
</description>
|
|
|
|
|
<url>https://github.com/uPagge/social-core</url>
|
|
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
|
<connection>scm:git:https://github.com/uPagge/social-core.git</connection>
|
|
|
|
|
<url>https://github.com/uPagge/social-core</url>
|
|
|
|
|
<developerConnection>scm:git:https://github.com/uPagge/social-core.git</developerConnection>
|
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
|
<snapshotRepository>
|
|
|
|
|
<id>ossrh</id>
|
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
|
</snapshotRepository>
|
|
|
|
|
</distributionManagement>
|
2019-01-24 22:20:26 +03:00
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<gson.ver>2.8.5</gson.ver>
|
2019-05-17 18:58:52 +03:00
|
|
|
|
<mail.ver>1.4</mail.ver>
|
2020-02-02 18:03:09 +03:00
|
|
|
|
<lombok.ver>1.18.10</lombok.ver>
|
2019-07-28 21:33:42 +03:00
|
|
|
|
<spring.data.jpa.ver>2.1.3.RELEASE</spring.data.jpa.ver>
|
|
|
|
|
<javax.persistence.api.ver>2.2</javax.persistence.api.ver>
|
|
|
|
|
<validation.api.ver>2.0.1.Final</validation.api.ver>
|
2019-01-24 22:20:26 +03:00
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
|
<version>${gson.ver}</version>
|
|
|
|
|
</dependency>
|
2019-07-12 11:41:25 +03:00
|
|
|
|
|
2019-05-17 18:58:52 +03:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.mail</groupId>
|
|
|
|
|
<artifactId>mail</artifactId>
|
|
|
|
|
<version>${mail.ver}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2019-01-31 00:59:00 +03:00
|
|
|
|
<dependency>
|
2019-07-12 11:41:25 +03:00
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
2019-07-28 21:33:42 +03:00
|
|
|
|
<version>${lombok.ver}</version>
|
2019-01-31 00:59:00 +03:00
|
|
|
|
</dependency>
|
2019-07-27 08:06:47 +03:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
|
<artifactId>spring-data-jpa</artifactId>
|
2019-07-28 21:33:42 +03:00
|
|
|
|
<version>${spring.data.jpa.ver}</version>
|
2019-07-27 08:06:47 +03:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.persistence</groupId>
|
|
|
|
|
<artifactId>javax.persistence-api</artifactId>
|
2019-07-28 21:33:42 +03:00
|
|
|
|
<version>${javax.persistence.api.ver}</version>
|
2019-07-27 08:06:47 +03:00
|
|
|
|
</dependency>
|
2019-07-28 08:51:31 +03:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.validation</groupId>
|
|
|
|
|
<artifactId>validation-api</artifactId>
|
2019-07-28 21:33:42 +03:00
|
|
|
|
<version>${validation.api.ver}</version>
|
2019-07-28 08:51:31 +03:00
|
|
|
|
</dependency>
|
2019-01-24 22:20:26 +03:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
2020-05-03 19:52:44 +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>
|
|
|
|
|
<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>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
|
|
|
|
</profiles>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<source>8</source>
|
|
|
|
|
<target>8</target>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
2019-05-27 10:26:19 +03:00
|
|
|
|
<developers>
|
|
|
|
|
<developer>
|
|
|
|
|
<id>uPagge</id>
|
2019-06-15 15:18:36 +03:00
|
|
|
|
<organization>SADTECH</organization>
|
2019-05-27 10:26:19 +03:00
|
|
|
|
<name>Struchkov Mark</name>
|
|
|
|
|
<email>upagge@mail.ru</email>
|
|
|
|
|
</developer>
|
|
|
|
|
</developers>
|
|
|
|
|
|
2019-01-24 22:20:26 +03:00
|
|
|
|
</project>
|