Skip to content

Commit

Permalink
Merge branch 'main' into develop
Browse files Browse the repository at this point in the history
Set the version in pom.xml to 1.3.0-SNAPSHOT.
  • Loading branch information
bertrand-lorentz committed Nov 17, 2023
2 parents 151ee9f + a1107b7 commit d4521b1
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 11 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# eForms Core Library 1.1.0 Release Notes
# eForms Core Library 1.2.0 Release Notes

_The library is a collection of utilities that are used by our sample applications as well as the EFX Toolkit for Java Developers._
The eForms Core Library is a collection of utilities that are used by our sample applications as well as the EFX Toolkit for Java Developers.

## In this release
This release updates the SdkDownloader to simplify its logic and make sure it resolves pre-release versions of the SDK correctly.

This release adds some XPath processing capabilities, via the new XPathProcessor class. Those capabilities are available in the EFX Toolkit version 1.x, but as they are also useful if you are not using EFX, we are moving them to the eForms Core Library. The corresponding API will be removed from the EFX Toolkit in its next major version (2.0.0).

The SdkResource enum now has a value corresponding to the index file in the `translations` folder, named `translations.json`. This file is added in SDK 1.10.0.

## Download

Expand Down
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@

This library provides a set of classes that can be used to solve some common "problems" in eForms Applications:

* Automatically discovering and downloading new versions of the eForms SDK.
* Maintaining and instantiating at runtime the correct application component versions for different major versions of the SDK.

* Automatically discovering and downloading new versions of the eForms SDK.
* Maintaining and instantiating at runtime the correct application component versions for different major versions of the SDK.
* Basic parsing and processing of XPath expressions.

## Using the eForms Core Library

The eForms Core library requires Java 11 or later.

It is available as a Maven package on Maven Central and can be used by adding the following to the project's `pom.xml`.

```
```xml
<dependencies>
...
<dependency>
Expand All @@ -37,7 +37,9 @@ Requirements:

Execute the following on the root folder of this project:

```text
mvn clean install
```

## Testing

Expand All @@ -46,9 +48,8 @@ Unit tests are available under `src/test/java/`.
After running the unit tests with `mvn test`, you can generate a coverage report with `mvn jacoco:report`.
The report is available under `target/site/jacoco/`, in HTML, CSV, and XML format.


[^1]: _Copyright 2022 European Union_
_Licensed under the EUPL, Version 1.2 or – as soon they will be approved by the European Commission –
subsequent versions of the EUPL (the "Licence");_
_You may not use this work except in compliance with the Licence. You may obtain [a copy of the Licence here](LICENSE)._
_Unless required by applicable law or agreed to in writing, software distributed under the Licence is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the Licence for the specific language governing permissions and limitations under the Licence._
_Unless required by applicable law or agreed to in writing, software distributed under the Licence is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the Licence for the specific language governing permissions and limitations under the Licence._
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>eu.europa.ted.eforms</groupId>
<artifactId>eforms-core-java</artifactId>
<version>1.2.0-SNAPSHOT</version>
<version>1.3.0-SNAPSHOT</version>

<name>eForms Core Library</name>
<description>API and tools for eForms applications.</description>
Expand Down Expand Up @@ -44,7 +44,7 @@
</distributionManagement>

<properties>
<project.build.outputTimestamp>2023-05-10T15:47:46Z</project.build.outputTimestamp>
<project.build.outputTimestamp>2023-11-17T15:30:31Z</project.build.outputTimestamp>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<sonatype.server.url>s01.oss.sonatype.org</sonatype.server.url>
Expand Down

0 comments on commit d4521b1

Please sign in to comment.