Skip to content

Commit b6aaf2e

Browse files
committed
devops
1 parent 28f0443 commit b6aaf2e

File tree

4 files changed

+7
-19
lines changed

4 files changed

+7
-19
lines changed

build.gradle

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,17 @@
1-
/*
2-
* This file was generated by the Gradle 'init' task.
3-
*
4-
* This generated file contains a sample Java project to get you started.
5-
* For more details take a look at the Java Quickstart chapter in the Gradle
6-
* User Manual available at https://docs.gradle.org/5.6.1/userguide/tutorial_java_projects.html
7-
*/
8-
91
plugins {
10-
// Apply the java plugin to add support for Java
112
id 'java'
12-
13-
// Apply the application plugin to add support for building a CLI application
143
id 'application'
154
}
165

176
repositories {
18-
// Use jcenter for resolving dependencies.
19-
// You can declare any Maven/Ivy/file repository here.
207
jcenter()
218
}
229

2310
dependencies {
24-
// This dependency is used by the application.
2511
implementation 'com.google.guava:guava:28.0-jre'
26-
27-
// Use JUnit test framework
2812
testImplementation 'junit:junit:4.12'
2913
}
3014

3115
application {
32-
// Define the main class for the application
3316
mainClassName = 'org.woehlke.simulation.dla.DiffusionLimitedAggregationDesktop'
3417
}
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
#Thu Mar 05 22:57:21 CET 2020
2+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.2.2-all.zip
13
distributionBase=GRADLE_USER_HOME
24
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.2.2-bin.zip
4-
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6+
zipStoreBase=GRADLE_USER_HOME

run.cmd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
./gradlew clean run

run.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/usr/bin/env zsh
2+
3+
./gradlew clean run

0 commit comments

Comments
 (0)