mirror of
https://github.com/actions/setup-java.git
synced 2025-04-21 02:16:45 +00:00
test proxy
This commit is contained in:
parent
63d68602dd
commit
2cbe3e7b1b
5 changed files with 60 additions and 17 deletions
22
__tests__/sample-proj/pom.xml
Normal file
22
__tests__/sample-proj/pom.xml
Normal file
|
@ -0,0 +1,22 @@
|
|||
<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/maven-v4_0_0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.helloworld</groupId>
|
||||
<artifactId>HelloWorld</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<name>HelloWorld</name>
|
||||
<url>http://maven.apache.org</url>
|
||||
<dependencies>
|
||||
<!-- https://mvnrepository.com/artifact/org.json/json -->
|
||||
<dependency>
|
||||
<groupId>org.json</groupId>
|
||||
<artifactId>json</artifactId>
|
||||
<version>20190722</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<properties>
|
||||
<maven.compiler.source>7</maven.compiler.source>
|
||||
<maven.compiler.target>7</maven.compiler.target>
|
||||
</properties>
|
||||
</project>
|
Loading…
Add table
Add a link
Reference in a new issue