Skip to content

Commit

Permalink
Fix master builds (#67)
Browse files Browse the repository at this point in the history
(cherry picked from commit d433525)
  • Loading branch information
ottenhoff committed Jan 10, 2024
1 parent 044961f commit c20f715
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ name: Java CI with Maven

on:
pull_request:
branches: [ master, 20.x, 21.x, 22.x, 23.x ]

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Git Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: JDK 11
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 11
architecture: x64
distribution: 'temurin'
cache: 'maven'
- name: Build with Maven
env:
MAVEN_OPTS: -Djava.awt.headless=true -Dorg.slf4j.simpleLogger.defaultLogLevel=info -Dmaven.wagon.http.retryHandler.count=2 -Dmaven.wagon.http.pool=true
Expand Down
6 changes: 0 additions & 6 deletions scorm-impl/pack/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,6 @@
<artifactId>xmlParserAPIs</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
<type>jar</type>
<scope>runtime</scope>
</dependency>
</dependencies>

<build />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,12 @@ public boolean allowUpdateGroupMembership( String id )
return false;
}

@Override
public boolean allowUpdateGroupMembership(String siteId, String groupId)
{
return false;
}

@Override
public boolean allowUpdateSite( String id )
{
Expand Down Expand Up @@ -625,4 +631,9 @@ public boolean willArchiveMerge()
{
return SiteService.super.willArchiveMerge();
}

@Override
public String idFromSiteReference(String ref) {
throw new UnsupportedOperationException( "Not supported yet." );
}
}

0 comments on commit c20f715

Please sign in to comment.