Skip to content

Commit 5c3daae

Browse files
committed
new version: 0.7.4
- Spring Boot Parent updated to 3.1.4 - Migration to Central Publishing Portal - Bugfixes and Refactorings
1 parent 0edc884 commit 5c3daae

File tree

4 files changed

+65
-31
lines changed

4 files changed

+65
-31
lines changed

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Version Compatability
99
// |2024-09 (4.33.0)
1010
// |51
1111

12-
|0.7.3 (latest)
12+
|0.7.4 (latest)
1313
|https://www.eclipse.org/downloads/packages/release/2022-12/r/eclipse-modeling-tools[2022-12 (4.26.0)]
1414
|48
1515

pom.xml

Lines changed: 58 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<groupId>org.bigraphs.springframework.data</groupId>
1414
<artifactId>spring-data-cdo-parent</artifactId>
15-
<version>0.7.3</version>
15+
<version>0.7.4</version>
1616
<packaging>pom</packaging>
1717

1818
<name>Spring Data for CDO - Parent</name>
@@ -92,6 +92,8 @@
9292
<maven.compiler.source>${java.version}</maven.compiler.source>
9393
<dist.id>spring-data-cdo</dist.id>
9494
<eclipse.mirror>http://download.eclipse.org/</eclipse.mirror>
95+
<!-- <nexus.skipDeploy>true</nexus.skipDeploy>-->
96+
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
9597
<!-- Versions: EMF -->
9698
<emf.ecore.version>2.25.0</emf.ecore.version>
9799
<ecore.xmi.version>2.38.0</ecore.xmi.version>
@@ -144,6 +146,42 @@
144146

145147
<build>
146148
<plugins>
149+
<!-- SOURCE -->
150+
<plugin>
151+
<groupId>org.apache.maven.plugins</groupId>
152+
<artifactId>maven-source-plugin</artifactId>
153+
<executions>
154+
<execution>
155+
<id>attach-sources</id>
156+
<goals>
157+
<goal>jar-no-fork</goal>
158+
</goals>
159+
</execution>
160+
</executions>
161+
</plugin>
162+
<!-- JAVADOC -->
163+
<plugin>
164+
<groupId>org.apache.maven.plugins</groupId>
165+
<artifactId>maven-javadoc-plugin</artifactId>
166+
<configuration>
167+
<javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
168+
<failOnError>false</failOnError>
169+
<release>${java.version}</release>
170+
</configuration>
171+
<executions>
172+
<execution>
173+
<id>attach-javadocs</id>
174+
<goals>
175+
<goal>jar</goal>
176+
</goals>
177+
<configuration>
178+
<!-- all, none, html-->
179+
<doclint>none</doclint>
180+
</configuration>
181+
</execution>
182+
</executions>
183+
</plugin>
184+
<!-- COMPILER -->
147185
<plugin>
148186
<groupId>org.apache.maven.plugins</groupId>
149187
<artifactId>maven-compiler-plugin</artifactId>
@@ -191,12 +229,26 @@
191229
<plugin>
192230
<groupId>org.apache.maven.plugins</groupId>
193231
<artifactId>maven-deploy-plugin</artifactId>
194-
<version>3.1.1</version>
232+
<version>3.3.1</version>
195233
<configuration>
196234
<!-- disable the default existing mapping -->
197235
<skip>true</skip>
198236
</configuration>
199237
</plugin>
238+
<plugin>
239+
<groupId>org.sonatype.plugins</groupId>
240+
<artifactId>nexus-staging-maven-plugin</artifactId>
241+
<!-- <version>1.6.13</version>-->
242+
<executions>
243+
<execution>
244+
<id>disable-nexus-staging</id>
245+
<phase>none</phase>
246+
<goals>
247+
<goal>deploy</goal>
248+
</goals>
249+
</execution>
250+
</executions>
251+
</plugin>
200252
<plugin>
201253
<groupId>org.sonatype.central</groupId>
202254
<artifactId>central-publishing-maven-plugin</artifactId>
@@ -300,6 +352,10 @@
300352
</execution>
301353
</executions>
302354
</plugin>
355+
<plugin>
356+
<groupId>org.apache.maven.plugins</groupId>
357+
<artifactId>maven-deploy-plugin</artifactId>
358+
</plugin>
303359
<plugin>
304360
<groupId>org.sonatype.central</groupId>
305361
<artifactId>central-publishing-maven-plugin</artifactId>

spring-data-cdo-distribution/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.bigraphs.springframework.data</groupId>
77
<artifactId>spring-data-cdo-parent</artifactId>
8-
<version>0.7.3</version>
8+
<version>0.7.4</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>

spring-data-cdo/pom.xml

Lines changed: 5 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.bigraphs.springframework.data</groupId>
99
<artifactId>spring-data-cdo-parent</artifactId>
10-
<version>0.7.3</version>
10+
<version>0.7.4</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

@@ -281,38 +281,12 @@
281281
<artifactId>cdi-api</artifactId>
282282
<version>2.0.SP1</version>
283283
</dependency>
284-
<!-- <dependency>-->
285-
<!-- <groupId>javax.enterprise</groupId>-->
286-
<!-- <artifactId>cdi-api</artifactId>-->
287-
<!-- <version>${cdi}</version>-->
288-
<!-- <scope>provided</scope>-->
289-
<!-- <optional>true</optional>-->
290-
<!-- </dependency>-->
291-
<!-- <dependency>-->
292-
<!-- <groupId>javax.annotation</groupId>-->
293-
<!-- <artifactId>javax.annotation-api</artifactId>-->
294-
<!-- <version>${javax-annotation-api}</version>-->
295-
<!-- <scope>test</scope>-->
296-
<!-- </dependency>-->
297-
<!-- JSR 303 Validation -->
298-
<!-- <dependency>-->
299-
<!-- <groupId>javax.validation</groupId>-->
300-
<!-- <artifactId>validation-api</artifactId>-->
301-
<!-- <version>${validation}</version>-->
302-
<!-- <optional>true</optional>-->
303-
<!-- </dependency>-->
304284
<dependency>
305285
<groupId>org.hibernate</groupId>
306286
<artifactId>hibernate-validator</artifactId>
307287
<version>5.2.4.Final</version>
308288
<scope>test</scope>
309289
</dependency>
310-
<!-- <dependency>-->
311-
<!-- <groupId>joda-time</groupId>-->
312-
<!-- <artifactId>joda-time</artifactId>-->
313-
<!-- <version>${jodatime}</version>-->
314-
<!-- <scope>test</scope>-->
315-
<!-- </dependency>-->
316290
<dependency>
317291
<groupId>org.slf4j</groupId>
318292
<artifactId>jul-to-slf4j</artifactId>
@@ -379,6 +353,10 @@
379353
<groupId>org.apache.maven.plugins</groupId>
380354
<artifactId>maven-surefire-plugin</artifactId>
381355
</plugin>
356+
<plugin>
357+
<groupId>org.apache.maven.plugins</groupId>
358+
<artifactId>maven-javadoc-plugin</artifactId>
359+
</plugin>
382360
<plugin>
383361
<groupId>org.apache.maven.plugins</groupId>
384362
<artifactId>maven-compiler-plugin</artifactId>

0 commit comments

Comments
 (0)