|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>org.openntf.p2</groupId> |
5 | 5 | <artifactId>generate-domino-update-site</artifactId> |
6 | | - <version>5.1.0-SNAPSHOT</version> |
| 6 | + <version>6.0.0-SNAPSHOT</version> |
7 | 7 | <packaging>maven-plugin</packaging> |
8 | 8 |
|
9 | 9 | <name>generate-domino-update-site</name> |
|
12 | 12 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
13 | 13 | <maven.compiler.source>1.8</maven.compiler.source> |
14 | 14 | <maven.compiler.target>1.8</maven.compiler.target> |
15 | | - |
| 15 | + <maven.compiler.release>8</maven.compiler.release> |
| 16 | + |
16 | 17 | <!-- Maven API version. This version should be supported by m2e --> |
17 | | - <maven.api.version>3.8.6</maven.api.version> |
| 18 | + <maven.api.version>3.9.9</maven.api.version> |
| 19 | + |
| 20 | + <docker-java.version>3.4.2</docker-java.version> |
| 21 | + <maven-plugin-annotations.version>3.15.1</maven-plugin-annotations.version> |
| 22 | + <plexus-utils.version>3.6.0</plexus-utils.version> |
| 23 | + <com.ibm.commons.version>9.0.0</com.ibm.commons.version> |
| 24 | + <org.openntf.nsfodp.commons.version>4.0.5</org.openntf.nsfodp.commons.version> |
| 25 | + <org.eclipse.osgi.version>3.7.1</org.eclipse.osgi.version> |
| 26 | + <mojo-executor.version>2.4.1</mojo-executor.version> |
| 27 | + <tycho-osgi.version>3.13.0.v20180226-1711</tycho-osgi.version> |
| 28 | + <commons-lang3.version>3.17.0</commons-lang3.version> |
| 29 | + <commons-compress.version>1.27.1</commons-compress.version> |
| 30 | + <commons-io.version>2.18.0</commons-io.version> |
| 31 | + <xz.version>1.10</xz.version> |
| 32 | + <junit.version>5.12.0</junit.version> |
18 | 33 | </properties> |
19 | 34 |
|
20 | | - <url>https://openntf.org/main.nsf/project.xsp?r=project/NSF%20ODP%20Tooling</url> |
| 35 | + <url>https://www.openntf.org/main.nsf/project.xsp?r=project/Domino%20Update%20Site%20Generator</url> |
21 | 36 | <inceptionYear>2018</inceptionYear> |
22 | 37 |
|
23 | 38 | <licenses> |
|
36 | 51 | <url>https://artifactory.openntf.org/openntf</url> |
37 | 52 | </repository> |
38 | 53 | </distributionManagement> |
39 | | - |
| 54 | + |
40 | 55 | <repositories> |
41 | 56 | <repository> |
42 | 57 | <id>artifactory.openntf.org</id> |
|
57 | 72 | <groupId>org.apache.maven</groupId> |
58 | 73 | <artifactId>maven-plugin-api</artifactId> |
59 | 74 | <version>${maven.api.version}</version> |
| 75 | + <scope>provided</scope> |
60 | 76 | </dependency> |
61 | 77 | <dependency> |
62 | 78 | <groupId>org.apache.maven</groupId> |
63 | 79 | <artifactId>maven-core</artifactId> |
64 | 80 | <version>${maven.api.version}</version> |
65 | | - </dependency> |
66 | | - <dependency> |
67 | | - <groupId>org.apache.maven</groupId> |
68 | | - <artifactId>maven-project</artifactId> |
69 | | - <version>2.2.1</version> |
| 81 | + <scope>provided</scope> |
70 | 82 | </dependency> |
71 | 83 | <dependency> |
72 | 84 | <groupId>org.apache.maven.plugin-tools</groupId> |
73 | 85 | <artifactId>maven-plugin-annotations</artifactId> |
74 | | - <version>3.7.1</version> |
| 86 | + <version>${maven-plugin-annotations.version}</version> |
75 | 87 | <scope>provided</scope> |
76 | 88 | </dependency> |
77 | 89 | <dependency> |
78 | 90 | <groupId>org.codehaus.plexus</groupId> |
79 | 91 | <artifactId>plexus-utils</artifactId> |
80 | | - <version>3.5.0</version> |
| 92 | + <version>${plexus-utils.version}</version> |
81 | 93 | </dependency> |
82 | | - |
| 94 | + |
83 | 95 | <dependency> |
84 | | - <groupId>com.ibm.sbt</groupId> |
85 | | - <artifactId>com.ibm.commons</artifactId> |
86 | | - <version>9.0.0</version> |
| 96 | + <groupId>com.ibm.sbt</groupId> |
| 97 | + <artifactId>com.ibm.commons</artifactId> |
| 98 | + <version>${com.ibm.commons.version}</version> |
87 | 99 | </dependency> |
88 | 100 | <dependency> |
89 | 101 | <groupId>org.openntf.nsfodp</groupId> |
90 | 102 | <artifactId>org.openntf.nsfodp.commons</artifactId> |
91 | | - <version>3.9.0</version> |
| 103 | + <version>${org.openntf.nsfodp.commons.version}</version> |
92 | 104 | </dependency> |
93 | 105 | <dependency> |
94 | 106 | <groupId>org.eclipse.osgi</groupId> |
95 | 107 | <artifactId>org.eclipse.osgi</artifactId> |
96 | | - <version>3.7.1</version> |
| 108 | + <version>${org.eclipse.osgi.version}</version> |
97 | 109 | </dependency> |
98 | | - |
99 | 110 | <dependency> |
100 | 111 | <groupId>org.twdata.maven</groupId> |
101 | 112 | <artifactId>mojo-executor</artifactId> |
102 | | - <version>2.4.0</version> |
103 | | - </dependency> |
104 | | - |
105 | | - <dependency> |
106 | | - <groupId>org.projectlombok</groupId> |
107 | | - <artifactId>lombok</artifactId> |
108 | | - <version>1.18.26</version> |
109 | | - <scope>provided</scope> |
| 113 | + <version>${mojo-executor.version}</version> |
110 | 114 | </dependency> |
111 | | - |
112 | 115 | <dependency> |
113 | 116 | <groupId>org.eclipse.tycho</groupId> |
114 | 117 | <artifactId>org.eclipse.osgi</artifactId> |
115 | | - <version>3.13.0.v20180226-1711</version> |
| 118 | + <version>${tycho-osgi.version}</version> |
116 | 119 | </dependency> |
117 | 120 | <dependency> |
118 | 121 | <groupId>org.apache.commons</groupId> |
119 | 122 | <artifactId>commons-lang3</artifactId> |
120 | | - <version>3.12.0</version> |
| 123 | + <version>${commons-lang3.version}</version> |
| 124 | + </dependency> |
| 125 | + <dependency> |
| 126 | + <groupId>org.apache.commons</groupId> |
| 127 | + <artifactId>commons-compress</artifactId> |
| 128 | + <version>${commons-compress.version}</version> |
| 129 | + </dependency> |
| 130 | + <dependency> |
| 131 | + <groupId>commons-io</groupId> |
| 132 | + <artifactId>commons-io</artifactId> |
| 133 | + <version>${commons-io.version}</version> |
121 | 134 | </dependency> |
122 | 135 | <dependency> |
123 | 136 | <groupId>org.tukaani</groupId> |
124 | 137 | <artifactId>xz</artifactId> |
125 | | - <version>1.9</version> |
| 138 | + <version>${xz.version}</version> |
126 | 139 | </dependency> |
127 | | - |
| 140 | + |
128 | 141 | <dependency> |
129 | 142 | <groupId>org.junit.jupiter</groupId> |
130 | 143 | <artifactId>junit-jupiter-engine</artifactId> |
131 | | - <version>5.9.2</version> |
| 144 | + <version>${junit.version}</version> |
132 | 145 | <scope>test</scope> |
133 | 146 | </dependency> |
| 147 | + |
| 148 | + <dependency> |
| 149 | + <groupId>com.github.docker-java</groupId> |
| 150 | + <artifactId>docker-java-core</artifactId> |
| 151 | + <version>${docker-java.version}</version> |
| 152 | + </dependency> |
| 153 | + <dependency> |
| 154 | + <groupId>com.github.docker-java</groupId> |
| 155 | + <artifactId>docker-java-transport-httpclient5</artifactId> |
| 156 | + <version>${docker-java.version}</version> |
| 157 | + </dependency> |
| 158 | + |
134 | 159 | </dependencies> |
135 | | - |
| 160 | + |
136 | 161 | <prerequisites> |
137 | 162 | <maven>3.0.1</maven> |
138 | 163 | </prerequisites> |
139 | | - |
| 164 | + |
140 | 165 | <build> |
141 | 166 | <plugins> |
142 | 167 | <plugin> |
143 | 168 | <groupId>org.apache.maven.plugins</groupId> |
144 | 169 | <artifactId>maven-compiler-plugin</artifactId> |
145 | | - <version>3.1</version> |
| 170 | + <version>3.14.0</version> |
146 | 171 | </plugin> |
147 | | - |
| 172 | + |
148 | 173 | <plugin> |
149 | 174 | <groupId>org.apache.maven.plugins</groupId> |
150 | 175 | <artifactId>maven-plugin-plugin</artifactId> |
151 | | - <version>3.5.1</version> |
| 176 | + <version>3.15.1</version> |
152 | 177 | <configuration> |
153 | 178 | <goalPrefix>generate-domino-update-site</goalPrefix> |
154 | 179 | <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> |
| 180 | + |
155 | 181 | </configuration> |
156 | 182 | <executions> |
157 | 183 | <execution> |
|
168 | 194 | </execution> |
169 | 195 | </executions> |
170 | 196 | </plugin> |
171 | | - |
| 197 | + |
172 | 198 |
|
173 | 199 | <plugin> |
174 | 200 | <groupId>com.mycila</groupId> |
|
179 | 205 | <header>license.txt</header> |
180 | 206 | <excludes> |
181 | 207 | <exclude>pom.xml</exclude> |
182 | | - <exclude>**/README</exclude> |
183 | | - <exclude>src/test/resources/**</exclude> |
184 | | - <exclude>src/main/resources/**</exclude> |
| 208 | + <exclude>**/README</exclude> |
| 209 | + <exclude>src/test/resources/**</exclude> |
| 210 | + <exclude>src/main/resources/**</exclude> |
185 | 211 | </excludes> |
186 | 212 | <properties> |
187 | | - <owner>Jesse Gallagher</owner> |
188 | | - <copyrightYear>2023</copyrightYear> |
| 213 | + <owner>Contributors to the generate-domino-update-site project</owner> |
| 214 | + <copyrightYear>2025</copyrightYear> |
189 | 215 | </properties> |
190 | 216 | </configuration> |
191 | 217 | </plugin> |
192 | 218 |
|
193 | 219 | <plugin> |
194 | 220 | <groupId>org.apache.maven.plugins</groupId> |
195 | 221 | <artifactId>maven-enforcer-plugin</artifactId> |
196 | | - <version>3.0.0-M1</version> |
| 222 | + <version>3.5.0</version> |
197 | 223 | <executions> |
198 | 224 | <execution> |
199 | 225 | <id>enforce-maven-and-java</id> |
|
0 commit comments