-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move Vaadin UI microservice example to own repo
- Loading branch information
Risto Yrjänä
committed
Mar 11, 2015
1 parent
59d2f05
commit cd3237c
Showing
26 changed files
with
109 additions
and
422 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
*.iml | ||
*.idea | ||
*/target | ||
target |
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
eureka-server/src/main/java/org/vaadin/risto/microservices/student/EurekaApplication.java
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,118 @@ | ||
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>org.vaadin.risto.microservices</groupId> | ||
<artifactId>example-parent</artifactId> | ||
<version>0.0.1-SNAPSHOT</version> | ||
<packaging>pom</packaging> | ||
|
||
<name>Microservices example</name> | ||
<description>Microservices example with Spring and Vaadni</description> | ||
<groupId>org.vaadin.risto.microservices</groupId> | ||
<artifactId>ui</artifactId> | ||
<version>0.0.1-SNAPSHOT</version> | ||
<packaging>jar</packaging> | ||
|
||
<name>UI</name> | ||
<description>Example microservice UI</description> | ||
|
||
<parent> | ||
<groupId>org.springframework.cloud</groupId> | ||
<artifactId>spring-cloud-starter-parent</artifactId> | ||
<version>1.0.0.RELEASE</version> | ||
<groupId>org.vaadin.risto.microservices</groupId> | ||
<artifactId>example-parent</artifactId> | ||
<version>0.0.1-SNAPSHOT</version> | ||
</parent> | ||
|
||
<modules> | ||
<module>eureka-server</module> | ||
<module>students-rest-microservice</module> | ||
<module>ui</module> | ||
</modules> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<java.version>1.8</java.version> | ||
</properties> | ||
|
||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.springframework.cloud</groupId> | ||
<artifactId>spring-cloud-starter-parent</artifactId> | ||
<version>1.0.0.RELEASE</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-actuator</artifactId> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<properties> | ||
<vaadin.version>7.4.0</vaadin.version> | ||
<vaadin4spring.version>0.0.4.RELEASE</vaadin4spring.version> | ||
<start-class>org.vaadin.risto.microservices.Application</start-class> | ||
</properties> | ||
|
||
<repositories> | ||
<repository> | ||
<id>vaadin-addons</id> | ||
<url>http://maven.vaadin.com/vaadin-addons</url> | ||
</repository> | ||
</repositories> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.vaadin.spring</groupId> | ||
<artifactId>spring-boot-vaadin</artifactId> | ||
<version>${vaadin4spring.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.vaadin</groupId> | ||
<artifactId>vaadin-themes</artifactId> | ||
<version>${vaadin.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.vaadin</groupId> | ||
<artifactId>vaadin-server</artifactId> | ||
<version>${vaadin.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.vaadin</groupId> | ||
<artifactId>vaadin-client-compiled</artifactId> | ||
<version>${vaadin.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.vaadin</groupId> | ||
<artifactId>viritin</artifactId> | ||
<version>1.27</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.cloud</groupId> | ||
<artifactId>spring-cloud-starter-hystrix</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.cloud</groupId> | ||
<artifactId>spring-cloud-starter-eureka</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.hateoas</groupId> | ||
<artifactId>spring-hateoas</artifactId> | ||
<version>0.16.0.RELEASE</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.projectlombok</groupId> | ||
<artifactId>lombok</artifactId> | ||
<version>1.16.2</version> | ||
<optional>true</optional> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>de.javakaffee.msm</groupId> | ||
<artifactId>memcached-session-manager</artifactId> | ||
<version>1.8.3</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>de.javakaffee.msm</groupId> | ||
<artifactId>memcached-session-manager-tc8</artifactId> | ||
<version>1.8.3</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-test</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.11</version> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-maven-plugin</artifactId> | ||
<groupId>com.vaadin</groupId> | ||
<artifactId>vaadin-maven-plugin</artifactId> | ||
<version>${vaadin.version}</version> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</plugins> | ||
</build> | ||
|
||
</project> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
18 changes: 0 additions & 18 deletions
18
students-rest-microservice/src/main/java/org/vaadin/risto/microservices/student/Student.java
This file was deleted.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
...microservice/src/main/java/org/vaadin/risto/microservices/student/StudentApplication.java
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
...-microservice/src/main/java/org/vaadin/risto/microservices/student/StudentRepository.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.