File tree Expand file tree Collapse file tree 1 file changed +14
-9
lines changed Expand file tree Collapse file tree 1 file changed +14
-9
lines changed Original file line number Diff line number Diff line change @@ -24,9 +24,6 @@ version = "$JMEMORYBUDDY_VERSION"
24
24
java {
25
25
sourceCompatibility = 11
26
26
targetCompatibility = 11
27
-
28
- withSourcesJar()
29
- withJavadocJar()
30
27
}
31
28
32
29
dependencies {
50
47
}
51
48
}
52
49
53
-
54
50
publishing {
55
51
publications {
56
52
mavenJava(MavenPublication ) {
@@ -59,7 +55,6 @@ publishing {
59
55
artifactId " JMemoryBuddy"
60
56
version project. version
61
57
62
-
63
58
pom {
64
59
packaging = ' jar'
65
60
name = ' JMemoryBuddy'
@@ -90,11 +85,21 @@ publishing {
90
85
}
91
86
}
92
87
}
93
- }
94
88
95
- jar {
96
- manifest {
97
- attributes ' Automatic-Module-Name' : " de.sandec.jmemorybuddy"
89
+ java {
90
+ withSourcesJar()
91
+ withJavadocJar()
92
+ }
93
+
94
+ repositories {
95
+ maven {
96
+ name = " artifactory"
97
+ url = " https://sandec.jfrog.io/artifactory/repo"
98
+ credentials {
99
+ username System . getenv(" SANDEC_ARTIFACTORY_USERNAME" )
100
+ password System . getenv(" SANDEC_ARTIFACTORY_PASSWORD" )
101
+ }
102
+ }
98
103
}
99
104
}
100
105
You can’t perform that action at this time.
0 commit comments