You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gi...@apache.org on 2020/10/21 00:44:05 UTC

[camel-spring-boot] branch automatic-periodic-sync updated (085fbe9 -> 2f7b307)

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

github-bot pushed a change to branch automatic-periodic-sync
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git.


    omit 085fbe9  [create-pull-request] automated change
     add 83388ea  [create-pull-request] automated change
     add 95a3150  CAMEL-15695 - Maven archetypes for OSGi and spring-boot move to their project - Added Camel Spring Boot Archetype
     add 1d9b8cc  CAMEL-15695 - Maven archetypes for OSGi and spring-boot move to their project - Added Camel Spring Boot Archetype
     add 9ba1f9c  Point the archetype to last SB version: 2.3.4.RELEASE
     add f9b93e6  Deploy GH action: Do not run archetype tests
     add 24a18b7  Deploy GH action: Add workflow_dispatch
     add e42c057  Added Jenkinsfile build for JDK15
     add eede6e1  Jenkinsfile: Remove deploy
     add 2f7b307  Jenkinsfile Jdk11: Removed deploy

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (085fbe9)
            \
             N -- N -- N   refs/heads/automatic-periodic-sync (2f7b307)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .github/workflows/asf-snapshots-deploy.yml         |   3 +-
 Jenkinsfile.sb                                     |   2 +-
 Jenkinsfile.sb.jdk11                               |   2 +-
 Jenkinsfile.sb.jdk14 => Jenkinsfile.sb.jdk15       |   2 +-
 archetypes/camel-archetype-spring-boot/pom.xml     |  75 ++++++++++++
 .../META-INF/maven/archetype-metadata.xml          |  66 +++++++++++
 .../src/main/resources/META-INF/LICENSE.txt        |   0
 .../src/main/resources/META-INF/NOTICE.txt         |   0
 .../src/main/resources/archetype-resources/pom.xml | 128 +++++++++++++++++++++
 .../main/resources/archetype-resources/readme.adoc |  44 +++++++
 .../src/main/java/MySpringBean.java                |  27 ++++-
 .../src/main/java/MySpringBootApplication.java     |  23 ++--
 .../src/main/java/MySpringBootRouter.java          |  31 +++--
 .../src/main/resources/META-INF/LICENSE.txt        |   0
 .../src/main/resources/META-INF/NOTICE.txt         |   0
 .../src/main/resources/application.properties      |  34 ++++--
 .../projects/build-it/archetype.properties         |  12 +-
 .../src/test/resources/projects/build-it/goal.txt  |   1 +
 .../resources/projects/run-it/archetype.properties |  12 +-
 .../src/test/resources/projects/run-it/goal.txt    |   1 +
 .../src/test/resources/settings.xml                |  34 ++++--
 {tests => archetypes}/pom.xml                      |  20 +++-
 pom.xml                                            |   1 +
 23 files changed, 465 insertions(+), 53 deletions(-)
 copy Jenkinsfile.sb.jdk14 => Jenkinsfile.sb.jdk15 (98%)
 create mode 100644 archetypes/camel-archetype-spring-boot/pom.xml
 create mode 100644 archetypes/camel-archetype-spring-boot/src/main/resources-filtered/META-INF/maven/archetype-metadata.xml
 copy {tooling/camel-spring-boot-docs-maven-plugin => archetypes/camel-archetype-spring-boot}/src/main/resources/META-INF/LICENSE.txt (100%)
 copy {tooling/camel-spring-boot-docs-maven-plugin => archetypes/camel-archetype-spring-boot}/src/main/resources/META-INF/NOTICE.txt (100%)
 create mode 100644 archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/pom.xml
 create mode 100644 archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/readme.adoc
 copy components-starter/camel-zip-deflater-starter/src/main/resources/META-INF/spring.factories => archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/src/main/java/MySpringBean.java (59%)
 copy components-starter/camel-bean-starter/src/main/resources/META-INF/spring.factories => archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/src/main/java/MySpringBootApplication.java (65%)
 copy components-starter/camel-bean-starter/src/main/resources/META-INF/spring.factories => archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/src/main/java/MySpringBootRouter.java (53%)
 copy {tooling/camel-spring-boot-docs-maven-plugin => archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources}/src/main/resources/META-INF/LICENSE.txt (100%)
 copy {tooling/camel-spring-boot-docs-maven-plugin => archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources}/src/main/resources/META-INF/NOTICE.txt (100%)
 copy components-starter/camel-ignite-starter/src/main/resources/META-INF/spring.factories => archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/src/main/resources/application.properties (50%)
 copy components-starter/camel-activemq-starter/src/main/resources/META-INF/spring.factories => archetypes/camel-archetype-spring-boot/src/test/resources/projects/build-it/archetype.properties (66%)
 create mode 100644 archetypes/camel-archetype-spring-boot/src/test/resources/projects/build-it/goal.txt
 copy components-starter/camel-activemq-starter/src/main/resources/META-INF/spring.factories => archetypes/camel-archetype-spring-boot/src/test/resources/projects/run-it/archetype.properties (66%)
 create mode 100644 archetypes/camel-archetype-spring-boot/src/test/resources/projects/run-it/goal.txt
 copy .github/asf-deploy-settings.xml => archetypes/camel-archetype-spring-boot/src/test/resources/settings.xml (55%)
 copy {tests => archetypes}/pom.xml (72%)