Skip to content

Commit 0534b3c

Browse files
committed
Update project configuration
1 parent 3ce8116 commit 0534b3c

File tree

7 files changed

+250
-150
lines changed

7 files changed

+250
-150
lines changed

.run/Enhance.run.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<component name="ProjectRunConfigurationManager">
2+
<configuration default="false" name="Enhance" type="Application" factoryName="Application" nameIsGenerated="true">
3+
<option name="ALTERNATIVE_JRE_PATH" value="azul-13" />
4+
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="true" />
5+
<option name="MAIN_CLASS_NAME" value="ru.noties.enhance.Enhance" />
6+
<module name="enhance.main" />
7+
<option name="PROGRAM_PARAMETERS" value="-sdk 33 -format google" />
8+
<extension name="coverage">
9+
<pattern>
10+
<option name="PATTERN" value="ru.noties.enhance.*" />
11+
<option name="ENABLED" value="true" />
12+
</pattern>
13+
</extension>
14+
<method v="2">
15+
<option name="Make" enabled="true" />
16+
</method>
17+
</configuration>
18+
</component>

build.gradle

Lines changed: 11 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
1-
buildscript {
2-
repositories {
3-
jcenter()
4-
}
5-
dependencies {
6-
classpath 'com.github.jengelman.gradle.plugins:shadow:6.0.0'
7-
}
1+
plugins {
2+
id 'com.github.johnrengelman.shadow' version '7.1.2'
3+
id 'java'
84
}
95

106
group 'ru.noties'
11-
version '1.2.0'
7+
version '1.3.0'
128

139
apply plugin: 'java'
1410
apply plugin: 'application'
@@ -24,16 +20,16 @@ repositories {
2420
}
2521

2622
dependencies {
27-
compile 'com.google.code.findbugs:jsr305:3.0.2'
28-
compile 'com.github.javaparser:javaparser-core:3.5.12'
29-
compile 'com.google.googlejavaformat:google-java-format:1.5'
30-
compile 'commons-cli:commons-cli:1.4'
31-
compile 'commons-io:commons-io:2.6'
32-
testCompile 'junit:junit:4.12'
23+
implementation 'com.google.code.findbugs:jsr305:3.0.2'
24+
implementation 'com.github.javaparser:javaparser-core:3.5.12'
25+
implementation 'com.google.googlejavaformat:google-java-format:1.5'
26+
implementation 'commons-cli:commons-cli:1.4'
27+
implementation 'commons-io:commons-io:2.6'
28+
testImplementation 'junit:junit:4.12'
3329
}
3430

3531
wrapper {
36-
gradleVersion '6.6.1'
32+
gradleVersion '7.5.1'
3733
distributionType 'all'
3834
}
3935

gradle/wrapper/gradle-wrapper.jar

6.28 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-7.5.1-all.zip
34
zipStoreBase=GRADLE_USER_HOME
45
zipStorePath=wrapper/dists
5-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-all.zip

0 commit comments

Comments
 (0)