|
7 | 7 | <groupId>org.treblereel.gwt.json.mapper</groupId> |
8 | 8 | <artifactId>mapper-parent</artifactId> |
9 | 9 | <packaging>pom</packaging> |
10 | | - <version>0.6</version> |
| 10 | + <version>0.7</version> |
11 | 11 | <modules> |
12 | 12 | <module>json-impl</module> |
13 | 13 | <module>common</module> |
|
58 | 58 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
59 | 59 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
60 | 60 |
|
61 | | - <maven.compiler.source>8</maven.compiler.source> |
62 | | - <maven.compiler.target>8</maven.compiler.target> |
| 61 | + <maven.compiler.source>11</maven.compiler.source> |
| 62 | + <maven.compiler.target>11</maven.compiler.target> |
63 | 63 |
|
64 | 64 | <maven.compiler.version>3.8.0</maven.compiler.version> |
65 | 65 | <maven.source.version>3.2.1</maven.source.version> |
66 | 66 | <maven.fmt.plugin>2.9</maven.fmt.plugin> |
67 | 67 | <maven.license.plugin>3.0</maven.license.plugin> |
68 | 68 | <maven.shade.plugin>3.2.4</maven.shade.plugin> |
69 | | - <maven.deploy.plugin>2.8.2</maven.deploy.plugin> |
70 | 69 | <maven.gpg.plugin>1.6</maven.gpg.plugin> |
71 | 70 | <maven.javadoc.plugin>3.2.0</maven.javadoc.plugin> |
72 | 71 | <maven.source.plugin>3.2.1</maven.source.plugin> |
73 | | - <maven.j2cl.plugin>0.23.2</maven.j2cl.plugin> |
74 | 72 | <maven.release.plugin>2.5.3</maven.release.plugin> |
75 | 73 | <maven.surfire.plugin>3.0.0-M1</maven.surfire.plugin> |
76 | | - <maven.nexus.staging.plugin>1.6.8</maven.nexus.staging.plugin> |
77 | | - <maven.scm.provider.gitexe>1.9.5</maven.scm.provider.gitexe> |
| 74 | + <maven.flatten.plugin>1.5.0</maven.flatten.plugin> |
| 75 | + <maven.central.publishing.plugin>0.9.0</maven.central.publishing.plugin> |
78 | 76 |
|
79 | 77 | <!-- generation related deps --> |
80 | 78 | <javaparser.core.version>3.13.1</javaparser.core.version> |
|
83 | 81 | <auto.service.version>1.1.1</auto.service.version> |
84 | 82 |
|
85 | 83 | <!-- J2CL deps --> |
86 | | - <gwt.jakarta.version>0.5</gwt.jakarta.version> |
| 84 | + <jakarta4g.version>0.7</jakarta4g.version> |
| 85 | + <j2cl.platform.version>20251001-1</j2cl.platform.version> |
87 | 86 |
|
88 | | - <!-- J2CL deps --> |
89 | | - <elemental2.version>1.2.3</elemental2.version> |
90 | | - <j2cl.version>v20241110-1</j2cl.version> |
91 | | - |
92 | | - <!-- Testing --> |
93 | | - <junit.version>4.13.1</junit.version> |
94 | 87 | </properties> |
95 | 88 |
|
96 | 89 | <dependencyManagement> |
97 | 90 | <dependencies> |
98 | 91 | <dependency> |
99 | 92 | <groupId>org.treblereel.gwt.jakarta</groupId> |
100 | 93 | <artifactId>bom</artifactId> |
101 | | - <version>${gwt.jakarta.version}</version> |
| 94 | + <version>${jakarta4g.version}</version> |
102 | 95 | <type>pom</type> |
103 | 96 | <scope>import</scope> |
104 | 97 | </dependency> |
105 | 98 | <dependency> |
106 | | - <groupId>com.google.elemental2</groupId> |
107 | | - <artifactId>elemental2-core</artifactId> |
108 | | - <version>${elemental2.version}</version> |
109 | | - </dependency> |
110 | | - <dependency> |
111 | | - <groupId>com.google.elemental2</groupId> |
112 | | - <artifactId>elemental2-dom</artifactId> |
113 | | - <version>${elemental2.version}</version> |
| 99 | + <groupId>org.treblereel.j2cl.platform</groupId> |
| 100 | + <artifactId>bom</artifactId> |
| 101 | + <version>${j2cl.platform.version}</version> |
| 102 | + <type>pom</type> |
| 103 | + <scope>import</scope> |
114 | 104 | </dependency> |
115 | 105 | <dependency> |
116 | 106 | <groupId>com.google.auto</groupId> |
|
127 | 117 | <artifactId>javaparser-core</artifactId> |
128 | 118 | <version>${javaparser.core.version}</version> |
129 | 119 | </dependency> |
130 | | - |
131 | | - <dependency> |
132 | | - <groupId>junit</groupId> |
133 | | - <artifactId>junit</artifactId> |
134 | | - <version>${junit.version}</version> |
135 | | - <scope>test</scope> |
136 | | - </dependency> |
137 | 120 | </dependencies> |
138 | 121 | </dependencyManagement> |
139 | 122 |
|
|
155 | 138 | <artifactId>fmt-maven-plugin</artifactId> |
156 | 139 | <version>${maven.fmt.plugin}</version> |
157 | 140 | </plugin> |
158 | | - <plugin> |
159 | | - <groupId>org.apache.maven.plugins</groupId> |
160 | | - <artifactId>maven-deploy-plugin</artifactId> |
161 | | - <version>${maven.deploy.plugin}</version> |
162 | | - </plugin> |
163 | 141 | <plugin> |
164 | 142 | <groupId>org.apache.maven.plugins</groupId> |
165 | 143 | <artifactId>maven-source-plugin</artifactId> |
|
170 | 148 | <artifactId>maven-shade-plugin</artifactId> |
171 | 149 | <version>${maven.shade.plugin}</version> |
172 | 150 | </plugin> |
173 | | - <plugin> |
174 | | - <groupId>org.apache.maven.plugins</groupId> |
175 | | - <artifactId>maven-release-plugin</artifactId> |
176 | | - <version>${maven.release.plugin}</version> |
177 | | - </plugin> |
178 | 151 | <plugin> |
179 | 152 | <groupId>org.apache.maven.plugins</groupId> |
180 | 153 | <artifactId>maven-javadoc-plugin</artifactId> |
|
185 | 158 | <artifactId>maven-gpg-plugin</artifactId> |
186 | 159 | <version>${maven.gpg.plugin}</version> |
187 | 160 | </plugin> |
188 | | - <plugin> |
189 | | - <groupId>com.vertispan.j2cl</groupId> |
190 | | - <artifactId>j2cl-maven-plugin</artifactId> |
191 | | - <version>${maven.j2cl.plugin}</version> |
192 | | - </plugin> |
193 | 161 | </plugins> |
194 | 162 | </pluginManagement> |
195 | 163 |
|
|
257 | 225 | </execution> |
258 | 226 | </executions> |
259 | 227 | </plugin> |
260 | | - <plugin> |
261 | | - <groupId>org.apache.maven.plugins</groupId> |
262 | | - <artifactId>maven-deploy-plugin</artifactId> |
263 | | - <version>${maven.deploy.plugin}</version> |
264 | | - <executions> |
265 | | - <execution> |
266 | | - <id>default-deploy</id> |
267 | | - <phase>deploy</phase> |
268 | | - <goals> |
269 | | - <goal>deploy</goal> |
270 | | - </goals> |
271 | | - </execution> |
272 | | - </executions> |
273 | | - </plugin> |
274 | | - <plugin> |
275 | | - <groupId>org.apache.maven.plugins</groupId> |
276 | | - <artifactId>maven-release-plugin</artifactId> |
277 | | - <version>${maven.release.plugin}</version> |
278 | | - <configuration> |
279 | | - <localCheckout>true</localCheckout> |
280 | | - <pushChanges>false</pushChanges> |
281 | | - <mavenExecutorId>forked-path</mavenExecutorId> |
282 | | - <arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments> |
283 | | - </configuration> |
284 | | - <dependencies> |
285 | | - <dependency> |
286 | | - <groupId>org.apache.maven.scm</groupId> |
287 | | - <artifactId>maven-scm-provider-gitexe</artifactId> |
288 | | - <version>${maven.scm.provider.gitexe}</version> |
289 | | - </dependency> |
290 | | - </dependencies> |
291 | | - </plugin> |
292 | 228 | <plugin> |
293 | 229 | <groupId>org.apache.maven.plugins</groupId> |
294 | 230 | <artifactId>maven-javadoc-plugin</artifactId> |
|
301 | 237 | </build> |
302 | 238 |
|
303 | 239 | <profiles> |
304 | | - <!-- release profile to create sources, javadoc, and sign all artifacts before uploading --> |
305 | 240 | <profile> |
306 | 241 | <id>release</id> |
307 | 242 | <build> |
|
321 | 256 | </execution> |
322 | 257 | </executions> |
323 | 258 | </plugin> |
324 | | - <!-- see http://central.sonatype.org/pages/working-with-pgp-signatures.html for more detail --> |
325 | 259 | <plugin> |
326 | 260 | <groupId>org.apache.maven.plugins</groupId> |
327 | 261 | <artifactId>maven-gpg-plugin</artifactId> |
|
335 | 269 | </execution> |
336 | 270 | </executions> |
337 | 271 | </plugin> |
| 272 | + <plugin> |
| 273 | + <groupId>org.sonatype.central</groupId> |
| 274 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 275 | + <version>${maven.central.publishing.plugin}</version> |
| 276 | + <extensions>true</extensions> |
| 277 | + <configuration> |
| 278 | + <publishingServerId>sonatype</publishingServerId> |
| 279 | + </configuration> |
| 280 | + </plugin> |
| 281 | + <plugin> |
| 282 | + <groupId>org.codehaus.mojo</groupId> |
| 283 | + <artifactId>flatten-maven-plugin</artifactId> |
| 284 | + <version>${maven.flatten.plugin}</version> |
| 285 | + <configuration> |
| 286 | + <flattenMode>oss</flattenMode> |
| 287 | + <updatePomFile>true</updatePomFile> |
| 288 | + </configuration> |
| 289 | + <executions> |
| 290 | + <execution> |
| 291 | + <id>flatten</id> |
| 292 | + <phase>process-resources</phase> |
| 293 | + <goals> |
| 294 | + <goal>flatten</goal> |
| 295 | + </goals> |
| 296 | + </execution> |
| 297 | + <execution> |
| 298 | + <id>flatten.clean</id> |
| 299 | + <phase>clean</phase> |
| 300 | + <goals> |
| 301 | + <goal>clean</goal> |
| 302 | + </goals> |
| 303 | + </execution> |
| 304 | + </executions> |
| 305 | + </plugin> |
338 | 306 | </plugins> |
339 | 307 | </build> |
340 | 308 | </profile> |
341 | 309 | </profiles> |
342 | 310 |
|
343 | | - <distributionManagement> |
344 | | - <snapshotRepository> |
345 | | - <id>ossrh</id> |
346 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
347 | | - </snapshotRepository> |
348 | | - <repository> |
349 | | - <id>ossrh</id> |
350 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
351 | | - </repository> |
352 | | - </distributionManagement> |
353 | | - |
354 | 311 | </project> |
0 commit comments