-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsettings-flowable.xml
More file actions
72 lines (72 loc) · 2.84 KB
/
settings-flowable.xml
File metadata and controls
72 lines (72 loc) · 2.84 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
This file is just a sample!
Changing the username and password here will not do anything on its own.
Please read the README.md to understand how to use this file.
!-->
<settings
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.2.0 http://maven.apache.org/xsd/settings-1.2.0.xsd"
xmlns="http://maven.apache.org/SETTINGS/1.2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<servers>
<server>
<!--
These are not your personal accounts (e.g., user_1), but the ones provided to you in the training preparation email.
Ideally, do not modify this file; instead, copy the provided settings.xml file to your .m2 folder.
-->
<username>YOUR TRAINING ACCESS HERE, e.g. tra-080-bot</username>
<password>The password to access the artifacts</password>
<id>flowable-repo</id>
</server>
</servers>
<profiles>
<profile>
<id>flowable</id>
<repositories>
<repository>
<id>flowable-repo</id>
<name>Flowable Repository</name>
<url>https://flowable.jfrog.io/artifactory/flowable-maven-all</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>central</name>
<url>https://repo1.maven.org/maven2</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>flowable-repo</id>
<name>Flowable Plugin Repository</name>
<url>https://flowable.jfrog.io/artifactory/flowable-maven-all</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>flowable</activeProfile>
</activeProfiles>
</settings>