Skip to content

Commit

Permalink
Fix CI and lib depdencies (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonBein authored Jul 18, 2023
1 parent 134783f commit e788cc4
Show file tree
Hide file tree
Showing 19 changed files with 74 additions and 108 deletions.
1 change: 0 additions & 1 deletion .gitattributes

This file was deleted.

8 changes: 6 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,12 @@ jobs:
java-version: ${{ matrix.java_version }}
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Setup dependencies
run: mvn -B clean --file pom.xml
- name: Build and tests with Maven
uses: coactions/setup-xvfb@v1
with:
run: 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 modified lib/OpenXES-20160212.jar
Binary file not shown.
Binary file modified lib/OpenXES-XStream-20160212.jar
Binary file not shown.
Binary file modified lib/Spex.jar
Binary file not shown.
Binary file modified lib/desmoj-2.5.1e-bin.jar
Binary file not shown.
3 changes: 0 additions & 3 deletions lib/desmoj/desmoj/2.5.1e/desmoj-2.5.1e.jar

This file was deleted.

9 changes: 0 additions & 9 deletions lib/desmoj/desmoj/2.5.1e/desmoj-2.5.1e.pom

This file was deleted.

13 changes: 0 additions & 13 deletions lib/desmoj/desmoj/maven-metadata-local.xml

This file was deleted.

This file was deleted.

This file was deleted.

12 changes: 0 additions & 12 deletions lib/org/deckfour/openxes-xstream/maven-metadata-local.xml

This file was deleted.

3 changes: 0 additions & 3 deletions lib/org/deckfour/openxes/20160212/openxes-20160212.jar

This file was deleted.

9 changes: 0 additions & 9 deletions lib/org/deckfour/openxes/20160212/openxes-20160212.pom

This file was deleted.

12 changes: 0 additions & 12 deletions lib/org/deckfour/openxes/maven-metadata-local.xml

This file was deleted.

3 changes: 0 additions & 3 deletions lib/org/deckfour/ospex/1.0/ospex-1.0.jar

This file was deleted.

9 changes: 0 additions & 9 deletions lib/org/deckfour/ospex/1.0/ospex-1.0.pom

This file was deleted.

12 changes: 0 additions & 12 deletions lib/org/deckfour/ospex/maven-metadata-local.xml

This file was deleted.

76 changes: 68 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,6 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<repositories>
<repository>
<id>libraries</id>
<url>file://${basedir}/lib</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>org.jdom</groupId>
Expand Down Expand Up @@ -104,6 +97,73 @@
<target>11</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>install-desmoj</id>
<goals>
<goal>install-file</goal>
</goals>
<phase>clean</phase>
<configuration>
<groupId>desmoj</groupId>
<artifactId>desmoj</artifactId>
<version>2.5.1e</version>
<file>${basedir}/lib/desmoj-2.5.1e-bin.jar</file>
<packaging>jar</packaging>
<generatePom>true</generatePom>
</configuration>
</execution>
<execution>
<id>install-openxes</id>
<goals>
<goal>install-file</goal>
</goals>
<phase>clean</phase>
<configuration>
<groupId>org.deckfour</groupId>
<artifactId>openxes</artifactId>
<version>20160212</version>
<file>${basedir}/lib/OpenXES-20160212.jar</file>
<packaging>jar</packaging>
<generatePom>true</generatePom>
</configuration>
</execution>
<execution>
<id>install-spex</id>
<goals>
<goal>install-file</goal>
</goals>
<phase>clean</phase>
<configuration>
<groupId>org.deckfour</groupId>
<artifactId>ospex</artifactId>
<version>1.0</version>
<file>${basedir}/lib/Spex.jar</file>
<packaging>jar</packaging>
<generatePom>true</generatePom>
</configuration>
</execution>
<execution>
<id>install-xstream</id>
<goals>
<goal>install-file</goal>
</goals>
<phase>clean</phase>
<configuration>
<groupId>org.deckfour</groupId>
<artifactId>openxes-xstream</artifactId>
<version>20160212</version>
<file>${basedir}/lib/OpenXES-XStream-20160212.jar</file>
<packaging>jar</packaging>
<generatePom>true</generatePom>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
Expand Down Expand Up @@ -145,4 +205,4 @@
</plugin>
</plugins>
</build>
</project>
</project>

0 comments on commit e788cc4

Please sign in to comment.