-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
60 lines (52 loc) · 1.22 KB
/
build.gradle
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
buildscript {
ext {
mavenUrl = project.property("maven")
}
repositories {
jcenter()
mavenCentral()
}
}
plugins {
id "java-library"
id "maven-publish"
}
repositories {
jcenter()
mavenCentral()
}
sourceSets {
main {
java {
srcDirs = ["$projectDir/src"]
exclude '**/gae/*.java'
}
}
}
dependencies {
api "org.json:json:20180130"
implementation "com.google.guava:guava:30.+"
//implementation "com.googlecode.objectify:objectify:5.1.+"
//implementation 'javax.servlet:javax.servlet-api:3.1.0'
//implementation "com.google.appengine:appengine-api-1.0-sdk:1.9.+"
implementation "org.scribe:scribe:1.3.+"
//implementation "com.google.code.findbugs:jsr305:3.+"
implementation "com.typesafe.play:play-java_2.11:2.4.8"
implementation "com.typesafe.play:play-cache_2.11:2.4.8"
}
publishing {
repositories {
maven {
name "papeeria-maven"
url "$mavenUrl"
}
}
publications {
maven(MavenPublication) {
groupId 'com.bardsoftware'
artifactId 'vaxter'
version '2021.06.29'
from components.java
}
}
}