Skip to content

Commit 581382b

Browse files
authored
Merge pull request #282 from lisa-analyzer/beta8-prerelease
Beta8 roundup
2 parents 99aa72a + d0578da commit 581382b

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

lisa/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ buildscript {
5555
classpath 'org.ajoberstar.grgit:grgit-core:4.1.1'
5656
classpath 'org.ajoberstar.grgit:grgit-gradle:4.1.1'
5757

58-
classpath 'com.diffplug.spotless:spotless-plugin-gradle:6.2.1'
58+
classpath 'com.diffplug.spotless:spotless-plugin-gradle:6.18.0'
5959
}
6060
}
6161

@@ -72,4 +72,4 @@ subprojects {
7272
apply from: "${project.rootDir}/code-style.gradle"
7373
apply from: "${project.rootDir}/java.gradle"
7474
apply from: "${project.rootDir}/publishing.gradle"
75-
}
75+
}

lisa/code-style.gradle

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,13 @@ spotless {
3939

4040
// use the eclipse formatting with the one provided with the project
4141
eclipse().configFile(new File(rootProject.projectDir, 'spotless-formatting.xml'))
42-
42+
43+
target 'src/**/*.java'
4344
// ignore generated code
44-
target project.fileTree(project.projectDir) {
45-
include '**/*.java'
46-
exclude '**/build/generated/**'
47-
exclude '**/build/generated-src/**'
48-
exclude '**/target/generated-sources/**'
49-
exclude '**/VersionInfo.java'
50-
}
45+
targetExclude '**/build/generated/**/*.java'
46+
targetExclude '**/build/generated-src/**/*.java'
47+
targetExclude '**/target/generated-sources/**/*.java'
48+
targetExclude '**/VersionInfo.java'
5149
}
5250
antlr4 {
5351
target 'src/*/antlr/**/*.g4'
@@ -83,4 +81,4 @@ tasks.register('checkCodeStyle') {
8381
group = 'verification'
8482
description = 'Execute spotless and checkstyle to ensure code and javadoc formatting'
8583
dependsOn 'spotlessCheck', 'checkstyleMain', 'checkstyleTest'
86-
}
84+
}

lisa/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# project properties
22
group = 'it.unive'
3-
version = 0.1b7
3+
version = 0.1b8
44

55
# gradle build properties
66
org.gradle.caching=true
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-7.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

lisa/gradlew

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
#
4-
# Copyright © 2015-2021 the original authors.
4+
# Copyright © 2015-2021 the original authors.
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.
@@ -32,10 +32,10 @@
3232
# Busybox and similar reduced shells will NOT work, because this script
3333
# requires all of these POSIX shell features:
3434
# * functions;
35-
# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
36-
# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
37-
# * compound commands having a testable exit status, especially «case»;
38-
# * various built-in commands including «command», «set», and «ulimit».
35+
# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
36+
# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
37+
# * compound commands having a testable exit status, especially «case»;
38+
# * various built-in commands including «command», «set», and «ulimit».
3939
#
4040
# Important for patching:
4141
#

lisa/lisa-sdk/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,5 @@ tasks.register('generateVersionInfo', Copy) {
4040
}
4141

4242
compileJava.dependsOn generateVersionInfo
43+
sourcesJar.dependsOn generateVersionInfo
44+

0 commit comments

Comments
 (0)