|
18 | 18 | </modules> |
19 | 19 |
|
20 | 20 | <properties> |
| 21 | + <maven-enforcer-plugin.version>3.0.0-M3</maven-enforcer-plugin.version> |
| 22 | + <git-commit-id-plugin.version>4.0.2</git-commit-id-plugin.version> |
| 23 | + <build-helper-maven-plugin.version>3.2.0</build-helper-maven-plugin.version> |
| 24 | + <maven-antrun-plugin.version>3.0.0</maven-antrun-plugin.version> |
| 25 | + <maven-dependency-plugin.version>3.1.2</maven-dependency-plugin.version> |
| 26 | + <maven-resources-plugin.version>3.1.0</maven-resources-plugin.version> |
| 27 | + <download-maven-plugin.version>1.6.0</download-maven-plugin.version> |
| 28 | + <maven-assembly-plugin.version>3.3.0</maven-assembly-plugin.version> |
| 29 | + <docker-maven-plugin.version>0.34.1</docker-maven-plugin.version> |
| 30 | + |
21 | 31 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
22 | 32 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
23 | 33 | <resource.delimiter>@</resource.delimiter> |
|
28 | 38 | <maven.compiler.target>1.8</maven.compiler.target> |
29 | 39 | <docker.verbose>true</docker.verbose> |
30 | 40 | <docker.cleanup>none</docker.cleanup> |
| 41 | + |
31 | 42 | <app.version>master</app.version> |
32 | 43 | <cmake.version>3.18.4</cmake.version> |
33 | 44 | <cmake.sha256>149e0cee002e59e0bb84543cf3cb099f108c08390392605e944daeb6594cbc29</cmake.sha256> |
34 | 45 | <boost.version>1.74.0</boost.version> |
35 | 46 | <boost.sha256>8211e639fd443cbffed7891af9c54012848d04df340ee993bedb3ef0346347c3</boost.sha256> |
36 | | - <builder.image.repository>abrarov/maven-docker-builder-builder</builder.image.repository> |
| 47 | + |
| 48 | + <docker.image.registry>abrarov</docker.image.registry> |
| 49 | + <builder.image.repository>${docker.image.registry}/maven-docker-builder-builder</builder.image.repository> |
37 | 50 | <builder.output.file>/out.tar.gz</builder.output.file> |
38 | 51 | </properties> |
39 | 52 |
|
|
60 | 73 | <plugin> |
61 | 74 | <groupId>org.apache.maven.plugins</groupId> |
62 | 75 | <artifactId>maven-enforcer-plugin</artifactId> |
63 | | - <version>3.0.0-M3</version> |
| 76 | + <version>${maven-enforcer-plugin.version}</version> |
64 | 77 | </plugin> |
65 | 78 | <plugin> |
66 | 79 | <groupId>pl.project13.maven</groupId> |
67 | 80 | <artifactId>git-commit-id-plugin</artifactId> |
68 | | - <version>4.0.2</version> |
| 81 | + <version>${git-commit-id-plugin.version}</version> |
69 | 82 | <configuration> |
70 | 83 | <verbose>false</verbose> |
71 | 84 | <generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename> |
|
84 | 97 | <plugin> |
85 | 98 | <groupId>org.codehaus.mojo</groupId> |
86 | 99 | <artifactId>build-helper-maven-plugin</artifactId> |
87 | | - <version>3.2.0</version> |
| 100 | + <version>${build-helper-maven-plugin.version}</version> |
88 | 101 | </plugin> |
89 | 102 | <plugin> |
90 | 103 | <groupId>org.apache.maven.plugins</groupId> |
91 | 104 | <artifactId>maven-antrun-plugin</artifactId> |
92 | | - <version>3.0.0</version> |
| 105 | + <version>${maven-antrun-plugin.version}</version> |
93 | 106 | </plugin> |
94 | 107 | <plugin> |
95 | 108 | <groupId>org.apache.maven.plugins</groupId> |
96 | 109 | <artifactId>maven-dependency-plugin</artifactId> |
97 | | - <version>3.1.2</version> |
| 110 | + <version>${maven-dependency-plugin.version}</version> |
98 | 111 | </plugin> |
99 | 112 | <plugin> |
100 | 113 | <groupId>org.apache.maven.plugins</groupId> |
101 | 114 | <artifactId>maven-resources-plugin</artifactId> |
102 | | - <version>3.1.0</version> |
| 115 | + <version>${maven-resources-plugin.version}</version> |
103 | 116 | <configuration> |
104 | 117 | <delimiters> |
105 | 118 | <delimiter>${resource.delimiter}</delimiter> |
|
110 | 123 | <plugin> |
111 | 124 | <groupId>com.googlecode.maven-download-plugin</groupId> |
112 | 125 | <artifactId>download-maven-plugin</artifactId> |
113 | | - <version>1.6.0</version> |
| 126 | + <version>${download-maven-plugin.version}</version> |
114 | 127 | </plugin> |
115 | 128 | <plugin> |
116 | 129 | <groupId>org.apache.maven.plugins</groupId> |
117 | 130 | <artifactId>maven-assembly-plugin</artifactId> |
118 | | - <version>3.3.0</version> |
| 131 | + <version>${maven-assembly-plugin.version}</version> |
119 | 132 | <configuration> |
120 | 133 | <delimiters> |
121 | 134 | <delimiter>${resource.delimiter}</delimiter> |
|
129 | 142 | <plugin> |
130 | 143 | <groupId>io.fabric8</groupId> |
131 | 144 | <artifactId>docker-maven-plugin</artifactId> |
132 | | - <version>0.33.0</version> |
| 145 | + <version>${docker-maven-plugin.version}</version> |
133 | 146 | </plugin> |
134 | 147 | </plugins> |
135 | 148 | </pluginManagement> |
|
0 commit comments