Skip to content

Commit 1e2275a

Browse files
committed
Switch to de.odrotbohm namespace.
1 parent 80c60b3 commit 1e2275a

File tree

72 files changed

+265
-212
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+265
-212
lines changed

server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55

6-
<groupId>org.springsource.restbucks</groupId>
6+
<groupId>de.odrotbohm.restbucks</groupId>
77
<artifactId>restbucks</artifactId>
88
<version>1.0.0-SNAPSHOT</version>
99

server/src/main/java/org/springsource/restbucks/JacksonCustomizations.java renamed to server/src/main/java/de/odrotbohm/restbucks/JacksonCustomizations.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springsource.restbucks;
16+
package de.odrotbohm.restbucks;
1717

1818
import java.io.IOException;
1919
import java.util.regex.Pattern;

server/src/main/java/org/springsource/restbucks/Restbucks.java renamed to server/src/main/java/de/odrotbohm/restbucks/Restbucks.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springsource.restbucks;
16+
package de.odrotbohm.restbucks;
1717

1818
import org.springframework.boot.SpringApplication;
1919
import org.springframework.boot.autoconfigure.SpringBootApplication;

server/src/main/java/org/springsource/restbucks/core/Currencies.java renamed to server/src/main/java/de/odrotbohm/restbucks/core/Currencies.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springsource.restbucks.core;
16+
package de.odrotbohm.restbucks.core;
1717

1818
import javax.money.CurrencyUnit;
1919
import javax.money.Monetary;

server/src/main/java/org/springsource/restbucks/core/MonetaryAmountAttributeConverter.java renamed to server/src/main/java/de/odrotbohm/restbucks/core/MonetaryAmountAttributeConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springsource.restbucks.core;
16+
package de.odrotbohm.restbucks.core;
1717

1818
import jakarta.persistence.AttributeConverter;
1919
import jakarta.persistence.Converter;

server/src/main/java/org/springsource/restbucks/core/YearAttributeConverter.java renamed to server/src/main/java/de/odrotbohm/restbucks/core/YearAttributeConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springsource.restbucks.core;
16+
package de.odrotbohm.restbucks.core;
1717

1818
import jakarta.persistence.AttributeConverter;
1919
import jakarta.persistence.Converter;

server/src/main/java/org/springsource/restbucks/dashboard/Dashboard.java renamed to server/src/main/java/de/odrotbohm/restbucks/dashboard/Dashboard.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,12 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springsource.restbucks.dashboard;
16+
package de.odrotbohm.restbucks.dashboard;
1717

1818
import static org.springframework.hateoas.server.mvc.WebMvcLinkBuilder.*;
1919

20+
import de.odrotbohm.restbucks.core.Currencies;
21+
import de.odrotbohm.restbucks.order.Order.OrderPaid;
2022
import lombok.RequiredArgsConstructor;
2123

2224
import java.util.Map;
@@ -29,8 +31,6 @@
2931
import org.springframework.modulith.events.ApplicationModuleListener;
3032
import org.springframework.web.bind.annotation.GetMapping;
3133
import org.springframework.web.bind.annotation.RestController;
32-
import org.springsource.restbucks.core.Currencies;
33-
import org.springsource.restbucks.order.Order.OrderPaid;
3434

3535
/**
3636
* A Spring component to listen to {@link org.springsource.restbucks.order.Order.OrderPaid} events accumulating the

server/src/main/java/org/springsource/restbucks/drinks/Drink.java renamed to server/src/main/java/de/odrotbohm/restbucks/drinks/Drink.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springsource.restbucks.drinks;
16+
package de.odrotbohm.restbucks.drinks;
1717

18+
import de.odrotbohm.restbucks.drinks.Drink.DrinkIdentifier;
1819
import lombok.Getter;
1920

2021
import java.util.UUID;
@@ -23,7 +24,6 @@
2324

2425
import org.jmolecules.ddd.types.AggregateRoot;
2526
import org.jmolecules.ddd.types.Identifier;
26-
import org.springsource.restbucks.drinks.Drink.DrinkIdentifier;
2727

2828
/**
2929
* @author Oliver Drotbohm

server/src/main/java/org/springsource/restbucks/drinks/Drinks.java renamed to server/src/main/java/de/odrotbohm/restbucks/drinks/Drinks.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,14 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springsource.restbucks.drinks;
16+
package de.odrotbohm.restbucks.drinks;
17+
18+
import de.odrotbohm.restbucks.drinks.Drink.DrinkIdentifier;
1719

1820
import org.springframework.data.domain.Sort;
1921
import org.springframework.data.repository.CrudRepository;
2022
import org.springframework.data.util.Streamable;
2123
import org.springframework.lang.Nullable;
22-
import org.springsource.restbucks.drinks.Drink.DrinkIdentifier;
2324

2425
/**
2526
* @author Oliver Drotbohm

server/src/main/java/org/springsource/restbucks/drinks/DrinksConfiguration.java renamed to server/src/main/java/de/odrotbohm/restbucks/drinks/DrinksConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springsource.restbucks.drinks;
16+
package de.odrotbohm.restbucks.drinks;
1717

1818
import javax.money.MonetaryAmount;
1919

0 commit comments

Comments
 (0)