forked from sagioto/maven2gradle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
31 lines (31 loc) · 1.97 KB
/
index.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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Maven to Gradle Dependencies Converter</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<script src="converter.js"></script>
</head>
<body>
<a href="https://github.com/pitcer/maven-to-gradle-kotlin-dsl"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"></a>
<div class="container">
<div class="jumbotron">
<h1><strong>Maven to Gradle Kotlin DSL</strong></h1>
<h3>Paste your Maven dependencies here <small>(with or without the dependencies root element):</small></h3>
<div class="col-md-6">
<textarea id="input" class="form-control" rows="20" autofocus tabindex="1" style="resize: none;"></textarea>
</div>
<div class="col-md-6">
<textarea id="output" readOnly tabindex="-1" class="col-md-6 form-control" rows="20" style="resize: none;"></textarea>
</div>
<p style="color: transparent">.</p>
<button class="btn btn-primary center-block" tabindex="2" style="margin-top: 20px" onclick="convert()">Convert ⇨</button>
<p style="color: transparent">.</p>
<div id="success" class="alert alert-success" role="alert" hidden><strong>Go get 'em!</strong></div>
<div id="empty" class="alert alert-warning" role="alert" hidden><strong>You should paste something in!</strong></div>
<div id="failed" class="alert alert-danger" role="alert" hidden><strong>Oh snap! something went wrong</strong></div>
</div>
</div>
</body>
</html>