forked from Certseeds/algorithm-template-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
93 lines (90 loc) · 3.54 KB
/
pom.xml
File metadata and controls
93 lines (90 loc) · 3.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?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>nanoseeds</groupId>
<artifactId>CS203_DSAA_template_java</artifactId>
<version>${revision}</version>
<name>${project.artifactId}</name>
<description>${project.artifactId}</description>
<properties>
<revision>0.0.5</revision>
<java.version>11</java.version>
<maven-surefire-plugin.version>3.0.0</maven-surefire-plugin.version>
<junit.version>5.9.2</junit.version>
<ci-friendly-flatten-maven-plugin.version>1.0.16</ci-friendly-flatten-maven-plugin.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
<project.build.sourceEncoding>${maven.compiler.encoding}</project.build.sourceEncoding>
</properties>
<packaging>pom</packaging>
<inceptionYear>2020</inceptionYear>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
</plugin>
<plugin>
<groupId>com.outbrain.swinfra</groupId>
<artifactId>ci-friendly-flatten-maven-plugin</artifactId>
<version>${ci-friendly-flatten-maven-plugin.version}</version>
<executions>
<execution>
<goals>
<goal>clean</goal><!-- Ensure proper cleanup. Will run on clean phase-->
<!-- Enable ci-friendly version resolution. Will run on process-resources phase-->
<goal>flatten</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<modules>
<module>build_tools</module>
<module>include</module>
<module>lab_welcome</module>
<module>2018fall</module>
<module>lab_01</module>
<module>lab_02</module>
<module>lab_03</module>
<module>lab_04</module>
<module>lab_05</module>
<module>lab_06</module>
<module>lab_07</module>
<module>lab_08</module>
<module>lab_09</module>
<module>lab_bonus</module>
</modules>
<repositories>
<repository>
<id>ali-maven</id>
<name>ali-yun-maven</name>
<url>https://maven.aliyun.com/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
</project>