-
Notifications
You must be signed in to change notification settings - Fork 169
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added transform-cli module to support gradle transforms in okbuck (#373)
* Added transform-cli module to support gradle transforms in okbuck * Changes for review * Removed gradle dependency from dependencies.gradle * Removed non complete tests * Added prefix and used camel case for java system properties * Removed transform experimental flag * Removed transform-cli from okbuck configuration
- Loading branch information
Showing
22 changed files
with
1,125 additions
and
36 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
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
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
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
Binary file added
BIN
+2.43 MB
buildSrc/src/main/resources/com/uber/okbuck/core/util/transform/transform-cli.jar
Binary file not shown.
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
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,34 @@ | ||
apply plugin: "application" | ||
apply plugin: "com.github.johnrengelman.shadow" | ||
|
||
jar.manifest.attributes( | ||
'Implementation-Title': 'Cli Transform', | ||
'Implementation-Version': '1.0', | ||
'Main-Class': 'com.ubercab.transform.CliTransform', | ||
'X-Compile-Source-JDK': '1.7', | ||
'X-Compile-Target-JDK': '1.7') | ||
|
||
mainClassName = "com.ubercab.transform.CliTransform" | ||
|
||
repositories { | ||
jcenter() | ||
} | ||
|
||
dependencies { | ||
compileOnly gradleApi() | ||
compile deps.support.annotations | ||
compile deps.build.androidPluginApi | ||
compile deps.build.commonsIo | ||
testCompile deps.test.junit | ||
testCompile deps.test.mockito | ||
testCompile deps.test.assertj | ||
} | ||
|
||
shadowJar { | ||
baseName = 'transform-cli' | ||
classifier = null | ||
version = null | ||
dependencies { | ||
exclude(dependency("org.gradle:gradle:+")) | ||
} | ||
} |
Oops, something went wrong.