You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juneau.apache.org by ja...@apache.org on 2018/12/01 21:58:46 UTC

[juneau] branch master updated (db5f915 -> 091db6a)

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

jamesbognar pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/juneau.git.


    from db5f915  Add shalithasuranga to pom.
     add c6695c3  add sonar
     add 83fd1c1  Merge branch 'master' into dev-marcelo
     add f9287bb  o created new project to split integration with SpringBoot
     add fa5681d  I changed to add new annotation the integration with spring boot
     add c9e6f3e  i added the dependency to new project
     add 8d951c9  i added new project
     add 52d7d0d  i changed App.java
     add c663ea7  i added .idea
     add fa5622e  i added .idea
     add 75b3c80  i removed path .idea
     add 80b1239  add ignire idea
     add d86e53e  i changed the code
     add 8ed5b17  i changed config to load servlets
     add 89ac006  add config to log4j
     add 797c279  add ignired
     add 31aac44  correct ignore
     add 159a4a0  merge to branch master
     add 15cf7f8  i added config to load servlets
     add cd3f08f  Merge branch 'master' into dev-marcelo-v-spring
     new 091db6a  Merge pull request #22 from marcelosv/dev-marcelo-v-spring

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                                         |   6 +-
 .../juneau-examples-rest-springboot.launch         |   4 +-
 .../juneau-examples-rest-springboot/pom.xml        | 182 ++++++----
 .../examples/rest/springboot/AppConfiguration.java |  42 ---
 .../rest/springboot/AppServletConfiguration.java   |  49 ---
 .../rest/springboot/{App.java => AppStart.java}    |  61 ++--
 .../springboot/SpringRestResourceResolver.java     |  40 ---
 .../src/main/resources/log4j.xml                   |  17 +-
 juneau-examples/juneau-examples-rest/pom.xml       |   7 +
 .../juneau-microservice-server-springboot/pom.xml  | 102 ++++++
 .../annotations/EnabledJuneauIntegration.java      |  70 ++--
 .../JuneauApplicationContextInitializer.java       |  40 +--
 .../springboot/config/ServletConfiguration.java    |  74 ++++
 juneau-microservice/pom.xml                        |   1 +
 pom-sonar.xml                                      | 392 +++++++++++++++++++++
 15 files changed, 783 insertions(+), 304 deletions(-)
 delete mode 100644 juneau-examples/juneau-examples-rest-springboot/src/main/java/org/apache/juneau/examples/rest/springboot/AppConfiguration.java
 delete mode 100644 juneau-examples/juneau-examples-rest-springboot/src/main/java/org/apache/juneau/examples/rest/springboot/AppServletConfiguration.java
 rename juneau-examples/juneau-examples-rest-springboot/src/main/java/org/apache/juneau/examples/rest/springboot/{App.java => AppStart.java} (57%)
 delete mode 100644 juneau-examples/juneau-examples-rest-springboot/src/main/java/org/apache/juneau/examples/rest/springboot/SpringRestResourceResolver.java
 copy README.md => juneau-examples/juneau-examples-rest-springboot/src/main/resources/log4j.xml (72%)
 create mode 100644 juneau-microservice/juneau-microservice-server-springboot/pom.xml
 copy juneau-core/juneau-marshall-rdf/src/main/java/org/apache/juneau/jena/annotation/RdfNs.java => juneau-microservice/juneau-microservice-server-springboot/src/main/java/org/apache/juneau/microservice/springboot/annotations/EnabledJuneauIntegration.java (73%)
 copy juneau-core/juneau-core-test/src/test/java/org/apache/juneau/CloseableStringReader.java => juneau-microservice/juneau-microservice-server-springboot/src/main/java/org/apache/juneau/microservice/springboot/config/JuneauApplicationContextInitializer.java (65%)
 create mode 100644 juneau-microservice/juneau-microservice-server-springboot/src/main/java/org/apache/juneau/microservice/springboot/config/ServletConfiguration.java
 create mode 100644 pom-sonar.xml


[juneau] 01/01: Merge pull request #22 from marcelosv/dev-marcelo-v-spring

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

jamesbognar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/juneau.git

commit 091db6acf06a1d5b7e26e1b25758ceb1406ff39c
Merge: db5f915 cd3f08f
Author: James Bognar <ja...@apache.org>
AuthorDate: Sat Dec 1 16:58:41 2018 -0500

    Merge pull request #22 from marcelosv/dev-marcelo-v-spring
    
    Create project to integration Juneau + Spring boot

 .gitignore                                         |   6 +-
 .../juneau-examples-rest-springboot.launch         |   4 +-
 .../juneau-examples-rest-springboot/pom.xml        | 182 ++++++----
 .../rest/springboot/AppServletConfiguration.java   |  49 ---
 .../rest/springboot/{App.java => AppStart.java}    |  61 ++--
 .../src/main/resources/log4j.xml                   |  34 +-
 juneau-examples/juneau-examples-rest/pom.xml       |   7 +
 .../juneau-microservice-server-springboot/pom.xml  | 102 ++++++
 .../annotations/EnabledJuneauIntegration.java      |  38 +-
 .../JuneauApplicationContextInitializer.java       |  39 +-
 .../springboot/config/ServletConfiguration.java    |  74 ++++
 juneau-microservice/pom.xml                        |   1 +
 pom-sonar.xml                                      | 392 +++++++++++++++++++++
 13 files changed, 767 insertions(+), 222 deletions(-)