Skip to content

Commit

Permalink
Merge pull request #13 from afan0918/master
Browse files Browse the repository at this point in the history
Upgrade BCEL library version to 6.8.1, add Java 11 syntax support, and include GitHub workflow for project validation
  • Loading branch information
dspinellis authored Feb 24, 2024
2 parents 9b72e85 + 1bca178 commit 494468f
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 1 deletion.
25 changes: 25 additions & 0 deletions .github/workflows/ant.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# This workflow will build a Java project with Ant
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-ant

name: Java CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
- name: Build with Ant
run: ant -noinput -buildfile build.xml
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<property name="antlib" location="${env.ANT_HOME}/lib"/>
<property name="jarfile" location="${build}/ckjm-${version}.jar"/>
<property name="javadoc" location="javadoc"/>
<property name="bcel" value="bcel-6.0.jar"/>
<property name="bcel" value="bcel-6.8.1.jar"/>

<target name="init">
<!-- Create the time stamp -->
Expand Down
Binary file removed lib/bcel-6.0.jar
Binary file not shown.
Binary file added lib/bcel-6.8.1.jar
Binary file not shown.

0 comments on commit 494468f

Please sign in to comment.