-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
bin | ||
.settings | ||
.classpath | ||
.project | ||
build | ||
.gradle |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
image: gradle:alpine | ||
|
||
variables: | ||
GRADLE_OPTS: "-Dorg.gradle.daemon=false" | ||
|
||
before_script: | ||
- export GRADLE_USER_HOME=`pwd`/.gradle | ||
|
||
build: | ||
stage: build | ||
script: gradle --build-cache assemble | ||
artifacts: | ||
paths: | ||
- build/libs/*.jar | ||
cache: | ||
key: "$CI_COMMIT_REF_NAME" | ||
policy: push | ||
paths: | ||
- build | ||
- .gradle | ||
|
||
test: | ||
stage: test | ||
script: gradle check | ||
cache: | ||
key: "$CI_COMMIT_REF_NAME" | ||
policy: pull | ||
paths: | ||
- build | ||
- .gradle |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
GabãoClicker | ||
========== | ||
|
||
Requisitos para rodar | ||
------------ | ||
- Java 8.0 | ||
- Linux, Mac OS X, Windows | ||
- 4MB | ||
|
||
Motivo para a criação | ||
---------------------------------------------------- | ||
- Eu e o meu amigo **Daans1** queriamos realiziar alguns testes então clonamos um código de autoclicker antigo e alteramos grande parte do código para realização dos mesmos | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
plugins { | ||
id 'java' | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
} | ||
|
||
dependencies { | ||
implementation 'com.intellij:forms_rt:7.0.3' | ||
implementation 'com.github.kwhat:jnativehook:2.2.2' | ||
} | ||
|
||
sourceSets { | ||
main { | ||
java { | ||
srcDirs = ['src'] | ||
} | ||
} | ||
} | ||
|
||
jar { | ||
manifest { | ||
attributes("Main-Class": "me.thiagogebrim.gabaoclicker.Start") | ||
} | ||
from { | ||
configurations.compileClasspath.collect { it.isDirectory() ? it : zipTree(it) } | ||
} | ||
} | ||
|
||
//noinspection GroovyUnusedAssignment | ||
sourceCompatibility = '1.8' | ||
//noinspection GroovyUnusedAssignment | ||
targetCompatibility = '1.8' | ||
|
||
tasks.withType(JavaCompile) { | ||
options.encoding = 'UTF-8' | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |