84 lines
2.9 KiB
XML
84 lines
2.9 KiB
XML
|
<?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">
|
||
|
<parent>
|
||
|
<artifactId>mosty-common</artifactId>
|
||
|
<groupId>com.mosty</groupId>
|
||
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<artifactId>common-token-starter</artifactId>
|
||
|
|
||
|
<properties>
|
||
|
<maven.compiler.source>8</maven.compiler.source>
|
||
|
<maven.compiler.target>8</maven.compiler.target>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.mosty</groupId>
|
||
|
<artifactId>common-base-starter</artifactId>
|
||
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
<version>${spring-boot-dependencies.version}</version>
|
||
|
<optional>true</optional>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba</groupId>
|
||
|
<artifactId>transmittable-thread-local</artifactId>
|
||
|
<version>${transmittable-version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-aop</artifactId>
|
||
|
<version>${spring-boot-dependencies.version}</version>
|
||
|
<optional>true</optional>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.auth0</groupId>
|
||
|
<artifactId>java-jwt</artifactId>
|
||
|
<version>3.8.1</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
<version>1.16.18</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>com.vividsolutions</groupId>
|
||
|
<artifactId>jts</artifactId>
|
||
|
<version>1.13</version>
|
||
|
</dependency>
|
||
|
|
||
|
</dependencies>
|
||
|
|
||
|
<distributionManagement>
|
||
|
<repository>
|
||
|
<id>mosty-nexus-releases</id>
|
||
|
<name>release version</name>
|
||
|
<url>http://10.64.201.126:8081/repository/maven-releases/</url>
|
||
|
</repository>
|
||
|
<snapshotRepository>
|
||
|
<id>mosty-nexus-snapshots</id>
|
||
|
<name>snapshots version</name>
|
||
|
<url>http://10.64.201.126:8081/repository/maven-snapshots/</url>
|
||
|
</snapshotRepository>
|
||
|
</distributionManagement>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-deploy-plugin</artifactId>
|
||
|
<version>2.8.2</version>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|