Ignore *.class in source.

This commit is contained in:
Erik C. Thauvin 2018-07-03 21:24:47 -07:00
parent 301a6afb0e
commit abe1ca269c
7 changed files with 7 additions and 6 deletions

View file

@ -3,6 +3,7 @@
**/.idea/libraries **/.idea/libraries
**/.idea/tasks.xml **/.idea/tasks.xml
**/.idea/workspace.xml **/.idea/workspace.xml
**/src/*.class
*.sublime-* *.sublime-*
*.iws *.iws
.classpath .classpath

View file

@ -3,8 +3,9 @@
**/.idea/libraries **/.idea/libraries
**/.idea/tasks.xml **/.idea/tasks.xml
**/.idea/workspace.xml **/.idea/workspace.xml
*.sublime-* **/src/*.class
*.iws *.iws
*.sublime-*
.classpath .classpath
.DS_Store .DS_Store
.gradle .gradle

View file

@ -11,8 +11,6 @@ plugins {
mainClassName = 'App' mainClassName = 'App'
compileJava.options.annotationProcessorGeneratedSourcesDirectory = file("${projectDir}/src/generated")
defaultTasks 'run' defaultTasks 'run'
dependencies { dependencies {

Binary file not shown.

View file

@ -1,7 +1,7 @@
#Generated by the Semver Plugin for Gradle #Generated by the Semver Plugin for Gradle
#Tue Jul 03 12:00:25 PDT 2018 #Tue Jul 03 21:18:17 PDT 2018
version.prerelease= version.prerelease=
version.minor=0
version.buildmeta= version.buildmeta=
version.patch=2 version.patch=2
version.major=1 version.major=1
version.minor=0

View file

@ -3,6 +3,7 @@
**/.idea/libraries **/.idea/libraries
**/.idea/tasks.xml **/.idea/tasks.xml
**/.idea/workspace.xml **/.idea/workspace.xml
**/src/*.class
*.iws *.iws
*.properties *.properties
*.sublime-* *.sublime-*

View file

@ -1,4 +1,4 @@
f = new File("K:\\kotlin\\semver-gradle\\examples\\test\\examples.properties") f = new File("examples.properties")
println(f.absoluteFile) println(f.absoluteFile)
println(f.exists()) println(f.exists())
println(f.canRead()) println(f.canRead())