forked from jfrog/jfrog-azure-devops-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
artifactory-build-info.html
43 lines (39 loc) · 1.34 KB
/
artifactory-build-info.html
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type="text/css">
.artifactory-build-info {
overflow: auto;
padding: 10px;
}
.build-info-url {
vertical-align: 100%;
padding-left: 10px;
font-size: 19px;
font-family: "Segoe UI VSS (Regular)", "-apple-system", BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Ubuntu, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.xray-scan-url {
vertical-align: 100%;
padding-left: 10px;
font-size: 19px;
font-family: "Segoe UI VSS (Regular)", "-apple-system", BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Ubuntu, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
</style>
<script src="lib/VSS.SDK.js"></script>
<script type="text/javascript">
VSS.init({
explicitNotifyLoaded: true,
usePlatformScripts: true,
usePlatformStyles: true
});
VSS.ready(() => {
require(["scripts/build-info"], () => {
});
});
</script>
</head>
<body>
<div id="artifactory-build-info-parent" class="artifactory-build-info">
</div>
</body>
</html>