-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
117 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication"> | ||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS"> | ||
<listEntry value="/gewt"/> | ||
</listAttribute> | ||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES"> | ||
<listEntry value="4"/> | ||
</listAttribute> | ||
<booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" value="true"/> | ||
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="com.google.gwt.i18n.tools.I18NSync"/> | ||
<stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" value="de.esoco.ewt.impl.gwt.GewtStrings -out src -createConstantsWithLookup"/> | ||
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="gewt"/> | ||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS"> | ||
<listEntry value="/gewt"/> | ||
</listAttribute> | ||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES"> | ||
<listEntry value="4"/> | ||
</listAttribute> | ||
<booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" value="true"/> | ||
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="com.google.gwt.i18n.tools.I18NSync"/> | ||
<stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" value="de.esoco.ewt.impl.gwt.GewtStrings -out src -createConstantsWithLookup"/> | ||
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="gewt"/> | ||
</launchConfiguration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0.1-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
// bintray buildscript dependency needs to be added to build.gradle! | ||
apply plugin: 'com.jfrog.bintray' | ||
apply plugin: 'maven' | ||
apply plugin: 'maven-publish' | ||
|
||
// ----------- Bintray Release ----------- | ||
|
||
bintray { | ||
user = project.hasProperty('bintrayUser') ? | ||
project.property('bintrayUser') : | ||
System.getenv('BINTRAY_USER') | ||
key = project.hasProperty('bintrayApiKey') ? | ||
project.property('bintrayApiKey') : | ||
System.getenv('BINTRAY_API_KEY') | ||
|
||
publish = true | ||
configurations = ['archives'] | ||
|
||
// Maven Central sync currently disabled, as registration for OSS Sonatype | ||
// needs some bureaucracy | ||
// publications = ['MavenCentral'] | ||
|
||
pkg { | ||
repo = 'sdack' | ||
name = project.name | ||
version { | ||
name = project.version | ||
vcsTag = project.version | ||
gpg { | ||
sign = false | ||
} | ||
mavenCentralSync { | ||
sync = false | ||
user = project.hasProperty('ossUser') ? | ||
project.property('ossUser') : | ||
System.getenv('OSS_USER') | ||
password = project.hasProperty('ossPassword') ? | ||
project.property('ossPassword') : | ||
System.getenv('OSS_PASSWORD') | ||
} | ||
} | ||
|
||
} | ||
} | ||
|
||
// -------------- Maven Local ------------ | ||
publishing { | ||
publications { | ||
mavenJava(MavenPublication) { | ||
from components.java | ||
} | ||
} | ||
} | ||
|
||
// -------------- Maven POM -------------- | ||
/* | ||
def pomConfig = { | ||
licenses { | ||
license { | ||
name "The Apache Software License, Version 2.0" | ||
url "http://www.apache.org/licenses/LICENSE-2.0.txt" | ||
distribution "repo" | ||
} | ||
} | ||
developers { | ||
developer { | ||
name "esoco GmbH" | ||
email "[email protected]" | ||
} | ||
} | ||
scm { | ||
url "https://github.com/esoco/${project.name}" | ||
} | ||
} | ||
publishing { | ||
publications { | ||
MavenCentral(MavenPublication) { | ||
from components.java | ||
afterEvaluate { | ||
artifact sourcesJar | ||
artifact javadocJar | ||
groupId project.group | ||
artifactId project.name | ||
version project.version | ||
pom.withXml { | ||
def root = asNode() | ||
root.appendNode('description', project.description) | ||
root.appendNode('name', "${project.group}:${project.name}") | ||
root.appendNode('url', "https://github.com/esoco/${project.name}") | ||
root.children().last() + pomConfig | ||
} | ||
} | ||
} | ||
} | ||
} | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters