desensitize/pom.xml

131 lines
3.4 KiB
XML
Raw Permalink Normal View History

2022-01-20 19:54:59 +08: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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.6.2</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>org.applesline</groupId>
<artifactId>desensitize</artifactId>
2023-03-11 23:17:00 +08:00
<version>cmx-1.0.1</version>
2022-01-20 19:54:59 +08:00
<name>desensitize</name>
<description>数据脱敏工具库</description>
<properties>
<java.version>1.8</java.version>
2023-03-10 17:30:51 +08:00
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
2022-01-20 19:54:59 +08:00
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
</dependency>
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<version>2.2.0</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<executions>
<execution>
<id>default-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
2023-03-10 17:24:05 +08:00
<!-- <plugin>-->
<!-- <groupId>org.sonatype.plugins</groupId>-->
<!-- <artifactId>nexus-staging-maven-plugin</artifactId>-->
<!-- <version>1.5.1</version>-->
<!-- <executions>-->
<!-- <execution>-->
<!-- <id>default-deploy</id>-->
<!-- <phase>deploy</phase>-->
<!-- <goals>-->
<!-- <goal>deploy</goal>-->
<!-- </goals>-->
<!-- </execution>-->
<!-- </executions>-->
<!-- </plugin>-->
2022-01-20 19:54:59 +08:00
</plugins>
</build>
2023-03-10 17:26:21 +08:00
<repositories>
<repository>
<id>maven-public</id>
<url>http://117.33.142.185:8081/repository/maven-public/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>maven-public</id>
<url>http://117.33.142.185:8081/repository/maven-public/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</pluginRepository>
</pluginRepositories>
<distributionManagement>
<repository>
<id>store</id>
<url>http://117.33.142.185:8081/repository/store/</url>
</repository>
<snapshotRepository>
<id>store</id>
<url>http://117.33.142.185:8081/repository/store/</url>
</snapshotRepository>
</distributionManagement>
2022-01-20 19:54:59 +08:00
</project>