Merge pull request #8917 from aurasphere/JAVA-22_spring_boot_rest_refactoring

[JAVA-22] Moved articles not in ebook from spring-boot-rest to spring…
This commit is contained in:
Josh Cummings
2020-03-28 15:24:35 -06:00
committed by GitHub
21 changed files with 1080 additions and 5 deletions
@@ -49,6 +49,27 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</dependency>
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
<version>${xstream.version}</version>
</dependency>
</dependencies>
@@ -107,6 +128,7 @@
<start-class>com.baeldung.swagger2boot.SpringBootSwaggerApplication</start-class>
<!-- <start-class>com.baeldung.springbootmvc.SpringBootMvcFnApplication</start-class> -->
<spring-boot.version>2.2.0.BUILD-SNAPSHOT</spring-boot.version>
<xstream.version>1.4.11.1</xstream.version>
</properties>
</project>