-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
87 lines (75 loc) · 2.34 KB
/
build.gradle
File metadata and controls
87 lines (75 loc) · 2.34 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
plugins {
id 'java'
id 'maven-publish'
}
group 'io.msla'
version '0.1.7'
repositories {
mavenCentral()
}
compileJava {
options.encoding = 'UTF-8'
}
compileTestJava {
options.encoding = 'UTF-8'
}
jar {
archiveBaseName = 'msla-imaging'
archiveVersion = project.version
}
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.28'
annotationProcessor 'org.projectlombok:lombok:1.18.28'
implementation "com.google.guava:guava:32.0.1-jre"
implementation 'org.apache.xmlgraphics:batik-all:1.16'
implementation 'org.dom4j:dom4j:2.1.4'
implementation 'jaxen:jaxen:2.0.0'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.15.3'
testCompileOnly 'org.projectlombok:lombok:1.18.28'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.28'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
}
test {
useJUnitPlatform()
}
publishing {
repositories {
maven {
name = "maven.msla.io"
url = "https://maven.msla.io/repository"
credentials {
username = System.getProperty("msla.maven.user")
password = System.getProperty("msla.maven.password")
}
}
}
publications {
mavenJava(MavenPublication) {
from components.java
pom {
name = 'msla-imaging'
description = 'mSLA 3D-printer file processing library'
url = 'https://msla.io/'
licenses {
license {
name = 'The Apache License, Version 2.0'
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
id = 'futurelink'
name = 'Denis Pavlov'
email = 'futurelink.vl@gmail.com'
}
}
scm {
connection = 'scm:git:git://github.com:futurelink/msla-imaging.git'
developerConnection = 'scm:git:ssh://github.com:futurelink/msla-imaging.git'
url = "https://github.com/futurelink/msla-imaging"
}
}
}
}
}