|
|
@@ -5,7 +5,7 @@
|
|
5
|
5
|
|
|
6
|
6
|
<groupId>org.springframework</groupId>
|
|
7
|
7
|
<artifactId>gs-rest-service-complete</artifactId>
|
|
8
|
|
- <version>0.0.1-SNAPSHOT</version>
|
|
|
8
|
+ <version>1.0-SNAPSHOT</version>
|
|
9
|
9
|
|
|
10
|
10
|
<parent>
|
|
11
|
11
|
<groupId>org.springframework.bootstrap</groupId>
|
|
|
@@ -13,6 +13,10 @@
|
|
13
|
13
|
<version>0.5.0.BUILD-SNAPSHOT</version>
|
|
14
|
14
|
</parent>
|
|
15
|
15
|
|
|
|
16
|
+ <properties>
|
|
|
17
|
+ <start-class>hello.HelloWorldConfiguration</start-class>
|
|
|
18
|
+ </properties>
|
|
|
19
|
+
|
|
16
|
20
|
<dependencies>
|
|
17
|
21
|
<dependency>
|
|
18
|
22
|
<groupId>org.springframework.bootstrap</groupId>
|
|
|
@@ -24,10 +28,6 @@
|
|
24
|
28
|
</dependency>
|
|
25
|
29
|
</dependencies>
|
|
26
|
30
|
|
|
27
|
|
- <properties>
|
|
28
|
|
- <start-class>hello.HelloWorldConfiguration</start-class>
|
|
29
|
|
- </properties>
|
|
30
|
|
-
|
|
31
|
31
|
<build>
|
|
32
|
32
|
<plugins>
|
|
33
|
33
|
<plugin>
|
|
|
@@ -40,30 +40,15 @@
|
|
40
|
40
|
<repositories>
|
|
41
|
41
|
<repository>
|
|
42
|
42
|
<id>spring-snapshots</id>
|
|
43
|
|
- <name>Spring Snapshots</name>
|
|
44
|
43
|
<url>http://repo.springsource.org/snapshot</url>
|
|
45
|
|
- <snapshots>
|
|
46
|
|
- <enabled>true</enabled>
|
|
47
|
|
- </snapshots>
|
|
48
|
|
- </repository>
|
|
49
|
|
- <repository>
|
|
50
|
|
- <id>spring-milestones</id>
|
|
51
|
|
- <name>Spring Milestones</name>
|
|
52
|
|
- <url>http://repo.springsource.org/milestone</url>
|
|
53
|
|
- <snapshots>
|
|
54
|
|
- <enabled>false</enabled>
|
|
55
|
|
- </snapshots>
|
|
|
44
|
+ <snapshots><enabled>true</enabled></snapshots>
|
|
56
|
45
|
</repository>
|
|
57
|
46
|
</repositories>
|
|
58
|
47
|
<pluginRepositories>
|
|
59
|
48
|
<pluginRepository>
|
|
60
|
49
|
<id>spring-snapshots</id>
|
|
61
|
|
- <name>Spring Snapshots</name>
|
|
62
|
50
|
<url>http://repo.springsource.org/snapshot</url>
|
|
63
|
|
- <snapshots>
|
|
64
|
|
- <enabled>true</enabled>
|
|
65
|
|
- </snapshots>
|
|
|
51
|
+ <snapshots><enabled>true</enabled></snapshots>
|
|
66
|
52
|
</pluginRepository>
|
|
67
|
53
|
</pluginRepositories>
|
|
68
|
|
-
|
|
69
|
|
-</project>
|
|
|
54
|
+</project>
|