Skip to content

Commit b1cb5eb

Browse files
committed
BAEL-7743 move code to a new module
1 parent 192c10e commit b1cb5eb

File tree

12 files changed

+36
-3
lines changed

12 files changed

+36
-3
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
=========
2+
3+
### Relevant Articles:
4+
- [Supply Enum Value to an Annotation From a Constant in Java](https://www.baeldung.com/java-enum-annotation-constant)
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<artifactId>core-java-annotations-2</artifactId>
7+
<packaging>jar</packaging>
8+
<name>core-java-annotations-2</name>
9+
10+
<parent>
11+
<groupId>com.baeldung.core-java-modules</groupId>
12+
<artifactId>core-java-modules</artifactId>
13+
<version>0.0.1-SNAPSHOT</version>
14+
</parent>
15+
16+
</project>

core-java-modules/core-java-annotations/src/main/java/com/baeldung/annotationwithenum/DataController.java renamed to core-java-modules/core-java-annotations-2/src/main/java/com/baeldung/annotationwithenum/DataController.java

File renamed without changes.

core-java-modules/core-java-annotations/src/main/java/com/baeldung/annotationwithenum/ExtendedRequestContentType.java renamed to core-java-modules/core-java-annotations-2/src/main/java/com/baeldung/annotationwithenum/ExtendedRequestContentType.java

File renamed without changes.

core-java-modules/core-java-annotations/src/main/java/com/baeldung/annotationwithenum/PostRequest.java renamed to core-java-modules/core-java-annotations-2/src/main/java/com/baeldung/annotationwithenum/PostRequest.java

File renamed without changes.

core-java-modules/core-java-annotations/src/main/java/com/baeldung/annotationwithenum/PutRequest.java renamed to core-java-modules/core-java-annotations-2/src/main/java/com/baeldung/annotationwithenum/PutRequest.java

File renamed without changes.

core-java-modules/core-java-annotations/src/main/java/com/baeldung/annotationwithenum/RequestContentType.java renamed to core-java-modules/core-java-annotations-2/src/main/java/com/baeldung/annotationwithenum/RequestContentType.java

File renamed without changes.

core-java-modules/core-java-annotations/src/main/java/com/baeldung/annotationwithenum/SimulatedRequestContentType.java renamed to core-java-modules/core-java-annotations-2/src/main/java/com/baeldung/annotationwithenum/SimulatedRequestContentType.java

File renamed without changes.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<configuration>
3+
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
4+
<encoder>
5+
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
6+
</pattern>
7+
</encoder>
8+
</appender>
9+
10+
<root level="INFO">
11+
<appender-ref ref="STDOUT" />
12+
</root>
13+
</configuration>

core-java-modules/core-java-annotations/src/test/java/com/baeldung/annitationwithenum/RequestAnnotatedMethodUnitTest.java renamed to core-java-modules/core-java-annotations-2/src/test/java/com/baeldung/annotationwithenum/RequestAnnotatedMethodUnitTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.baeldung.annitationwithenum;
1+
package com.baeldung.annotationwithenum;
22

33
import static org.junit.Assert.assertEquals;
44
import static org.junit.Assert.assertTrue;

0 commit comments

Comments
 (0)