Skip to content

Commit

Permalink
resolve build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Charlie-chenchrl committed Oct 26, 2023
1 parent 7710b9d commit 083e49b
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/buildMaven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ name: Build ActiveMQ CRDR artifact
on:
push:
branches:
- activemq-5.18.2.crdr
- 5.17.6.crdr

jobs:
build:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/fullTestRun.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
# CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing
# permissions and limitations under the License.

name: run full test suite on 5.18.2.crdr branch
name: run full test suite on 5.17.6.crdr branch

on:
push:
branches:
- activemq-5.18.2.crdr
- 5.17.6.crdr
workflow_dispatch:

jobs:
Expand Down
11 changes: 11 additions & 0 deletions activemq-broker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,17 @@
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.11.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<reporting>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,11 @@ public Long getOldestActiveTransactionDuration() {
return null;
}

@Override
public Long getConnectedTimestamp() {
return null;
}

@Override
public void start() throws Exception {
}
Expand Down

0 comments on commit 083e49b

Please sign in to comment.