Repository: camel Updated Branches: refs/heads/master 953d1010a -> 2ee7b6f99
Consistent package name in Spring Boot examples Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/2ee7b6f9 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/2ee7b6f9 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/2ee7b6f9 Branch: refs/heads/master Commit: 2ee7b6f996d86e39844a9725792b5b52a1116427 Parents: 953d101 Author: Antonin Stefanutti <anto...@stefanutti.fr> Authored: Fri Sep 2 12:53:53 2016 +0200 Committer: Antonin Stefanutti <anto...@stefanutti.fr> Committed: Fri Sep 2 12:53:53 2016 +0200 ---------------------------------------------------------------------- examples/camel-example-spring-boot-metrics/pom.xml | 2 +- .../org/apache/camel/example/spring/boot/metrics/Application.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/2ee7b6f9/examples/camel-example-spring-boot-metrics/pom.xml ---------------------------------------------------------------------- diff --git a/examples/camel-example-spring-boot-metrics/pom.xml b/examples/camel-example-spring-boot-metrics/pom.xml index 5786017..f5d3ccb 100644 --- a/examples/camel-example-spring-boot-metrics/pom.xml +++ b/examples/camel-example-spring-boot-metrics/pom.xml @@ -96,7 +96,7 @@ <artifactId>spring-boot-maven-plugin</artifactId> <version>${spring.boot-version}</version> <configuration> - <mainClass>org.apache.camel.example.springboot.metrics.Application</mainClass> + <mainClass>org.apache.camel.example.spring.boot.metrics.Application</mainClass> </configuration> <executions> <execution> http://git-wip-us.apache.org/repos/asf/camel/blob/2ee7b6f9/examples/camel-example-spring-boot-metrics/src/main/java/org/apache/camel/example/spring/boot/metrics/Application.java ---------------------------------------------------------------------- diff --git a/examples/camel-example-spring-boot-metrics/src/main/java/org/apache/camel/example/spring/boot/metrics/Application.java b/examples/camel-example-spring-boot-metrics/src/main/java/org/apache/camel/example/spring/boot/metrics/Application.java index bbeb2fd..b384529 100644 --- a/examples/camel-example-spring-boot-metrics/src/main/java/org/apache/camel/example/spring/boot/metrics/Application.java +++ b/examples/camel-example-spring-boot-metrics/src/main/java/org/apache/camel/example/spring/boot/metrics/Application.java @@ -14,7 +14,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.camel.example.springboot.metrics; +package org.apache.camel.example.spring.boot.metrics; import java.net.InetSocketAddress; import java.util.concurrent.TimeUnit;