|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
3 | | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 |
|
7 | 7 | <groupId>com.recombee</groupId> |
8 | 8 | <artifactId>api-client-parent</artifactId> |
9 | | - <version>5.1.0-SNAPSHOT</version> |
| 9 | + <version>${revision}</version> |
10 | 10 | <packaging>pom</packaging> |
11 | 11 | <name>Recombee API Client Parent</name> |
12 | 12 | <description>A client library for easy use of the Recombee recommendation API</description> |
13 | 13 | <url>http://recombee.com</url> |
14 | | - |
| 14 | + |
15 | 15 | <properties> |
| 16 | + <revision>5.1.0-SNAPSHOT</revision> |
16 | 17 | <!-- spring versions --> |
17 | 18 | <spring.boot.2.version>2.7.18</spring.boot.2.version> |
18 | 19 | <spring.boot.3.version>3.4.1</spring.boot.3.version> |
|
90 | 91 |
|
91 | 92 | <build> |
92 | 93 | <plugins> |
| 94 | + <plugin> |
| 95 | + <groupId>org.codehaus.mojo</groupId> |
| 96 | + <artifactId>flatten-maven-plugin</artifactId> |
| 97 | + <version>1.1.0</version> |
| 98 | + <configuration> |
| 99 | + <updatePomFile>true</updatePomFile> |
| 100 | + <flattenMode>resolveCiFriendliesOnly</flattenMode> |
| 101 | + </configuration> |
| 102 | + <executions> |
| 103 | + <execution> |
| 104 | + <id>flatten</id> |
| 105 | + <phase>process-resources</phase> |
| 106 | + <goals> |
| 107 | + <goal>flatten</goal> |
| 108 | + </goals> |
| 109 | + </execution> |
| 110 | + <execution> |
| 111 | + <id>flatten.clean</id> |
| 112 | + <phase>clean</phase> |
| 113 | + <goals> |
| 114 | + <goal>clean</goal> |
| 115 | + </goals> |
| 116 | + </execution> |
| 117 | + </executions> |
| 118 | + </plugin> |
93 | 119 | <plugin> |
94 | 120 | <groupId>org.apache.maven.plugins</groupId> |
95 | 121 | <artifactId>maven-compiler-plugin</artifactId> |
|
0 commit comments