Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ jobs:
build-scan-terms-of-use-agree: 'yes'

- name: Run build
run: gradle build
run: gradle build -Pdebug
working-directory: pattern-lens

- name: Publish jar file
Expand Down Expand Up @@ -267,7 +267,7 @@ jobs:
run: rsync -av ${{ github.workspace }}/pattern-syntax-parser/ ${{ github.workspace }}/repo/

- name: Run build
run: gradle -Dmaven.repo.local=${{ github.workspace }}/repo -Pdeps.pattern-syntax-parser.version=debug build
run: gradle -Dmaven.repo.local=${{ github.workspace }}/repo -Pdebug build
working-directory: pattern-syntax-plugin

- name: Publish jar files
Expand Down Expand Up @@ -344,13 +344,13 @@ jobs:
- name: Prepare jar archive of lite version
run: |
mv \
${{ github.workspace }}/.pattern-syntax-plugin/pattern-syntax-plugin-1.0-lite.jar \
${{ github.workspace }}/.pattern-syntax-plugin/pattern-syntax-plugin-debug-lite.jar \
${{ github.workspace }}/.pattern-syntax-plugin/lite.jar

- name: Prepare jar archive of standalone version
run: |
mv \
${{ github.workspace }}/.pattern-syntax-plugin/pattern-syntax-plugin-1.0-standalone.jar \
${{ github.workspace }}/.pattern-syntax-plugin/pattern-syntax-plugin-debug-standalone.jar \
${{ github.workspace }}/.pattern-syntax-plugin/standalone.jar

- name: Setup java
Expand Down
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@
- Added CHANGELOG validation in Pull Requests ([#63](https://github.com/Nifacy/c4-patterns/issues/63))
- Added source code formatting support ([#33](https://github.com/Nifacy/c4-patterns/issues/33))
- Added integration tests for syntax plugin ([#68](https://github.com/Nifacy/c4-patterns/issues/68))
- Added debug version build for syntax plugin & pattern lens ([#27](https://github.com/Nifacy/c4-patterns/issues/27))
2 changes: 1 addition & 1 deletion pattern-lens/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id 'com.diffplug.spotless' version '7.0.4'
}

version = '1.0'
version = project.hasProperty("debug") ? 'debug' : releaseVersion

repositories {
mavenCentral()
Expand Down
1 change: 1 addition & 0 deletions pattern-lens/gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
releaseVersion='1.0'
4 changes: 2 additions & 2 deletions pattern-syntax-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ plugins {
}

group = 'com.patterns'
version = '1.0'
version = project.hasProperty("debug") ? 'debug' : releaseVersion

def patternSyntaxParserVersion = project.findProperty("deps.pattern-syntax-parser.version") ?: '1.0'
def patternSyntaxParserVersion = project.hasProperty("debug") ? 'debug' : releaseVersion

repositories {
mavenLocal()
Expand Down
1 change: 1 addition & 0 deletions pattern-syntax-plugin/gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
releaseVersion='1.0'
12 changes: 0 additions & 12 deletions test-plugin/.gitattributes

This file was deleted.

5 changes: 0 additions & 5 deletions test-plugin/.gitignore

This file was deleted.

Binary file removed test-plugin/.test/app.jar
Binary file not shown.
Binary file removed test-plugin/.test/aspectjweaver-1.9.24.jar
Binary file not shown.
Binary file removed test-plugin/.test/test-plugin.jar
Binary file not shown.
15 changes: 0 additions & 15 deletions test-plugin/app/App.java

This file was deleted.

12 changes: 0 additions & 12 deletions test-plugin/build.gradle

This file was deleted.

5 changes: 0 additions & 5 deletions test-plugin/gradle.properties

This file was deleted.

2 changes: 0 additions & 2 deletions test-plugin/gradle/libs.versions.toml

This file was deleted.

Binary file removed test-plugin/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
7 changes: 0 additions & 7 deletions test-plugin/gradle/wrapper/gradle-wrapper.properties

This file was deleted.

251 changes: 0 additions & 251 deletions test-plugin/gradlew

This file was deleted.

Loading