Skip to content

Commit e30058e

Browse files
committed
adding child poms
1 parent d26b233 commit e30058e

File tree

6 files changed

+96
-29
lines changed

6 files changed

+96
-29
lines changed

jersey/pom.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>0.5.0.BUILD-SNAPSHOT</version>
10-
</parent>
9+
<version>1.0.0.RC3</version>
10+
11+
</parent>
12+
<groupId>bootexamples</groupId>
1113
<artifactId>jersey</artifactId>
1214
<dependencies>
1315
<dependency>

pom.xml

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
6+
<parent>
7+
<groupId>org.springframework.boot</groupId>
8+
<artifactId>spring-boot-starter-parent</artifactId>
9+
<version>1.0.0.RC3</version>
10+
</parent>
11+
<packaging>pom</packaging>
12+
<groupId>bootexamples</groupId>
13+
<artifactId>core</artifactId>
14+
<modules>
15+
<module>rest-and-mvc</module>
16+
<module>jersey</module>
17+
<module>vaadin</module>
18+
<module>x-auth-security</module>
19+
</modules>
20+
21+
22+
<build>
23+
<plugins>
24+
<plugin>
25+
26+
<groupId>org.springframework.boot</groupId>
27+
<artifactId>spring-boot-maven-plugin</artifactId>
28+
</plugin>
29+
</plugins>
30+
</build>
31+
32+
<repositories>
33+
<repository>
34+
<id>spring-snapshots</id>
35+
<name>Spring Snapshots</name>
36+
<url>http://repo.springsource.org/snapshot</url>
37+
<snapshots>
38+
<enabled>true</enabled>
39+
</snapshots>
40+
</repository>
41+
<repository>
42+
<id>spring-milestones</id>
43+
<name>Spring Milestones</name>
44+
<url>http://repo.springsource.org/milestone</url>
45+
<snapshots>
46+
<enabled>false</enabled>
47+
</snapshots>
48+
</repository>
49+
</repositories>
50+
<pluginRepositories>
51+
<pluginRepository>
52+
<id>spring-snapshots</id>
53+
<name>Spring Snapshots</name>
54+
<url>http://repo.springsource.org/snapshot</url>
55+
<snapshots>
56+
<enabled>true</enabled>
57+
</snapshots>
58+
</pluginRepository>
59+
<pluginRepository>
60+
<id>spring-milestones</id>
61+
<name>Spring Milestones</name>
62+
<url>http://repo.springsource.org/milestone</url>
63+
<snapshots>
64+
<enabled>false</enabled>
65+
</snapshots>
66+
</pluginRepository>
67+
</pluginRepositories>
68+
69+
</project>

rest-and-mvc/pom.xml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,14 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55

6-
<groupId>org.demo</groupId>
7-
<artifactId>rest-and-mvc</artifactId>
8-
<version>0.0.1-SNAPSHOT</version>
9-
10-
<packaging>jar</packaging>
116
<parent>
127
<groupId>org.springframework.boot</groupId>
138
<artifactId>spring-boot-starter-parent</artifactId>
14-
<version>1.0.0.RC1</version>
15-
</parent>
9+
<version>1.0.0.RC3</version>
10+
11+
</parent>
12+
<groupId>bootexamples</groupId>
13+
<artifactId>rest-and-mvc</artifactId>
1614

1715
<dependencies>
1816
<dependency>

vaadin/pom.xml

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,18 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55

6-
<groupId>org.demo</groupId>
7-
<artifactId>demo</artifactId>
8-
<version>0.0.1-SNAPSHOT</version>
9-
10-
<name>demo</name>
11-
<description>Demo project</description>
12-
13-
146
<parent>
157
<groupId>org.springframework.boot</groupId>
168
<artifactId>spring-boot-starter-parent</artifactId>
17-
<version>1.0.0.BUILD-SNAPSHOT</version>
18-
</parent>
19-
9+
<version>1.0.0.RC3</version>
2010

11+
</parent>
12+
<groupId>bootexamples</groupId>
13+
14+
15+
16+
<artifactId>vaadin</artifactId>
17+
2118
<dependencies>
2219
<dependency>
2320
<groupId>org.vaadin.spring</groupId>

velocity/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
5-
6-
<groupId>org.demo</groupId>
7-
<artifactId>boot-velocity</artifactId>
85

9-
<parent>
6+
<parent>
107
<groupId>org.springframework.boot</groupId>
118
<artifactId>spring-boot-starter-parent</artifactId>
12-
<version>0.5.0.M6</version>
13-
</parent>
9+
<version>1.0.0.RC3</version>
10+
11+
</parent>
12+
<groupId>bootexamples</groupId>
13+
<artifactId>velocity</artifactId>
1414

1515
<dependencies>
1616

x-auth-security/pom.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,16 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
5-
<groupId>org.demo</groupId>
5+
66
<artifactId>x-auth-security</artifactId>
7-
<version>0.0.1-SNAPSHOT</version>
87
<packaging>jar</packaging>
98
<parent>
109
<groupId>org.springframework.boot</groupId>
1110
<artifactId>spring-boot-starter-parent</artifactId>
1211
<version>1.0.0.RC3</version>
13-
</parent>
12+
13+
</parent>
14+
<groupId>bootexamples</groupId>
1415
<properties>
1516
<spring-security.version>3.2.1.RELEASE</spring-security.version>
1617
<start-class>example.Application</start-class>

0 commit comments

Comments
 (0)