Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies and build for java 11 and featureIDE 3.10.0 #2

Merged
merged 7 commits into from
Feb 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name: Java CI with Maven
on:
workflow_dispatch:
push:
branches: [ "main" ]
branches: [ "main","updated-parser-dependency" ]
pull_request:
branches: [ "main" ]

Expand All @@ -29,7 +29,8 @@ jobs:
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
run: mvn install:install-file -Dfile="de.ovgu.featureide.lib.fm-v3.10.0.jar" -DgroupId="de.ovgu.featureide" -DartifactId="lib.fm" -Dversion="3.10.0" -Dpackaging="jar" |
mvn -B package --file pom.xml

# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
- name: Update dependency graph
Expand Down
Binary file added de.ovgu.featureide.lib.fm-v3.10.0.jar
Binary file not shown.
19 changes: 12 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,16 @@
<scope>provided</scope>
</dependency>
<dependency>
<groupId>de.vill</groupId>
<artifactId>uvl-parser</artifactId>
<version>1.0-SNAPSHOT</version>
<groupId>io.github.universal-variability-language</groupId>
<artifactId>uvl-parser</artifactId>
<version>0.3</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.github.universal-variability-language</groupId>
<artifactId>uvl-metamodel</artifactId>
<version>1.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
Expand All @@ -36,13 +41,13 @@
</dependency>
<dependency>
<groupId>org.logicng</groupId>
<artifactId>logicng</artifactId>
<version>2.4.1</version>
<artifactId>logicng-j11</artifactId>
<version>2.4.3</version>
</dependency>
<dependency>
<groupId>de.ovgu.featureide</groupId>
<artifactId>lib.fm</artifactId>
<version>3.9.1</version>
<version>3.10.0</version>
</dependency>
<dependency>
<groupId>org.opt4j</groupId>
Expand Down Expand Up @@ -93,4 +98,4 @@
</plugin>
</plugins>
</build>
</project>
</project>
Loading