Skip to content

Commit

Permalink
feat: start migration to incubator with quickstart projects
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitriidenisenko committed Nov 5, 2024
1 parent 33a44eb commit bbdab79
Show file tree
Hide file tree
Showing 13 changed files with 21 additions and 21 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>dev.knowhowto.quickstart</groupId>
<groupId>com.iqkv.incubator.quickstart</groupId>
<artifactId>quickstart-amqp-consuming-hello</artifactId>
<version>24.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
Expand All @@ -19,7 +19,7 @@
</licenses>
<organization>
<name>KnowHowSpringBoot Bootcamp</name>
<url>https://knowhowto.dev</url>
<url>https://iqkv.com</url>
</organization>
<developers>
<developer>
Expand All @@ -45,7 +45,7 @@
<sonar.coverage.exclusions>**/*Config*.java,**/*Properties.java,**/*Test.java,**/Test*.java</sonar.coverage.exclusions>
<checkstyle.skip>false</checkstyle.skip>
<maven.gitcommitid.skip>false</maven.gitcommitid.skip>
<start-class>dev.knowhowto.amqpconsuminghello.AmqpConsumingHelloApplication</start-class>
<start-class>com.iqkv.incubator.quickstart.amqpconsuminghello.AmqpConsumingHelloApplication</start-class>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion src/main/docker/prometheus/prometheus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ global :
# Attach these labels to any time series or alerts when communicating with
# external systems (federation, remote storage, Alertmanager).
external_labels :
monitor : 'knowhowto'
monitor : 'appindevelopment'

# A scrape configuration containing exactly one endpoint to scrape:
# Here it's Prometheus itself.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.knowhowto.amqpconsuminghello;
package com.iqkv.incubator.quickstart.amqpconsuminghello;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.knowhowto.amqpconsuminghello.config;
package com.iqkv.incubator.quickstart.amqpconsuminghello.config;

import lombok.RequiredArgsConstructor;
import org.springframework.amqp.core.AmqpAdmin;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package dev.knowhowto.amqpconsuminghello.config;
package com.iqkv.incubator.quickstart.amqpconsuminghello.config;

import dev.knowhowto.amqpconsuminghello.consumer.GreetingMessageConsumer;
import com.iqkv.incubator.quickstart.amqpconsuminghello.consumer.GreetingMessageConsumer;
import lombok.RequiredArgsConstructor;
import org.springframework.amqp.core.AcknowledgeMode;
import org.springframework.amqp.rabbit.connection.ConnectionFactory;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.knowhowto.amqpconsuminghello.config;
package com.iqkv.incubator.quickstart.amqpconsuminghello.config;

import jakarta.validation.constraints.NotNull;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.knowhowto.amqpconsuminghello.config;
package com.iqkv.incubator.quickstart.amqpconsuminghello.config;

import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Configuration;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.knowhowto.amqpconsuminghello.config;
package com.iqkv.incubator.quickstart.amqpconsuminghello.config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package dev.knowhowto.amqpconsuminghello.consumer;
package com.iqkv.incubator.quickstart.amqpconsuminghello.consumer;

import java.util.concurrent.CountDownLatch;

import dev.knowhowto.amqpconsuminghello.model.Greeting;
import com.iqkv.incubator.quickstart.amqpconsuminghello.model.Greeting;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.knowhowto.amqpconsuminghello.model;
package com.iqkv.incubator.quickstart.amqpconsuminghello.model;

import java.io.Serial;
import java.io.Serializable;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.knowhowto.amqpconsuminghello;
package com.iqkv.incubator.quickstart.amqpconsuminghello;

import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package dev.knowhowto.amqpconsuminghello.consumer;
package com.iqkv.incubator.quickstart.amqpconsuminghello.consumer;


import static org.assertj.core.api.Assertions.assertThat;
import static org.hamcrest.CoreMatchers.containsString;

import java.util.concurrent.TimeUnit;

import dev.knowhowto.amqpconsuminghello.model.Greeting;
import dev.knowhowto.amqpconsuminghello.producer.GreetingMessageProducer;
import com.iqkv.incubator.quickstart.amqpconsuminghello.model.Greeting;
import com.iqkv.incubator.quickstart.amqpconsuminghello.producer.GreetingMessageProducer;
import org.hamcrest.MatcherAssert;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package dev.knowhowto.amqpconsuminghello.producer;
package com.iqkv.incubator.quickstart.amqpconsuminghello.producer;

import dev.knowhowto.amqpconsuminghello.config.AmqpQueuesProperties;
import dev.knowhowto.amqpconsuminghello.model.Greeting;
import com.iqkv.incubator.quickstart.amqpconsuminghello.config.AmqpQueuesProperties;
import com.iqkv.incubator.quickstart.amqpconsuminghello.model.Greeting;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.amqp.rabbit.core.RabbitTemplate;
Expand Down

0 comments on commit bbdab79

Please sign in to comment.