-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
66 lines (60 loc) · 1.57 KB
/
build.gradle
File metadata and controls
66 lines (60 loc) · 1.57 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
/**
* This file was generated automatically by the 'createModuleBuild' task.
* Created at: 2025-02-21T00:24:17.613161469Z.
*
* WARNING: Do not put your credentials directly in this file.
*
*/
group = "com.etendoerp"
version = "1.0.3"
description = "Main UI Next.js frontend"
ext.artifact = "mainui"
ext.repository = "https://maven.pkg.github.com/etendosoftware/com.etendoerp.platform.extensions"
configurations {
moduleDependencyContainer
}
publishing {
publications {
"com.etendoerp.mainui"(MavenPublication) {
from components.java
groupId = group
artifactId = artifact
version = version
}
}
repositories {
maven {
url "https://maven.pkg.github.com/etendosoftware/com.etendoerp.platform.extensions"
}
}
}
repositories {
mavenCentral()
maven {
url "https://maven.pkg.github.com/etendosoftware/com.etendoerp.platform.extensions"
}
maven {
url "https://repo.futit.cloud/repository/maven-releases"
}
maven {
url "https://repo.futit.cloud/repository/maven-public-releases"
}
maven {
url "https://repo.futit.cloud/repository/maven-public-jars"
}
}
/**
* Declare Java dependencies using 'implementation'
* Ex: implementation "com.sun.mail:javax.mail:1.6.2"
*/
dependencies {
implementation('com.etendoerp:metadata:1.0.3')
implementation('com.etendoerp.platform:etendo-core:[26.1.0,26.2.0)')
}
sourceSets {
main {
resources {
srcDirs(["compose"])
}
}
}