Skip to content

Commit

Permalink
BAEL-89 modifying the module names and changing the dependencies to b…
Browse files Browse the repository at this point in the history
…e in line with what we would get from start.spring.io
  • Loading branch information
tschiman authored and slavisa-baeldung committed Nov 6, 2016
1 parent f821eca commit 8d699c1
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jetty</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand All @@ -31,11 +32,10 @@
<dependency>
<groupId>org.springframework.session</groupId>
<artifactId>spring-session</artifactId>
<version>1.2.1.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,9 @@ public static void main(String[] args) {
public String helloJetty() {
return "hello Jetty";
}

@RequestMapping("/test")
public String lksjdf() {
return "";
}
}
4 changes: 2 additions & 2 deletions spring-session/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<version>1.0.0-SNAPSHOT</version>

<modules>
<module>jetty-ex</module>
<module>tomcat-ex</module>
<module>jetty-session-demo</module>
<module>tomcat-session-demo</module>
</modules>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -18,24 +18,19 @@
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-zuul</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.session</groupId>
<artifactId>spring-session</artifactId>
<version>1.2.1.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>

Expand Down

0 comments on commit 8d699c1

Please sign in to comment.