-
Notifications
You must be signed in to change notification settings - Fork 198
Expand file tree
/
Copy pathfolib-settings.xml
More file actions
49 lines (45 loc) · 1.65 KB
/
folib-settings.xml
File metadata and controls
49 lines (45 loc) · 1.65 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
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<!--本地依赖位置按照实际情况进行修改-->
<localRepository></localRepository>
<mirrors>
<mirror>
<id>folib-oss-maven</id>
<name>maven</name>
<url>http://public.folib.com/storages/oss/maven</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
<profiles>
<profile>
<id>jdk-17</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>17</jdk>
</activation>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.compilerVersion>17</maven.compiler.compilerVersion>
</properties>
</profile>
<profile>
<id>folib-oss-maven</id>
<repositories>
<repository>
<id>central</id>
<url>https://public.folib.com/storages/oss/maven</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>folib-oss-maven</activeProfile>
<activeProfile>jdk-17</activeProfile>
</activeProfiles>
</settings>