Skip to content

Commit

Permalink
Update project configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
noties committed Nov 23, 2022
1 parent 3ce8116 commit 0534b3c
Show file tree
Hide file tree
Showing 7 changed files with 250 additions and 150 deletions.
18 changes: 18 additions & 0 deletions .run/Enhance.run.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Enhance" type="Application" factoryName="Application" nameIsGenerated="true">
<option name="ALTERNATIVE_JRE_PATH" value="azul-13" />
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="true" />
<option name="MAIN_CLASS_NAME" value="ru.noties.enhance.Enhance" />
<module name="enhance.main" />
<option name="PROGRAM_PARAMETERS" value="-sdk 33 -format google" />
<extension name="coverage">
<pattern>
<option name="PATTERN" value="ru.noties.enhance.*" />
<option name="ENABLED" value="true" />
</pattern>
</extension>
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
</component>
26 changes: 11 additions & 15 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:6.0.0'
}
plugins {
id 'com.github.johnrengelman.shadow' version '7.1.2'
id 'java'
}

group 'ru.noties'
version '1.2.0'
version '1.3.0'

apply plugin: 'java'
apply plugin: 'application'
Expand All @@ -24,16 +20,16 @@ repositories {
}

dependencies {
compile 'com.google.code.findbugs:jsr305:3.0.2'
compile 'com.github.javaparser:javaparser-core:3.5.12'
compile 'com.google.googlejavaformat:google-java-format:1.5'
compile 'commons-cli:commons-cli:1.4'
compile 'commons-io:commons-io:2.6'
testCompile 'junit:junit:4.12'
implementation 'com.google.code.findbugs:jsr305:3.0.2'
implementation 'com.github.javaparser:javaparser-core:3.5.12'
implementation 'com.google.googlejavaformat:google-java-format:1.5'
implementation 'commons-cli:commons-cli:1.4'
implementation 'commons-io:commons-io:2.6'
testImplementation 'junit:junit:4.12'
}

wrapper {
gradleVersion '6.6.1'
gradleVersion '7.5.1'
distributionType 'all'
}

Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-all.zip
Loading

0 comments on commit 0534b3c

Please sign in to comment.