Skip to content

Commit

Permalink
Moved files.
Browse files Browse the repository at this point in the history
  • Loading branch information
anlun committed Mar 10, 2016
1 parent 91a09ba commit 771a6df
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,20 +25,20 @@ dependencies {
sourceSets {
main {
kotlin {
srcDir 'src'
srcDir 'src/main'
}
}
test {
kotlin {
srcDir 'test'
srcDir 'src/test'
}
}
}

idea.module {
name = "parserCombinators"
sourceDirs += file('src')
testSourceDirs += file('test')
sourceDirs += file('src/main')
testSourceDirs += file('src/test')
}

task setup {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package podkopaev.net
package net.podkopaev

import java.util.*

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package podkopaev.net
package net.podkopaev

import org.junit.Assert
import org.junit.Test
Expand Down

0 comments on commit 771a6df

Please sign in to comment.