Skip to content

Instantly share code, notes, and snippets.

@lihongjie0209
Created November 17, 2018 07:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lihongjie0209/c810ec914a9bb6d5d4884d2cf9ec7c31 to your computer and use it in GitHub Desktop.
Save lihongjie0209/c810ec914a9bb6d5d4884d2cf9ec7c31 to your computer and use it in GitHub Desktop.
<?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>cn.lihongjie</groupId>
<artifactId>learn_http_by_testing</artifactId>
<version>1.0-SNAPSHOT</version>
<repositories>
<repository>
<id>central_ali</id>
<name>Maven Central Ali </name>
<url>https://maven.aliyun.com/repository/central/</url>
</repository>
</repositories>
<dependencies>
<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-classic -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.3</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment