Skip to content

Commit

Permalink
Fixed Import-Package in bundle manifest to accept gnu.io versions [3.…
Browse files Browse the repository at this point in the history
…12,6). Updated dependencies versions. Release 0.3.2-1
  • Loading branch information
mvalla committed Nov 21, 2020
1 parent 8e362a9 commit ff7d980
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [0.3.2-1] - 2020-11-21

### Fixed
- Import-Package in bundle manifest to accept gnu.io versions [3.12,6)
- Updated dependencies versions

## [0.3.2] - 2020-11-17

### Added
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.github.openwebnet4j</groupId>
<artifactId>openwebnet4j</artifactId>
<version>0.3.2</version>
<version>0.3.2-1</version>
<packaging>jar</packaging>

<name>openwebnet4j OpenWebNet Java library</name>
Expand Down Expand Up @@ -45,21 +45,21 @@
<groupId>com.neuronrobotics</groupId>
<artifactId>nrjavaserial</artifactId>
<version>3.15.0</version>
<!-- <version>5.0.2</version> -->
<!-- <version>5.2.1</version> -->
</dependency>

<!-- ==== BUNDLE ==== -->
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<version>5.0.0</version>
<version>6.0.0</version>
</dependency>

<!-- ==== JUNIT 5 ==== -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.5.2</version>
<version>5.7.0</version>
<scope>test</scope>
</dependency>

Expand Down Expand Up @@ -130,7 +130,7 @@
<Export-Package>org.openwebnet4j.*</Export-Package>
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
<Bundle-Activator>org.openwebnet4j.bundle.Activator</Bundle-Activator>
<!-- <Import-Package>gnu.io;version="[3.12,6)"</Import-Package> -->
<Import-Package>gnu.io;version="[3.12,6)",*</Import-Package>
</instructions>
</configuration>
</plugin>
Expand Down

0 comments on commit ff7d980

Please sign in to comment.