Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Conversion multi module #1

Merged
merged 14 commits into from
Dec 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .spotless-index
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
wXDLF0Jq0sISoWSjqXON/tq6Po1H0PYCi/kf2RxjJ4E=
src\main\java\com\bwgjoseph\springbootmvnstarter\SpringBootMvnStarterApplication.java 2022-10-02T16:25:55.793452800Z
Rtp4OWrYGP257KC59+Z4VhVrfcNr+iZDvDIHrP4dWOg=
2 changes: 1 addition & 1 deletion lombok.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ lombok.addLombokGeneratedAnnotation=true
# helps JSON/XML frameworks such as Jackson
lombok.anyConstructor.addConstructorProperties=true
# helps SpotBugs ignore code generated by Lombok
lombok.extern.findbugs.addSuppressFBWarnings=true
# lombok.extern.findbugs.addSuppressFBWarnings=true
578 changes: 270 additions & 308 deletions pom.xml

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions starter-mvc-core/.spotless-index
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
7Mgi10bT72SNEyDE4Dt6O5GTij8CZsf6213CKvtWDFs=
src\main\java\com\bwgjoseph\springbootmvnstarter\SpringBootMvnStarterApplication.java 2022-12-10T06:04:48.811054400Z
src\test\java\com\bwgjoseph\springbootmvnstarter\SpringBootMvnStarterApplicationTests.java 2022-12-10T06:23:21.962467400Z
File renamed without changes.
95 changes: 95 additions & 0 deletions starter-mvc-core/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.bwgjoseph</groupId>
<artifactId>spring-boot-mvn-starter-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>

<!--
Does not need to specify groupId or version if we choose to inherit from parent pom.xml
Can override if needed

<groupId>com.bwgjoseph</groupId>
<version>0.0.1-SNAPSHOT</version>
-->
<artifactId>spring-boot-mvn-starter-mvc-core</artifactId>
<name>spring-boot-mvn-starter-mvc-core</name>
<description>Spring Boot Maven Starter Project Mvc Core</description>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>
<!-- Inherited from parent pom.xml -->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>io.github.git-commit-id</groupId>
<artifactId>git-commit-id-maven-plugin</artifactId>
</plugin>
</plugins>

</build>

</project>
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
@SpringBootTest
class SpringBootMvnStarterApplicationTests {

@Test
void contextLoads() {
}

@Test
void contextLoads() {}
}