You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by bd...@apache.org on 2020/04/14 15:18:55 UTC

[sling-whiteboard] branch master updated (e51f1c7 -> 97d5875)

This is an automated email from the ASF dual-hosted git repository.

bdelacretaz pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/sling-whiteboard.git.


    from e51f1c7  Move to a Util structure for OSGi Feature Model
     add 0648a1b  Avoid bnd baseline error as we're not released yet
     add c2617e2  Rename internal to engine
     add 6172147  First rough version of a GraphQLServlet
     add 97d5875  README tweak

No new revisions were added by this update.

Summary of changes:
 graphql-scripting/README.md                        |  40 +++++++-
 graphql-scripting/pom.xml                          |  10 +-
 .../{internal => engine}/GraphQLResourceQuery.java |  14 ++-
 .../{internal => engine}/GraphQLScriptEngine.java  |  22 +++--
 .../GraphQLScriptEngineFactory.java                |   2 +-
 .../GraphQLScriptEngineFactoryConfiguration.java   |   2 +-
 .../scripting/gql/servlet/GraphQLServlet.java      | 106 +++++++++++++++++++++
 .../GraphQLResourceQueryTest.java                  |   2 +-
 .../{BasicContentIT.java => GraphQLServletIT.java} |  11 +--
 9 files changed, 182 insertions(+), 27 deletions(-)
 rename graphql-scripting/src/main/java/org/apache/sling/scripting/gql/{internal => engine}/GraphQLResourceQuery.java (86%)
 rename graphql-scripting/src/main/java/org/apache/sling/scripting/gql/{internal => engine}/GraphQLScriptEngine.java (84%)
 rename graphql-scripting/src/main/java/org/apache/sling/scripting/gql/{internal => engine}/GraphQLScriptEngineFactory.java (97%)
 rename graphql-scripting/src/main/java/org/apache/sling/scripting/gql/{internal => engine}/GraphQLScriptEngineFactoryConfiguration.java (97%)
 create mode 100644 graphql-scripting/src/main/java/org/apache/sling/scripting/gql/servlet/GraphQLServlet.java
 rename graphql-scripting/src/test/java/org/apache/sling/scripting/gql/{internal => engine}/GraphQLResourceQueryTest.java (97%)
 copy graphql-scripting/src/test/java/org/apache/sling/scripting/graphql/it/{BasicContentIT.java => GraphQLServletIT.java} (85%)