Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/copilot/test/simulation/fixtures/tests/java-example-project/pom.xml
13405 views
1
<project xmlns="http://maven.apache.org/POM/4.0.0"
2
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4
<modelVersion>4.0.0</modelVersion>
5
<groupId>com.example</groupId>
6
<artifactId>my-java-project</artifactId>
7
<version>1.0-SNAPSHOT</version>
8
<packaging>jar</packaging>
9
10
<name>my-java-project</name>
11
<url>http://maven.apache.org</url>
12
13
<properties>
14
<maven.compiler.source>1.8</maven.compiler.source>
15
<maven.compiler.target>1.8</maven.compiler.target>
16
<junit.jupiter.version>5.7.0</junit.jupiter.version>
17
</properties>
18
19
<dependencies>
20
<dependency>
21
<groupId>org.junit.jupiter</groupId>
22
<artifactId>junit-jupiter-api</artifactId>
23
<version>${junit.jupiter.version}</version>
24
<scope>test</scope>
25
</dependency>
26
<dependency>
27
<groupId>org.junit.jupiter</groupId>
28
<artifactId>junit-jupiter-engine</artifactId>
29
<version>${junit.jupiter.version}</version>
30
<scope>test</scope>
31
</dependency>
32
</dependencies>
33
34
<build>
35
<plugins>
36
<plugin>
37
<groupId>org.apache.maven.plugins</groupId>
38
<artifactId>maven-compiler-plugin</artifactId>
39
<version>3.8.1</version>
40
<configuration>
41
<source>${maven.compiler.source}</source>
42
<target>${maven.compiler.target}</target>
43
</configuration>
44
</plugin>
45
<plugin>
46
<groupId>org.apache.maven.plugins</groupId>
47
<artifactId>maven-surefire-plugin</artifactId>
48
<version>2.22.2</version>
49
<configuration>
50
<includes>
51
<include>**/*Test.java</include>
52
</includes>
53
</configuration>
54
</plugin>
55
</plugins>
56
</build>
57
</project>
58
59