1
1
plugins {
2
2
id " com.gradle.plugin-publish" version " 0.12.0"
3
3
id " java-gradle-plugin"
4
- id " com.jfrog.bintray" version " 1.6"
5
4
}
5
+
6
6
apply plugin : ' groovy'
7
- apply plugin : ' maven'
8
7
apply plugin : ' maven-publish'
9
- // apply plugin: 'signing'
10
8
apply plugin : ' jacoco'
11
9
apply plugin : ' project-report'
12
10
13
- sourceCompatibility = 1.6
14
- targetCompatibility = 1.6
11
+ sourceCompatibility = 11
12
+ targetCompatibility = 11
15
13
16
14
defaultTasks ' clean' , ' build'
17
15
18
- version = ' 2.16.2 '
19
- group = ' com.cloudzilla .gradle'
16
+ version = ' 2.17.0 '
17
+ group = ' de.inetsoftware .gradle'
20
18
ext. archivesBaseName = ' gradle-js-plugin'
21
19
ext. isSnapshot = version. endsWith(" -SNAPSHOT" )
22
20
@@ -38,7 +36,7 @@ task createClasspathManifest {
38
36
39
37
dependencies {
40
38
compile gradleApi()
41
- compile(' com.google.javascript:closure-compiler:v20200830 ' ) {
39
+ compile(' com.google.javascript:closure-compiler:v20240317 ' ) {
42
40
exclude module : ' junit'
43
41
}
44
42
compile(' io.jdev.html2js:html2js:0.1' ) {
@@ -111,29 +109,16 @@ pluginBundle {
111
109
112
110
plugins {
113
111
jsPlugin {
114
- id = ' com.cloudzilla .gradle.js'
112
+ id = ' de.inetsoftware .gradle.js'
115
113
displayName = ' Gradle JavaScript Plugin'
116
114
}
117
115
}
118
116
mavenCoordinates {
119
- groupId = ' com.cloudzilla .gradle'
117
+ groupId = ' de.inetsoftware .gradle'
120
118
artifactId = ' gradle-js-plugin'
121
119
}
122
120
}
123
121
124
- bintray {
125
- user = System . properties[' bintrayUsername' ]
126
- key = System . properties[' bintrayApiKey' ]
127
- publications = [' maven' ]
128
- pkg {
129
- repo = ' gradle-plugins'
130
- name = ' gradle-js-plugin'
131
- desc = ' Gradle plugin for working with JS.'
132
- licenses = [' Apache-2.0' ]
133
- labels = [' gradle' , ' js' ]
134
- }
135
- }
136
-
137
122
test {
138
123
systemProperties[' version' ] = version
139
124
testLogging {
@@ -143,22 +128,6 @@ test {
143
128
}
144
129
}
145
130
146
- install. repositories. mavenInstaller {
147
- pom. project(pomConfiguration)
148
- }
149
-
150
- uploadArchives {
151
- repositories. mavenDeployer {
152
- name = ' mavenCentralReleaseDeployer'
153
- repository(url : ' https://oss.sonatype.org/service/local/staging/deploy/maven2/' ) {
154
- authentication(userName : System . properties[' mavenCentralUsername' ], password : System . properties[' mavenCentralPassword' ])
155
- releases(updatePolicy : ' always' )
156
- snapshots(updatePolicy : ' always' )
157
- }
158
- pom. project(pomConfiguration)
159
- }
160
- }
161
-
162
131
/**
163
132
* Create POM config and return for use by other tasks.
164
133
*/
@@ -167,7 +136,7 @@ def getPomConfiguration() {
167
136
name ' Gradle JS Plugin'
168
137
packaging ' jar'
169
138
description ' A Gradle plugin for working with JS.'
170
- url ' https://github.com/eriwen /gradle-js-plugin'
139
+ url ' https://github.com/i-net-software /gradle-js-plugin'
171
140
licenses {
172
141
license {
173
142
name ' The Apache Software License, Version 2.0'
@@ -181,11 +150,16 @@ def getPomConfiguration() {
181
150
name ' Eric Wendelin'
182
151
183
152
}
153
+ developer {
154
+ id ' inetsoftware'
155
+ name ' i-net software GmbH'
156
+
157
+ }
184
158
}
185
159
scm {
186
- connection ' scm:https://mampcs @github.com/mampcs /gradle-js-plugin'
187
- developerConnection
' scm:[email protected] :mampcs /gradle-js-plugin.git'
188
- url ' https ://github.com/mampcs /gradle-js-plugin'
160
+ connection ' scm:https://gamma @github.com/i-net-software /gradle-js-plugin'
161
+ developerConnection
' scm:[email protected] /i-net-software /gradle-js-plugin.git'
162
+ url ' http ://github.com/i-net-software /gradle-js-plugin'
189
163
}
190
164
}
191
165
}
0 commit comments