Skip to content

Commit 93f33c3

Browse files
committed
gradle
1 parent 6a74105 commit 93f33c3

7 files changed

Lines changed: 360 additions & 0 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.gradle/

build.gradle

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
/*
2+
* This file was generated by the Gradle 'init' task.
3+
*/
4+
5+
plugins {
6+
id 'java'
7+
id 'maven-publish'
8+
}
9+
10+
repositories {
11+
mavenLocal()
12+
maven {
13+
url = 'https://maven.vaadin.com/vaadin-prereleases'
14+
}
15+
16+
maven {
17+
url = 'http://maven.vaadin.com/vaadin-addons'
18+
}
19+
20+
maven {
21+
url = 'http://oss.sonatype.org/content/repositories/vaadin-snapshots/'
22+
}
23+
24+
maven {
25+
url = 'https://repo.maven.apache.org/maven2'
26+
}
27+
}
28+
29+
dependencies {
30+
implementation 'com.vaadin:vaadin-compatibility-server:8.0.0.alpha2'
31+
implementation 'com.vaadin:vaadin-compatibility-shared:8.0.0.alpha2'
32+
implementation 'com.vaadin:vaadin-compatibility-client-compiled:8.0.0.alpha2'
33+
implementation 'com.vaadin:vaadin-themes:8.0.0.alpha2'
34+
implementation 'javax.servlet:javax.servlet-api:3.0.1'
35+
implementation 'commons-beanutils:commons-beanutils:1.9.2'
36+
implementation 'log4j:log4j:1.2.9'
37+
implementation 'org.slf4j:slf4j-api:1.7.7'
38+
implementation 'org.slf4j:slf4j-simple:1.7.7'
39+
implementation 'org.slf4j:slf4j-log4j12:1.7.7'
40+
implementation 'commons-httpclient:commons-httpclient:3.1'
41+
implementation 'org.apache.commons:commons-lang3:3.1'
42+
implementation 'org.json:json:20140107'
43+
implementation 'org.codehaus.jackson:jackson-jaxrs:1.9.4'
44+
implementation 'com.sun.xml.security:xml-security-impl:1.0'
45+
testImplementation 'junit:junit:4.7'
46+
}
47+
48+
group = 'com.devopsdemo.tutorial'
49+
// version = '2.0'
50+
// description = 'Vaadin Sampleapp example'
51+
sourceCompatibility = '1.8'
52+
53+
configurations.all {
54+
}
55+
56+
publishing {
57+
publications {
58+
maven(MavenPublication) {
59+
from(components.java)
60+
}
61+
}
62+
}
63+
64+
tasks.withType(JavaCompile) {
65+
options.encoding = 'UTF-8'
66+
}

gradle/wrapper/gradle-wrapper.jar

57.3 KB
Binary file not shown.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-bin.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

gradlew

Lines changed: 183 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 100 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

settings.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/*
2+
* This file was generated by the Gradle 'init' task.
3+
*/
4+
5+
rootProject.name = 'sampleapp'

0 commit comments

Comments
 (0)