|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
1 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 4 | <modelVersion>4.0.0</modelVersion> |
4 | 5 |
|
5 | 6 | <groupId>io.projectriff.samples</groupId> |
|
8 | 9 | <packaging>jar</packaging> |
9 | 10 |
|
10 | 11 | <name>uppercase</name> |
11 | | - <url>http://maven.apache.org</url> |
| 12 | + <description>Sample project for riff using Spring Boot</description> |
| 13 | + <url>https://github.com/projectriff/java-function-invoker</url> |
12 | 14 |
|
13 | 15 | <parent> |
14 | 16 | <groupId>org.springframework.boot</groupId> |
15 | 17 | <artifactId>spring-boot-starter-parent</artifactId> |
16 | 18 | <version>2.0.1.RELEASE</version> |
17 | | - <relativePath/> |
| 19 | + <relativePath/> <!-- lookup parent from repository --> |
18 | 20 | </parent> |
19 | 21 |
|
20 | 22 | <properties> |
21 | 23 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
22 | | - <maven.compiler.source>1.8</maven.compiler.source> |
23 | | - <maven.compiler.target>1.8</maven.compiler.target> |
24 | | - <spring-cloud-function.version>1.0.0.BUILD-SNAPSHOT</spring-cloud-function.version> |
| 24 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 25 | + <java.version>1.8</java.version> |
25 | 26 | <reactor.version>3.1.2.RELEASE</reactor.version> |
26 | | - <maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version> |
| 27 | + <spring-cloud-function.version>1.0.0.M6</spring-cloud-function.version> |
27 | 28 | </properties> |
28 | 29 |
|
29 | 30 | <dependencies> |
30 | | - <dependency> |
| 31 | + <dependency> |
31 | 32 | <groupId>org.springframework.cloud</groupId> |
32 | 33 | <artifactId>spring-cloud-starter-function-web</artifactId> |
33 | 34 | </dependency> |
34 | | - <dependency> |
35 | | - <groupId>org.springframework.boot</groupId> |
36 | | - <artifactId>spring-boot-configuration-processor</artifactId> |
37 | | - <optional>true</optional> |
38 | | - </dependency> |
| 35 | + |
39 | 36 | <dependency> |
40 | 37 | <groupId>org.springframework.boot</groupId> |
41 | 38 | <artifactId>spring-boot-starter-test</artifactId> |
|
55 | 52 | </dependencies> |
56 | 53 | </dependencyManagement> |
57 | 54 |
|
58 | | - <build> |
59 | | - <plugins> |
60 | | - <plugin> |
61 | | - <groupId>org.apache.maven.plugins</groupId> |
62 | | - <artifactId>maven-deploy-plugin</artifactId> |
63 | | - <configuration> |
64 | | - <skip>true</skip> |
65 | | - </configuration> |
66 | | - </plugin> |
67 | | - <plugin> |
68 | | - <groupId>org.springframework.boot</groupId> |
69 | | - <artifactId>spring-boot-maven-plugin</artifactId> |
70 | | - </plugin> |
71 | | - </plugins> |
72 | | - </build> |
73 | | - |
74 | 55 | <repositories> |
75 | | - <repository> |
76 | | - <id>spring-snapshots</id> |
77 | | - <name>Spring Snapshots</name> |
78 | | - <url>https://repo.spring.io/libs-snapshot-local</url> |
79 | | - <snapshots> |
80 | | - <enabled>true</enabled> |
81 | | - </snapshots> |
82 | | - <releases> |
83 | | - <enabled>false</enabled> |
84 | | - </releases> |
85 | | - </repository> |
86 | 56 | <repository> |
87 | 57 | <id>spring-milestones</id> |
88 | 58 | <name>Spring Milestones</name> |
89 | | - <url>https://repo.spring.io/libs-milestone-local</url> |
90 | | - <snapshots> |
91 | | - <enabled>false</enabled> |
92 | | - </snapshots> |
93 | | - </repository> |
94 | | - <repository> |
95 | | - <id>spring-releases</id> |
96 | | - <name>Spring Releases</name> |
97 | | - <url>https://repo.spring.io/release</url> |
| 59 | + <url>https://repo.spring.io/libs-milestone</url> |
98 | 60 | <snapshots> |
99 | 61 | <enabled>false</enabled> |
100 | 62 | </snapshots> |
101 | 63 | </repository> |
102 | 64 | </repositories> |
103 | | - <pluginRepositories> |
104 | | - <pluginRepository> |
105 | | - <id>spring-snapshots</id> |
106 | | - <name>Spring Snapshots</name> |
107 | | - <url>https://repo.spring.io/libs-snapshot-local</url> |
108 | | - <snapshots> |
109 | | - <enabled>true</enabled> |
110 | | - </snapshots> |
111 | | - <releases> |
112 | | - <enabled>false</enabled> |
113 | | - </releases> |
114 | | - </pluginRepository> |
115 | | - <pluginRepository> |
116 | | - <id>spring-milestones</id> |
117 | | - <name>Spring Milestones</name> |
118 | | - <url>https://repo.spring.io/libs-milestone-local</url> |
119 | | - <snapshots> |
120 | | - <enabled>false</enabled> |
121 | | - </snapshots> |
122 | | - </pluginRepository> |
123 | | - <pluginRepository> |
124 | | - <id>spring-releases</id> |
125 | | - <name>Spring Releases</name> |
126 | | - <url>https://repo.spring.io/libs-release-local</url> |
127 | | - <snapshots> |
128 | | - <enabled>false</enabled> |
129 | | - </snapshots> |
130 | | - </pluginRepository> |
131 | | - </pluginRepositories> |
| 65 | + |
| 66 | + <build> |
| 67 | + <plugins> |
| 68 | + <plugin> |
| 69 | + <groupId>org.springframework.boot</groupId> |
| 70 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 71 | + </plugin> |
| 72 | + </plugins> |
| 73 | + </build> |
| 74 | + |
132 | 75 | </project> |
0 commit comments