Skip to content

Commit 675f56b

Browse files
author
lerndevops
authored
Merge branch 'master' into master
2 parents 1dcc548 + ed5fb73 commit 675f56b

19 files changed

Lines changed: 1044 additions & 535 deletions

.gitignore

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

Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
FROM tomcat
2+
ADD target/sampleapp.war /usr/local/tomcat/webapps
3+
EXPOSE 8080
4+
CMD /usr/local/tomcat/bin/catalina.sh run

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1+
12
Sample Java Applicaiton V1.2
23
ravi change
4+

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+
}

build.properties

Lines changed: 0 additions & 60 deletions
This file was deleted.

0 commit comments

Comments
 (0)