|
| 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 | +} |
0 commit comments