Skip to content

Commit

Permalink
Update for 24-SHAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
davidpbauer committed Nov 23, 2022
1 parent 097b773 commit e59dac8
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 31 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,14 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Git Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: JDK 11
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: 11
distribution: temurin
architecture: x64
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
13 changes: 7 additions & 6 deletions api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>attendance</artifactId>
<groupId>org.sakaiproject.attendance</groupId>
<version>23-SNAPSHOT</version>
</parent>
<artifactId>attendance</artifactId>
<groupId>org.sakaiproject.attendance</groupId>
<version>24-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<name>attendance - API</name>
<artifactId>attendance-api</artifactId>
Expand All @@ -45,8 +46,8 @@
<artifactId>hibernate-core</artifactId>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>

<!-- Sakai dependencies -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;

/**
* Created by james on 7/11/17.
Expand Down
17 changes: 7 additions & 10 deletions impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>attendance</artifactId>
<groupId>org.sakaiproject.attendance</groupId>
<version>23-SNAPSHOT</version>
</parent>
<artifactId>attendance</artifactId>
<groupId>org.sakaiproject.attendance</groupId>
<version>24-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<name>attendance - Implementation</name>
<artifactId>attendance-impl</artifactId>
Expand Down Expand Up @@ -58,12 +59,8 @@
<artifactId>ehcache-core</artifactId>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import lombok.Setter;
import lombok.extern.slf4j.Slf4j;

import org.apache.commons.lang.StringUtils;
import org.apache.commons.lang3.StringUtils;
import org.sakaiproject.authz.api.*;
import org.sakaiproject.component.api.ServerConfigurationService;
import org.sakaiproject.entity.api.ResourceProperties;
Expand Down
11 changes: 6 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,13 @@
<artifactId>attendance</artifactId>

<packaging>pom</packaging>

<parent>
<groupId>org.sakaiproject</groupId>
<artifactId>master</artifactId>
<version>23-SNAPSHOT</version>
</parent>
<groupId>org.sakaiproject</groupId>
<artifactId>master</artifactId>
<version>24-SNAPSHOT</version>
<relativePath>../master/pom.xml</relativePath>
</parent>

<developers>
<developer>
Expand Down
11 changes: 6 additions & 5 deletions tool/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,13 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

<modelVersion>4.0.0</modelVersion>

<parent>
<artifactId>attendance</artifactId>
<groupId>org.sakaiproject.attendance</groupId>
<version>23-SNAPSHOT</version>
</parent>
<artifactId>attendance</artifactId>
<groupId>org.sakaiproject.attendance</groupId>
<version>24-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<name>attendance - Tool</name>
<artifactId>attendance-tool</artifactId>
Expand Down

0 comments on commit e59dac8

Please sign in to comment.