-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
56 lines (50 loc) · 1.28 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
/**
* This file was generated automatically by the 'createModuleBuild' task.
* Created at: 2024-07-19T13:48:20.436367Z.
*
* WARNING: Do not put your credentials directly in this file.
*
*/
group = "com.etendoerp"
version = "1.4.1"
description = "Specialized tool set for Etendo Copilot"
ext.artifact = "copilot.toolpack"
ext.repository = "https://maven.pkg.github.com/etendosoftware/com.etendoerp.copilot.extensions"
configurations {
moduleDependencyContainer
}
sourceSets {
main {
resources {
srcDirs("etendo-resources")
}
}
}
publishing {
publications {
"com.etendoerp.copilot.toolpack"(MavenPublication) {
from components.java
groupId = group
artifactId = artifact
version = version
}
}
repositories {
maven {
url "https://maven.pkg.github.com/etendosoftware/com.etendoerp.copilot.extensions"
}
}
}
repositories {
mavenCentral()
maven {
url "https://maven.pkg.github.com/etendosoftware/com.etendoerp.copilot.extensions"
}
}
/**
* Declare Java dependencies using 'implementation'
* Ex: implementation "com.sun.mail:javax.mail:1.6.2"
*/
dependencies {
implementation('com.etendoerp:copilot:1.9.1')
}