Skip to content

Commit

Permalink
Merge pull request #23 from kbss-cvut/development
Browse files Browse the repository at this point in the history
[0.15.2] Release
  • Loading branch information
ledsoft authored Dec 17, 2024
2 parents 3ec3482 + f9545ff commit e7e09bb
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Build

on:
push:
branches: [ master ]
branches: [ master, development ]
pull_request:
branches: [ master ]
branches: [ master, development ]

jobs:
build:
Expand All @@ -13,9 +13,10 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Set up JDK
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
java-version: '17'
- name: Build with Maven
run: mvn -B package --file pom.xml
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>cz.cvut.kbss.jsonld</groupId>
<artifactId>jb4jsonld-jackson</artifactId>
<version>0.15.1</version>
<version>0.15.2</version>
<name>JB4JSON-LD-Jackson</name>
<description>JB4JSON-LD integration for Jackson.</description>
<url>https://github.com/kbss-cvut/jb4jsonld-jackson</url>
Expand All @@ -17,13 +17,13 @@
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>

<cz.cvut.kbss.jb4jsonld.version>0.15.0</cz.cvut.kbss.jb4jsonld.version>
<cz.cvut.kbss.jb4jsonld.version>0.15.1</cz.cvut.kbss.jb4jsonld.version>
<com.fasterxml.jackson.version>2.17.2</com.fasterxml.jackson.version>

<org.junit.jupiter.version>5.11.0</org.junit.jupiter.version>
<org.mockito.version>5.12.0</org.mockito.version>
<ch.qos.logback.version>1.5.7</ch.qos.logback.version>
<org.eclipse.rdf4j.version>5.0.2</org.eclipse.rdf4j.version>
<org.eclipse.rdf4j.version>5.0.3</org.eclipse.rdf4j.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -131,7 +131,7 @@
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.4.1</version>
<version>3.10.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand Down Expand Up @@ -175,19 +175,19 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<version>3.13.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
<version>3.5.1</version>
</plugin>

<!-- Code coverage plugin -->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.8</version>
<version>0.8.12</version>
<executions>
<execution>
<goals>
Expand Down

0 comments on commit e7e09bb

Please sign in to comment.