From 4a77158362e728ccfe99aefb605f6010162b5f5f Mon Sep 17 00:00:00 2001
From: wangzilun <964606955@qq.com>
Date: Thu, 27 Jul 2023 13:16:15 +0800
Subject: [PATCH] test10
---
pom.xml | 26 +++++++++++++++++---------
1 files changed, 17 insertions(+), 9 deletions(-)
diff --git a/pom.xml b/pom.xml
index aa120d4..2a4b9be 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,19 +5,13 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.hbbohua</groupId>
<artifactId>git_study</artifactId>
- <version>1.9.0-SHNPSHOT</version>
+ <version>1.9.0-SNAPSHOT</version>
<packaging>war</packaging>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
- <version>4.13</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.13</version>
+ <version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
@@ -25,19 +19,33 @@
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<!--当前项目版本号-->
- <revision>1.9.1-SHNPSHOT</revision>
+ <revision>1.9.0-SNAPSHOT</revision>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
+ <version>2.22.2</version>
<configuration>
<testFailureIgnore>true</testFailureIgnore>
</configuration>
</plugin>
</plugins>
</build>
+ <distributionManagement>
+ <repository>
+ <id>releases</id>
+ <name>Nexus Release Repository</name>
+ <url>http://47.92.145.232:8081/repository/maven-releases/</url>
+ </repository>
+ <snapshotRepository>
+ <id>snapshots</id>
+ <name>Nexus Snapshot Repository</name>
+ <url>http://47.92.145.232:8081/repository/maven-snapshots/</url>
+ </snapshotRepository>
+ </distributionManagement>
<repositories>
<repository>
<id>maven-public</id>
--
Gitblit v1.9.1