Skip to content

Commit

Permalink
cirrus fix hopefully
Browse files Browse the repository at this point in the history
  • Loading branch information
TheoBong committed Aug 14, 2024
1 parent 8c45c60 commit d23f6a7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ jobs:
java-version: '20'
distribution: 'adopt'

- name: Build Cirrus API
run: mvn install:install-file --Dfile=ace-velocity/libs/cirrus-api-3.0.0-SNAPSHOT.jar --DgroupId=dev.simplex.cirrus --DartifactId=cirrus-api --Dversion=3.0.0-SNAPSHOT --Dpackaging=jar --DgeneratePom=true
- name: Build Cirrus Velocity
run: mvn install:install-file --Dfile=ace-velocity/libs/cirrus-velocity-3.0.0-SNAPSHOT.jar --DgroupId=dev.simplex.cirrus --DartifactId=cirrus-velocity --Dversion=3.0.0-SNAPSHOT --Dpackaging=jar --DgeneratePom=true

- name: Build with Maven
run: mvn -B package --file pom.xml

Expand Down
8 changes: 4 additions & 4 deletions ace-velocity/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,15 +87,11 @@
<groupId>dev.simplix.cirrus</groupId>
<artifactId>cirrus-velocity</artifactId>
<version>3.0.0-SNAPSHOT</version>
<scope>system</scope>
<systemPath>${project.basedir}/libs/cirrus-velocity-3.0.0-SNAPSHOT.jar</systemPath>
</dependency>
<dependency>
<groupId>dev.simplix.cirrus</groupId>
<artifactId>cirrus-api</artifactId>
<version>3.0.0-SNAPSHOT</version>
<scope>system</scope>
<systemPath>${project.basedir}/libs/cirrus-api-3.0.0-SNAPSHOT.jar</systemPath>
</dependency>
</dependencies>

Expand Down Expand Up @@ -134,6 +130,10 @@
<pattern>co.aikar.</pattern>
<shadedPattern>com.bongbong.ace.co.aikar.</shadedPattern>
</relocation>
<relocation>
<pattern>dev.simplix.</pattern>
<shadedPattern>com.bongbong.ace.dev.simplix.</shadedPattern>
</relocation>
</relocations>
</configuration>
</plugin>
Expand Down

0 comments on commit d23f6a7

Please sign in to comment.