Skip to content

Commit

Permalink
[1.0.0 - 2024-04-01]
Browse files Browse the repository at this point in the history
  • Loading branch information
fugerit79 committed Apr 1, 2024
1 parent ba8c900 commit a9a54e3
Show file tree
Hide file tree
Showing 10 changed files with 64 additions and 159 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.0 - 2024-04-01]

### Added

- [emp-service-model] native support : relfect-config.json (by native-helper-maven-plugin)

### Changed

- fj-bom version set to 1.6.4

## [0.3.3 - 2024-03-24]

### Added
Expand Down
2 changes: 1 addition & 1 deletion data-service-base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.fugerit.java</groupId>
<artifactId>fj-service-helper-bom</artifactId>
<version>0.3.4-SNAPSHOT</version>
<version>1.0.0</version>
</parent>

<name>Data Service Base</name>
Expand Down
2 changes: 1 addition & 1 deletion data-service-jvfs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.fugerit.java</groupId>
<artifactId>fj-service-helper-bom</artifactId>
<version>0.3.4-SNAPSHOT</version>
<version>1.0.0</version>
</parent>

<name>Data Service JVFS</name>
Expand Down
26 changes: 25 additions & 1 deletion emp-service-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.fugerit.java</groupId>
<artifactId>fj-service-helper-bom</artifactId>
<version>0.3.4-SNAPSHOT</version>
<version>1.0.0</version>
</parent>

<name>Eclipse MicroProfile Service Model</name>
Expand All @@ -22,6 +22,30 @@
</licenses>

<build>

<plugins>

<plugin>
<groupId>org.fugerit.java</groupId>
<artifactId>native-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>generate-native-configuration</id>
<phase>prepare-package</phase>
<goals>
<goal>nativeHelper</goal>
</goals>
</execution>
</executions>
<configuration>
<nativeHelperConfigPath>src/main/config/native-helper-config.yaml</nativeHelperConfigPath>
<reflectConfigJsonOutputPath>${project.build.outputDirectory}/META-INF/native-image/reflect-config.json</reflectConfigJsonOutputPath>
<warnOnError>true</warnOnError>
</configuration>
</plugin>

</plugins>

</build>

<dependencies>
Expand Down
7 changes: 7 additions & 0 deletions emp-service-model/src/main/config/native-helper-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# native-helper-graalvm generation configuration
---
createParentDirectory: true
generate:
- packageName: org.fugerit.java.emp.sm.service
excludeClassNames: ServiceResponseHelper
mode: getters

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion fj-service-helper-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.fugerit.java</groupId>
<artifactId>fj-service-helper-bom</artifactId>
<version>0.3.4-SNAPSHOT</version>
<version>1.0.0</version>
</parent>
<artifactId>fj-service-helper-demo</artifactId>
<name>Fugerit Service Helper DEMO</name>
Expand Down
20 changes: 18 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
<parent>
<groupId>org.fugerit.java</groupId>
<artifactId>fj-bom</artifactId>
<version>1.6.3</version>
<version>1.6.4</version>
<relativePath></relativePath>
</parent>

<version>0.3.4-SNAPSHOT</version>
<version>1.0.0</version>
<packaging>pom</packaging>

<name>Fugerit Service Helper BOM</name>
Expand All @@ -32,6 +32,7 @@
<data-service-base-version>${fj-service-helper-version}</data-service-base-version>
<quarkus-redis-service-map-version>${fj-service-helper-version}</quarkus-redis-service-map-version>
<quarkus.platform.version>3.8.3</quarkus.platform.version>
<native-helper-maven-plugin-version>1.3.4</native-helper-maven-plugin-version>
</properties>

<licenses>
Expand Down Expand Up @@ -185,6 +186,21 @@
</dependencies>

<build>

<pluginManagement>

<plugins>

<plugin>
<groupId>org.fugerit.java</groupId>
<artifactId>native-helper-maven-plugin</artifactId>
<version>${native-helper-maven-plugin-version}</version>
</plugin>

</plugins>

</pluginManagement>

<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
2 changes: 1 addition & 1 deletion quarkus-redis-service-map/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.fugerit.java</groupId>
<artifactId>fj-service-helper-bom</artifactId>
<version>0.3.4-SNAPSHOT</version>
<version>1.0.0</version>
</parent>

<name>Service Map based on Quarkus 3+ Redis Client</name>
Expand Down

0 comments on commit a9a54e3

Please sign in to comment.