forked from apache/thrift
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add "skip_async" property to java generator - This skips generation of asynchronous interfaces for those who are not using them. - Add "struct_separate_files" property to C++ generator - This generates of classes in separate files, one class per file, instead of everything in a single file (similar to what other generators like java do by default). - For clean separation of classes and allows override of specific classes by hand-written code. - This patch also changes the constants generation to use static consts for primitive types (int, bool, long, short, byte, double) - Add couple of options to skip C++ generator features - "no-recursion-limit" option to skip checks for maximum recursion limit while writing objects - "no-concurrent-client" option to skip concurrent client code generation - Adding public getters for TSocket timeout settings - Removing unnecessary TBase with virtual TBase - Changing to C++11 noexcept from empty throw() - Allow for localhost-only bind for client sockets (C++) - Fixing build on older compilers (gcc < 4.5). - Fixing maven repo URLs to use https - Fix java plugin's gradle install task
- Loading branch information
Showing
16 changed files
with
417 additions
and
133 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Maven Ant tasks Jar details | ||
mvn.ant.task.version=2.1.3 | ||
mvn.repo=http://repo1.maven.org/maven2 | ||
mvn.repo=https://repo1.maven.org/maven2 | ||
mvn.ant.task.url=${mvn.repo}/org/apache/maven/maven-ant-tasks/${mvn.ant.task.version} | ||
mvn.ant.task.jar=maven-ant-tasks-${mvn.ant.task.version}.jar |
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 @@ | ||
# Maven Ant tasks Jar details | ||
mvn.ant.task.version=2.1.3 | ||
mvn.repo=http://repo1.maven.org/maven2 | ||
mvn.repo=https://repo1.maven.org/maven2 | ||
mvn.ant.task.url=${mvn.repo}/org/apache/maven/maven-ant-tasks/${mvn.ant.task.version} | ||
mvn.ant.task.jar=maven-ant-tasks-${mvn.ant.task.version}.jar |
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 was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Maven Ant tasks Jar details | ||
mvn.ant.task.version=2.1.3 | ||
mvn.repo=http://repo1.maven.org/maven2 | ||
mvn.repo=https://repo1.maven.org/maven2 | ||
mvn.ant.task.url=${mvn.repo}/org/apache/maven/maven-ant-tasks/${mvn.ant.task.version} | ||
mvn.ant.task.jar=maven-ant-tasks-${mvn.ant.task.version}.jar |
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