Skip to content

Commit 11d1f74

Browse files
committed
Update Version and storage location. Remove Deployment.
1 parent 06c61a2 commit 11d1f74

File tree

2 files changed

+18
-43
lines changed

2 files changed

+18
-43
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ out/
88
.idea/
99
intellij
1010
gradle.properties
11+
/.DS_Store

build.gradle

+17-43
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
11
plugins {
22
id "com.gradle.plugin-publish" version "0.12.0"
33
id "java-gradle-plugin"
4-
id "com.jfrog.bintray" version "1.6"
54
}
5+
66
apply plugin: 'groovy'
7-
apply plugin: 'maven'
87
apply plugin: 'maven-publish'
9-
//apply plugin: 'signing'
108
apply plugin: 'jacoco'
119
apply plugin: 'project-report'
1210

13-
sourceCompatibility = 1.6
14-
targetCompatibility = 1.6
11+
sourceCompatibility = 11
12+
targetCompatibility = 11
1513

1614
defaultTasks 'clean', 'build'
1715

18-
version = '2.16.2'
19-
group = 'com.cloudzilla.gradle'
16+
version = '2.17.0'
17+
group = 'de.inetsoftware.gradle'
2018
ext.archivesBaseName = 'gradle-js-plugin'
2119
ext.isSnapshot = version.endsWith("-SNAPSHOT")
2220

@@ -38,7 +36,7 @@ task createClasspathManifest {
3836

3937
dependencies {
4038
compile gradleApi()
41-
compile('com.google.javascript:closure-compiler:v20200830') {
39+
compile('com.google.javascript:closure-compiler:v20240317') {
4240
exclude module: 'junit'
4341
}
4442
compile('io.jdev.html2js:html2js:0.1') {
@@ -111,29 +109,16 @@ pluginBundle {
111109

112110
plugins {
113111
jsPlugin {
114-
id = 'com.cloudzilla.gradle.js'
112+
id = 'de.inetsoftware.gradle.js'
115113
displayName = 'Gradle JavaScript Plugin'
116114
}
117115
}
118116
mavenCoordinates {
119-
groupId = 'com.cloudzilla.gradle'
117+
groupId = 'de.inetsoftware.gradle'
120118
artifactId = 'gradle-js-plugin'
121119
}
122120
}
123121

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-
137122
test {
138123
systemProperties['version'] = version
139124
testLogging {
@@ -143,22 +128,6 @@ test {
143128
}
144129
}
145130

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-
162131
/**
163132
* Create POM config and return for use by other tasks.
164133
*/
@@ -167,7 +136,7 @@ def getPomConfiguration() {
167136
name 'Gradle JS Plugin'
168137
packaging 'jar'
169138
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'
171140
licenses {
172141
license {
173142
name 'The Apache Software License, Version 2.0'
@@ -181,11 +150,16 @@ def getPomConfiguration() {
181150
name 'Eric Wendelin'
182151
183152
}
153+
developer {
154+
id 'inetsoftware'
155+
name 'i-net software GmbH'
156+
157+
}
184158
}
185159
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'
189163
}
190164
}
191165
}

0 commit comments

Comments
 (0)