Skip to content

Commit

Permalink
Merge branch 'main' into release/j11
Browse files Browse the repository at this point in the history
  • Loading branch information
czengler committed May 2, 2024
2 parents 77a98b5 + 222cb7d commit ce15f26
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 23 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,7 @@ jobs:
java-version: 1.8
- name: Build with Maven
run: mvn -B package
- name: Upload coverage to codecov.io
uses: codecov/codecov-action@v1
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
name: LogicNG
file: ./target/site/jacoco/jacoco.xml
flags: unittests
env_vars: OS
token: ${{ secrets.CODECOV_TOKEN }}
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

LogicNG uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.5.0] - 2024-xx-xx
## [2.5.0] - 2024-05-02

### Initial Release of this library

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
![build](https://github.com/logic-ng/parser/workflows/build/badge.svg) [![codecov](https://codecov.io/gh/logic-ng/parser/branch/development/graph/badge.svg)](https://codecov.io/gh/logic-ng/parser) ![License](https://img.shields.io/badge/license-Apache%202-ff69b4.svg) [![Maven Central](https://img.shields.io/maven-central/v/org.logicng/logicng-parser-j8.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22org.logicng%22%20AND%20a:%22logicng-parser-j8%22)
![build](https://github.com/logic-ng/parser/workflows/build/badge.svg) ![License](https://img.shields.io/badge/license-Apache%202-ff69b4.svg) [![codecov](https://codecov.io/gh/logic-ng/parser/branch/main/graph/badge.svg?token=VPOQ1DAT5I)](https://codecov.io/gh/logic-ng/parser) [![Maven Central](https://img.shields.io/maven-central/v/org.logicng/logicng-parser-j8.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22org.logicng%22%20AND%20a:%22logicng-parser-j8%22)


<a href="https://www.logicng.org"><img src="https://github.com/logic-ng/parser/blob/master/doc/logo/logo_big.png" alt="logo" width="300"></a>
<a href="https://www.logicng.org"><img src="https://github.com/logic-ng/LogicNG/blob/master/doc/logo/logo_big.png" alt="logo" width="300"></a>

## Introduction

Expand Down
Binary file removed doc/logo/logo_big.png
Binary file not shown.
20 changes: 6 additions & 14 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,13 @@

<groupId>org.logicng</groupId>
<artifactId>logicng-parser-j11</artifactId>
<version>2.5.0-SNAPSHOT</version>
<version>2.5.0</version>
<packaging>bundle</packaging>

<name>LogicNG ANTLR Parser</name>
<description>An ANTLR Parser for LogicNG</description>
<url>https://www.logicng.org</url>

<licenses>
<license>
<name>The Apache License, Version 2.0</name>
Expand Down Expand Up @@ -72,7 +76,6 @@
<!-- Plugin Versions -->
<version.antlr-plugin>4.13.1</version.antlr-plugin>
<version.jacoco>0.8.11</version.jacoco>
<version.coveralls>4.3.0</version.coveralls>
<version.surefire>3.2.5</version.surefire>
<version.nexus-staging>1.6.8</version.nexus-staging>
<version.maven-gpg>1.6</version.maven-gpg>
Expand Down Expand Up @@ -123,6 +126,7 @@
</manifest>
<manifestEntries>
<Built-By>BooleWorks GmbH</Built-By>
<Automatic-Module-Name>logicng-parser-j11</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
Expand Down Expand Up @@ -212,18 +216,6 @@
</configuration>
</plugin>

<!-- Coveralls.io test coverage -->
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>${version.coveralls}</version>
<configuration>
<sourceDirectories>
<sourceDirectory>target/generated-sources/antlr</sourceDirectory>
</sourceDirectories>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Expand Down

0 comments on commit ce15f26

Please sign in to comment.