Skip to content

Commit affbbcb

Browse files
committed
fixed paths
1 parent df62445 commit affbbcb

File tree

6 files changed

+253
-254
lines changed

6 files changed

+253
-254
lines changed

Diff for: grails-app/conf/BuildConfig.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ grails.project.dependency.resolution = {
3333
// not using ivy currently because of https://issues.apache.org/jira/browse/IVY-933 resolution of the 0.98 version fails
3434
// runtime 'com.google.code.morphia:morphia:0.98'
3535
// runtime 'com.google.code.morphia:logging-slf4j:0.98'
36-
runtime 'org.mongodb:mongo-java-driver:2.7.+'
36+
compile 'org.mongodb:mongo-java-driver:2.7.+'
3737
}
3838

3939
}

Diff for: plugin.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
<repository name='mavenCentral' url='http://repo1.maven.org/maven2/' />
2121
</repositories>
2222
<dependencies>
23-
<runtime>
23+
<compile>
2424
<dependency group='org.mongodb' name='mongo-java-driver' version='2.7.+' />
25-
</runtime>
25+
</compile>
2626
</dependencies>
2727
<plugins />
2828
<runtimePluginRequirements>

Diff for: scripts/BuildAst.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ includeTargets << grailsScript("_GrailsCompile")
2727

2828

2929
target ('default': "Builds the ast jar to be bundled with the plugin") {
30-
def mongoAstSrcDir = new File("${mongodbMorphiaPluginDir}/src/groovy/grails/plugins/mongodb/ast")
30+
def mongoAstSrcDir = new File("${mongodbMorphiaPluginDir}/src/ast/grails/plugins/mongodb/ast")
3131
def mongoAstBuildDir = new File(grailsSettings.pluginBuildClassesDir, "ast")
3232
def mongoAstDestDir = new File(grailsSettings.baseDir, "lib")
3333

Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
grails.plugins.mongodb.ast.MongoDomainASTTransformation
1+
grails.plugins.mongodb.ast.MongoDomainASTTransformation

0 commit comments

Comments
 (0)