Skip to content

Commit 0efa966

Browse files
authored
Merge pull request #3 from codenameone/cn1-bluetooth-maven-migration-16220451789768026049
Convert CN1Bluetooth to Maven and add CI
2 parents 51f969c + 22665a6 commit 0efa966

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+1423
-3853
lines changed

.github/workflows/maven.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches: [ master, main ]
6+
pull_request:
7+
branches: [ master, main ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v2
16+
- name: Set up JDK 11
17+
uses: actions/setup-java@v2
18+
with:
19+
java-version: '11'
20+
distribution: 'adopt'
21+
- name: Setup Codename One Build Client
22+
run: |
23+
mkdir -p ~/.codenameone
24+
wget https://github.com/codenameone/CodenameOne/raw/refs/heads/master/maven/CodeNameOneBuildClient.jar -O ~/.codenameone/CodeNameOneBuildClient.jar
25+
- name: Build with Maven
26+
run: mvn install

.gitignore

Lines changed: 5 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,6 @@
1-
# Windows image file caches
2-
Thumbs.db
3-
ehthumbs.db
4-
5-
# Folder config file
6-
Desktop.ini
7-
8-
# Recycle Bin used on file shares
9-
$RECYCLE.BIN/
10-
11-
# Windows Installer files
12-
*.cab
13-
*.msi
14-
*.msm
15-
*.msp
16-
17-
# Windows shortcuts
18-
*.lnk
19-
20-
# =========================
21-
# Operating System Files
22-
# =========================
23-
24-
# OSX
25-
# =========================
26-
1+
target/
2+
**/*.class
3+
.idea/
4+
*.iml
275
.DS_Store
28-
.AppleDouble
29-
.LSOverride
30-
31-
# Thumbnails
32-
._*
33-
34-
# Files that might appear in the root of a volume
35-
.DocumentRevisions-V100
36-
.fseventsd
37-
.Spotlight-V100
38-
.TemporaryItems
39-
.Trashes
40-
.VolumeIcon.icns
41-
42-
# Directories potentially created on remote AFP share
43-
.AppleDB
44-
.AppleDesktop
45-
Network Trash Folder
46-
Temporary Items
47-
.apdisk
48-
49-
#
50-
*.class
51-
52-
/BTDemo/nbproject/private/
53-
/BTDemo/build/
54-
/BTDemo/lib/impl/
55-
/CN1Bluetooth/nbproject/private/
56-
/CN1Bluetooth/build/
57-
/CN1Bluetooth/dist/
6+
common/target/

CN1Bluetooth/Stubber.jar

-11.5 KB
Binary file not shown.

CN1Bluetooth/build.xml

Lines changed: 0 additions & 211 deletions
This file was deleted.

CN1Bluetooth/lib/CLDC11.jar

-2.01 MB
Binary file not shown.

CN1Bluetooth/lib/CodenameOne.jar

-4.11 MB
Binary file not shown.
-7.87 MB
Binary file not shown.

CN1Bluetooth/lib/json.zip

-49.6 KB
Binary file not shown.

CN1Bluetooth/manifest.mf

Lines changed: 0 additions & 3 deletions
This file was deleted.

CN1Bluetooth/native/j2me/com/codename1/cordova/CordovaNativeImpl.java

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)