|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 | 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> |
| 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 | 5 |
|
6 |
| - <groupId>com.naturalprogrammer.spring</groupId> |
7 |
| - <artifactId>spring-lemon</artifactId> |
8 |
| - <version>0.8.4</version> |
9 |
| - <packaging>jar</packaging> |
| 6 | + <groupId>com.naturalprogrammer.spring</groupId> |
| 7 | + <artifactId>spring-lemon</artifactId> |
| 8 | + <version>0.8.5</version> |
| 9 | + <packaging>jar</packaging> |
10 | 10 |
|
11 |
| - <name>spring-lemon</name> |
12 |
| - <description>Helper library for Spring Boot Web Applications</description> |
| 11 | + <name>spring-lemon</name> |
| 12 | + <description>Helper library for Spring Boot Web Applications</description> |
13 | 13 |
|
14 |
| - <parent> |
15 |
| - <groupId>org.springframework.boot</groupId> |
16 |
| - <artifactId>spring-boot-starter-parent</artifactId> |
17 |
| - <version>1.3.0.RELEASE</version> |
18 |
| - <relativePath/> <!-- lookup parent from repository --> |
19 |
| - </parent> |
| 14 | + <parent> |
| 15 | + <groupId>org.springframework.boot</groupId> |
| 16 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 17 | + <version>1.3.0.RELEASE</version> |
| 18 | + <relativePath/> <!-- lookup parent from repository --> |
| 19 | + </parent> |
20 | 20 |
|
21 |
| - <properties> |
22 |
| - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
23 |
| - <java.version>1.8</java.version> |
24 |
| - </properties> |
| 21 | + <properties> |
| 22 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 23 | + <java.version>1.8</java.version> |
| 24 | + </properties> |
25 | 25 |
|
26 |
| - <dependencies> |
27 |
| - |
| 26 | + <dependencies> |
| 27 | + |
28 | 28 | <dependency>
|
29 | 29 | <groupId>org.springframework.boot</groupId>
|
30 | 30 | <artifactId>spring-boot-starter-web</artifactId>
|
31 |
| - <scope>provided</scope> |
32 | 31 | </dependency>
|
33 | 32 |
|
34 |
| - <dependency> |
35 |
| - <groupId>org.springframework.boot</groupId> |
36 |
| - <artifactId>spring-boot-starter-data-jpa</artifactId> |
37 |
| - <scope>provided</scope> |
38 |
| - </dependency> |
| 33 | + <dependency> |
| 34 | + <groupId>org.springframework.boot</groupId> |
| 35 | + <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 36 | + </dependency> |
39 | 37 |
|
40 |
| - <dependency> |
41 |
| - <groupId>org.springframework.boot</groupId> |
42 |
| - <artifactId>spring-boot-starter-mail</artifactId> |
43 |
| - <scope>provided</scope> |
44 |
| - </dependency> |
| 38 | + <dependency> |
| 39 | + <groupId>org.springframework.boot</groupId> |
| 40 | + <artifactId>spring-boot-starter-mail</artifactId> |
| 41 | + </dependency> |
45 | 42 |
|
46 |
| - <dependency> |
47 |
| - <groupId>org.springframework.boot</groupId> |
48 |
| - <artifactId>spring-boot-starter-security</artifactId> |
49 |
| - <scope>provided</scope> |
50 |
| - </dependency> |
51 |
| - |
| 43 | + <dependency> |
| 44 | + <groupId>org.springframework.boot</groupId> |
| 45 | + <artifactId>spring-boot-starter-security</artifactId> |
| 46 | + </dependency> |
| 47 | + |
52 | 48 | <!-- Using AbstractAuditable needed joda time -->
|
53 |
| - <dependency> |
| 49 | + <dependency> |
54 | 50 | <groupId>joda-time</groupId>
|
55 | 51 | <artifactId>joda-time</artifactId>
|
56 |
| - <scope>provided</scope> |
57 |
| - </dependency> |
58 |
| - |
59 |
| - |
60 |
| - <!-- Utilities --> |
61 |
| - |
62 |
| - <dependency> |
63 |
| - <groupId>org.apache.commons</groupId> |
64 |
| - <artifactId>commons-lang3</artifactId> |
65 |
| - <version>3.4</version> |
66 |
| - <scope>provided</scope> |
67 |
| - </dependency> |
68 |
| - |
69 |
| - |
70 |
| - <!-- For generating Auto Completion of lemon.* in application.properties |
71 |
| - See: http://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#configuration-metadata-annotation-processor |
72 |
| - --> |
73 |
| - <dependency> |
74 |
| - <groupId>org.springframework.boot</groupId> |
75 |
| - <artifactId>spring-boot-configuration-processor</artifactId> |
76 |
| - <optional>true</optional> |
77 |
| - </dependency> |
78 |
| - |
79 |
| - </dependencies> |
80 |
| - |
81 |
| - <repositories> |
82 |
| - <repository> |
83 |
| - <id>spring-snapshots</id> |
84 |
| - <name>Spring Snapshots</name> |
85 |
| - <url>https://repo.spring.io/snapshot</url> |
86 |
| - <snapshots> |
87 |
| - <enabled>true</enabled> |
88 |
| - </snapshots> |
89 |
| - </repository> |
90 |
| - <repository> |
91 |
| - <id>spring-milestones</id> |
92 |
| - <name>Spring Milestones</name> |
93 |
| - <url>https://repo.spring.io/milestone</url> |
94 |
| - <snapshots> |
95 |
| - <enabled>false</enabled> |
96 |
| - </snapshots> |
97 |
| - </repository> |
98 |
| - </repositories> |
99 |
| - |
| 52 | + </dependency> |
| 53 | + |
| 54 | + <!-- Utilities --> |
| 55 | + |
| 56 | + <dependency> |
| 57 | + <groupId>org.apache.commons</groupId> |
| 58 | + <artifactId>commons-lang3</artifactId> |
| 59 | + <version>RELEASE</version> |
| 60 | + </dependency> |
| 61 | + |
| 62 | + <!-- For generating Auto Completion of lemon.* in application.properties |
| 63 | + See: http://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#configuration-metadata-annotation-processor |
| 64 | + --> |
| 65 | + <dependency> |
| 66 | + <groupId>org.springframework.boot</groupId> |
| 67 | + <artifactId>spring-boot-configuration-processor</artifactId> |
| 68 | + <optional>true</optional> |
| 69 | + </dependency> |
| 70 | + |
| 71 | + </dependencies> |
| 72 | + |
| 73 | + <repositories> |
| 74 | + <repository> |
| 75 | + <id>spring-snapshots</id> |
| 76 | + <name>Spring Snapshots</name> |
| 77 | + <url>https://repo.spring.io/snapshot</url> |
| 78 | + <snapshots> |
| 79 | + <enabled>true</enabled> |
| 80 | + </snapshots> |
| 81 | + </repository> |
| 82 | + <repository> |
| 83 | + <id>spring-milestones</id> |
| 84 | + <name>Spring Milestones</name> |
| 85 | + <url>https://repo.spring.io/milestone</url> |
| 86 | + <snapshots> |
| 87 | + <enabled>false</enabled> |
| 88 | + </snapshots> |
| 89 | + </repository> |
| 90 | + </repositories> |
| 91 | + |
100 | 92 |
|
101 |
| - <build> |
102 |
| - <plugins> |
103 |
| - |
104 |
| - <plugin> |
105 |
| - <groupId>org.apache.maven.plugins</groupId> |
106 |
| - <artifactId>maven-compiler-plugin</artifactId> |
107 |
| - <configuration> |
108 |
| - <compilerArgs> |
109 |
| - <arg>-parameters</arg> |
110 |
| - </compilerArgs> |
111 |
| - </configuration> |
112 |
| - </plugin> |
113 |
| - |
114 |
| - <!-- <plugin> |
115 |
| - <groupId>org.springframework.boot</groupId> |
116 |
| - <artifactId>spring-boot-maven-plugin</artifactId> |
117 |
| - </plugin> --> |
118 |
| - |
119 |
| - </plugins> |
120 |
| - </build> |
| 93 | + <build> |
| 94 | + <plugins> |
| 95 | + |
| 96 | + <plugin> |
| 97 | + <groupId>org.apache.maven.plugins</groupId> |
| 98 | + <artifactId>maven-compiler-plugin</artifactId> |
| 99 | + <configuration> |
| 100 | + <compilerArgs> |
| 101 | + <arg>-parameters</arg> |
| 102 | + </compilerArgs> |
| 103 | + </configuration> |
| 104 | + </plugin> |
| 105 | + |
| 106 | + <!-- <plugin> |
| 107 | + <groupId>org.springframework.boot</groupId> |
| 108 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 109 | + </plugin> --> |
| 110 | + |
| 111 | + </plugins> |
| 112 | + </build> |
121 | 113 |
|
122 | 114 | </project>
|
0 commit comments