Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GWT Events
==========
GWT Event
=========

A future-proof port of the `com.google.web.bindery.event.Event` GWT module,
with no dependency on `gwt-user` (besides the Java Runtime Emulation),
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,11 @@ dependencies {
task transpile(type: JavaExec) {
inputs.files configurations.j2cl
inputs.files sourceSets.main.allJava
outputs.file "${buildDir}/libs/gwt-events.js.zip"
outputs.file "${buildDir}/libs/gwt-event.js.zip"

main = 'com.google.j2cl.transpiler.J2clTranspiler'
classpath = configurations.j2cl_transpiler
args = [ "-cp", configurations.j2cl.asPath, "-d", "${buildDir}/libs/gwt-events.js.zip" ] \
args = [ "-cp", configurations.j2cl.asPath, "-d", "${buildDir}/libs/gwt-event.js.zip" ] \
+ sourceSets.main.allJava
}
assemble.dependsOn transpile
Expand Down
8 changes: 4 additions & 4 deletions buildSrc/src/main/kotlin/local/maven-publish.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -44,17 +44,17 @@ val mavenPublication = publishing.publications.create<MavenPublication>("maven")
pom {
name.set(provider { "$groupId:$artifactId" })
description.set(provider { project.description ?: name.get() })
url.set("https://github.com/gwtproject/gwt-events")
url.set("https://github.com/gwtproject/gwt-event")
developers {
developer {
name.set("The GWT Project Authors")
url.set("http://www.gwtproject.org")
}
}
scm {
connection.set("https://github.com/gwtproject/gwt-events.git")
developerConnection.set("scm:git:ssh://github.com:gwtproject/gwt-events.git")
url.set("https://github.com/gwtproject/gwt-events")
connection.set("https://github.com/gwtproject/gwt-event.git")
developerConnection.set("scm:git:ssh://github.com:gwtproject/gwt-event.git")
url.set("https://github.com/gwtproject/gwt-event")
}
licenses {
license {
Expand Down