1
0
Fork 0
mirror of https://github.com/ethauvin/JSON-java.git synced 2025-06-17 07:50:52 -07:00

Moves src folder to simplify build.gradle configuration. If JSON-Java source is merged, it's src fold would now be src/main/java/org.json/ instead of src/main/org.json as well.

This commit is contained in:
John J. Aylward 2016-06-16 12:20:54 -04:00
parent 0e0f3f2167
commit 80f9e48e64
25 changed files with 8 additions and 15 deletions

6
.gitignore vendored
View file

@ -3,3 +3,9 @@ build
.classpath
.project
.settings/
/.gradle/
/gradle/
/gradlew
/gradlew.bat
.gitmodules
src/main/

View file

@ -4,21 +4,8 @@ apply plugin: 'jacoco'
sourceSets {
// Uncomment main if you have merged JSON-Java and JSON-Java-unit-test code
main {
java {
srcDir 'src'
exclude 'test/'
}
}
test {
java {
srcDir 'src/test'
exclude 'resources/'
}
resources {
srcDir 'resources'
}
}
main
test
}
repositories {