Commit b45779a 1 parent d1595a0 commit b45779a Copy full SHA for b45779a
File tree 3 files changed +7
-5
lines changed
lib/src/konsistTest/kotlin/com/lemonappdev/konsist/core
3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 23
23
1 . Create ` hotfix/KON-XXX-... ` branch from ` main `
24
24
2 . Fix the bug and open PR targeting ` mian `
25
25
3 . Merge the PR
26
- 4 . Create ` release/vx.y.z ` branch from ` main `
26
+ 4 . Create ` release/vX.Y.Z ` branch from ` main `
27
27
5 . Update Konsist version
28
28
1 . [ gradle.properties] ( gradle.properties ) file
29
29
2 . [ README.md] ( README.md ) file
32
32
8 . Switch to the ` main ` branch and pull changes
33
33
9 . Run ` ./gradlew publish -Pkonsist.releaseTarget=release ` on the ` main ` branch to release a new version
34
34
10 . Create a new [ GitHub release] ( https://github.com/LemonAppDev/konsist/releases/new )
35
- 1 . set ` vx.y.z ` as tag version
36
- 2 . set ` vx.y.z ` as release title
35
+ 1 . set ` vX.Y.Z ` as tag version
36
+ 2 . set ` vX.Y.Z ` as release title
37
37
11 . Update Konsist version in the
38
38
Konsist [ Quick Start] ( https://app.gitbook.com/o/PQj191UX5M2C2XxCZuYO/s/RYeSMx6WDKivnwWx7PdP/getting-started/getting-started )
39
39
docs page
@@ -47,7 +47,7 @@ fix starter link
47
47
## Production Release
48
48
49
49
1 . Merge ` main ` to ` develop `
50
- 2 . Create ` release/vx.y.z ` branch from ` develop `
50
+ 2 . Create ` release/vX.Y.Z ` branch from ` develop `
51
51
3 . Update Konsist version
52
52
1 . [ gradle.properties] ( gradle.properties ) file
53
53
2 . [ README.md] ( README.md ) file
Original file line number Diff line number Diff line change
1
+ org.gradle.jvmargs =-Xms512M -Xmx4g -Dkotlin.daemon.jvm.options =" -Xmx1g"
1
2
2
3
org.gradle.parallel =true
3
4
org.gradle.daemon =true
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ package com.lemonappdev.konsist.core
2
2
3
3
import com.lemonappdev.konsist.api.Konsist
4
4
import com.lemonappdev.konsist.api.ext.list.returnTypes
5
+ import com.lemonappdev.konsist.api.ext.list.sourceDeclarations
5
6
import com.lemonappdev.konsist.api.ext.list.types
6
7
import com.lemonappdev.konsist.api.ext.list.withoutName
7
8
import com.lemonappdev.konsist.api.verify.assertFalse
@@ -40,7 +41,7 @@ class DeclarationKonsistTest {
40
41
declarationPackageScope
41
42
.properties()
42
43
.types
43
- .assertFalse { it.sourceType.endsWith( " Impl " ) }
44
+ .sourceDeclarations
44
45
}
45
46
46
47
@Test
You can’t perform that action at this time.
0 commit comments