You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by jt...@apache.org on 2018/04/25 07:07:36 UTC

[incubator-netbeans-html4j] branch master updated (c7702ec -> 4d46687)

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

jtulach pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-netbeans-html4j.git.


    from c7702ec  Merge pull request #7 from dukescript/update-overview
     add 29818fa  Gradle task to process the js annotations
     add 8dabec2  Process all classes directories at once
     add 7b1345b  Hook the task after compilations and before test, jar and run phases
     add ce14e6f  Testing the result of the Gradle build
     add e7f8eef  Automatically add asm if it is missing on the application classpath
     new 4d46687  Merge pull request #6 from jtulach/jtulach/GradlePlugin

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                         |   4 +-
 html4j-maven-plugin/pom.xml                        |  58 +++-
 .../netbeans/html/mojo/ProcessJsAnnotations.java   | 309 +++++++++++++++++++++
 .../html/mojo/ProcessJsAnnotationsGradle.java      |  65 +++++
 .../html/mojo/ProcessJsAnnotationsMojo.java        | 146 +---------
 .../html/mojo/ProcessJsAnnotationsTask.java        |  70 +++++
 .../META-INF/gradle-plugins/html4j.properties      |   3 +-
 .../java/org/netbeans/html/mojo/Gradle1Test.java   |  85 ++++++
 .../org/netbeans/html/mojo/gradle1/build.gradle    |  29 +-
 .../mojo/gradle1/src/main/java/Gradle1Check.java   |  18 +-
 pom.xml                                            |   3 +
 11 files changed, 635 insertions(+), 155 deletions(-)
 create mode 100644 html4j-maven-plugin/src/main/java/org/netbeans/html/mojo/ProcessJsAnnotations.java
 create mode 100644 html4j-maven-plugin/src/main/java/org/netbeans/html/mojo/ProcessJsAnnotationsGradle.java
 create mode 100644 html4j-maven-plugin/src/main/java/org/netbeans/html/mojo/ProcessJsAnnotationsTask.java
 copy equinox-agentclass-hook/src/main/resources/hookconfigurators.properties => html4j-maven-plugin/src/main/resources/META-INF/gradle-plugins/html4j.properties (91%)
 create mode 100644 html4j-maven-plugin/src/test/java/org/netbeans/html/mojo/Gradle1Test.java
 copy json/src/main/java/org/netbeans/html/json/impl/ClassValueTypes.java => html4j-maven-plugin/src/test/resources/org/netbeans/html/mojo/gradle1/build.gradle (66%)
 copy json-tck/src/main/java/net/java/html/js/tests/Global2String.java => html4j-maven-plugin/src/test/resources/org/netbeans/html/mojo/gradle1/src/main/java/Gradle1Check.java (73%)

-- 
To stop receiving notification emails like this one, please contact
jtulach@apache.org.

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@netbeans.apache.org
For additional commands, e-mail: commits-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


[incubator-netbeans-html4j] 01/01: Merge pull request #6 from jtulach/jtulach/GradlePlugin

Posted by jt...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jtulach pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-netbeans-html4j.git

commit 4d46687d0334bb5ac269cd66bcac548ad021cca5
Merge: c7702ec e7f8eef
Author: Jaroslav Tulach <ja...@oracle.com>
AuthorDate: Wed Apr 25 09:07:34 2018 +0200

    Merge pull request #6 from jtulach/jtulach/GradlePlugin
    
    Gradle plugin to process the @JavaScriptBody annotations

 .gitignore                                         |   4 +-
 html4j-maven-plugin/pom.xml                        |  58 +++-
 .../netbeans/html/mojo/ProcessJsAnnotations.java   | 309 +++++++++++++++++++++
 .../html/mojo/ProcessJsAnnotationsGradle.java      |  65 +++++
 .../html/mojo/ProcessJsAnnotationsMojo.java        | 146 +---------
 .../html/mojo/ProcessJsAnnotationsTask.java        |  70 +++++
 .../META-INF/gradle-plugins/html4j.properties      |  21 ++
 .../java/org/netbeans/html/mojo/Gradle1Test.java   |  85 ++++++
 .../org/netbeans/html/mojo/gradle1/build.gradle    |  42 +++
 .../mojo/gradle1/src/main/java/Gradle1Check.java   |  34 +++
 pom.xml                                            |   3 +
 11 files changed, 700 insertions(+), 137 deletions(-)


-- 
To stop receiving notification emails like this one, please contact
jtulach@apache.org.

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@netbeans.apache.org
For additional commands, e-mail: commits-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists