Skip to content

Commit 2da8e14

Browse files
Update software stack and license information
1 parent aa329b0 commit 2da8e14

25 files changed

+611
-145
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
- master
88
- develop
99
docker:
10-
- image: maciejmalecki/c64libci:0.1.4
10+
- image: maciejmalecki/c64libci:0.1.7
1111

1212
working_directory: ~/repo
1313

@@ -18,4 +18,4 @@ jobs:
1818
steps:
1919
- checkout
2020

21-
- run: ./gradlew
21+
- run: ./gradlew licenseAsm build

LICENSE

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
MIT License
22

3-
Copyright (c) 2018 c64lib
3+
Copyright (c) 2017-2023 c64lib
4+
Copyright (c) 2017-2023 Maciej Małecki
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy
67
of this software and associated documentation files (the "Software"), to deal

build.gradle

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,34 @@
11
plugins {
2-
id "com.github.c64lib.retro-assembler" version "1.4.5"
2+
id "com.github.c64lib.retro-assembler" version "1.6.0"
3+
id "com.github.hierynomus.license" version "0.16.1"
34
}
45

56
repositories {
67
mavenCentral()
78
}
89

9-
retroProject {
10+
license {
11+
header = file("LICENSE")
12+
excludes([".ra"])
13+
include "**/*.asm"
14+
mapping {
15+
asm = 'SLASHSTAR_STYLE'
16+
}
17+
}
1018

11-
dialect = "KickAssembler"
12-
dialectVersion = "5.22"
13-
libDirs = ["..", ".ra/deps/c64lib"]
19+
task licenseFormatAsm(type: com.hierynomus.gradle.license.tasks.LicenseFormat) {
20+
source = fileTree(dir: ".").include("**/*.asm").exclude(".ra")
21+
}
22+
task licenseAsm(type: com.hierynomus.gradle.license.tasks.LicenseCheck) {
23+
source = fileTree(dir: ".").include("**/*.asm").exclude(".ra")
24+
}
25+
licenseFormat.dependsOn licenseFormatAsm
1426

27+
retroProject {
28+
dialect = "KickAssembler"
29+
dialectVersion = "5.25"
30+
libDirs = [".ra/deps/c64lib"]
31+
verbose = true
1532
libFromGitHub "c64lib/64spec", "0.7.0pr"
1633
}
1734

gradle/wrapper/gradle-wrapper.jar

3.83 KB
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)