- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这可能很简单。我是一个 grails 新手,试图升级一个旧的 grails 测试工具。我正在运行的命令是:
grails stop-app;grails clean
但根据我看到的错误,我预计我也会在其他地方看到这些错误。我看到的错误是:
| Loading Grails 2.4.5
| Warning grailsRepo() method deprecated. Legacy Grails SVN repositories are not supported by Aether.
| Configuring classpath
| Error Resolve error obtaining dependencies: Could not transfer artifact org.springframework:spring-orm:jar:4.0.9.RELEASE from/to grailsCentral (https://repo.grails.org/grails/plugins): java.lang.RuntimeException: Unexpected error: java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty (Use --stacktrace to see the full trace)
| Error Resolve error obtaining dependencies: Could not transfer artifact org.springframework:spring-orm:jar:4.0.9.RELEASE from/to grailsCentral (https://repo.grails.org/grails/plugins): java.lang.RuntimeException: Unexpected error: java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty (Use --stacktrace to see the full trace)
| Error Could not transfer artifact org.springframework:spring-orm:jar:4.0.9.RELEASE from/to grailsCentral (https://repo.grails.org/grails/plugins): java.lang.RuntimeException: Unexpected error: java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty
| Run 'grails dependency-report' for further information.
我使用的BuildConfig.groovy在这里:
grails.servlet.version = "2.5" // Change depending on target container compliance (2.5 or 3.0)
grails.project.class.dir = "target/classes"
grails.project.test.class.dir = "target/test-classes"
grails.project.test.reports.dir = "target/test-reports"
grails.project.target.level = 1.8
grails.project.source.level = 1.8
grails.project.war.file = "target/war/${appName}.war"
grails.server.port.http=8027
grails.project.dependency.resolver = "maven"
grails.project.dependency.resolution = {
// inherit Grails' default dependencies
inherits("global") {
// specify dependency exclusions here; for example, uncomment this to disable ehcache:
// excludes 'ehcache'
}
log "verbose" // log level of Ivy resolver, either 'error', 'warn', 'info', 'debug' or 'verbose'
checksums true // Whether to verify checksums on resolve
repositories {
inherits true // Whether to inherit repository definitions from plugins
grailsPlugins()
grailsHome()
grailsCentral()
mavenLocal()
mavenCentral()
// uncomment these (or add new ones) to enable remote dependency resolution from public Maven repositories
mavenRepo "https://repo01.dev.redactedmedia.net/artifactory/libs-snapshot"
mavenRepo "https://repo01.dev.redactedmedia.net/artifactory/libs-release"
// mavenRepo "https://repo01.dev.redactedmedia.net/artifactory/ext-release-local"
mavenRepo "http://jcenter.bintray.com/joda-time/"
mavenRepo "https://repository.cloudera.com/artifactory/repo/org/javolution/javolution-core-java/6.0.0/"
mavenRepo "http://mvnrepository.com/artifact/"
mavenRepo "http://download.java.net/maven/2/"
mavenRepo "http://repository.jboss.com/maven2/"
mavenRepo "http://repo.spring.io/milestone/"
grailsRepo "https://grails.org/plugins"
//mavenRepo "http://snapshots.repository.codehaus.org"
//mavenRepo "http://repository.codehaus.org"
//mavenRepo "http://download.java.net/maven/2/"
//mavenRepo "http://repository.jboss.com/maven2/"
}
dependencies { // specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes eg.
runtime 'mysql:mysql-connector-java:5.1.20'
runtime 'joda-time:joda-time:1.6'
runtime ('org.xyzpdq:knowledge-api:5.6.0.Final'){transitive = false}
runtime ('org.xyzpdq:knowledge-internal-api:5.6.0.Final'){transitive = false}
runtime ('org.xyzpdq:xyzpdq-ant:5.6.0.Final'){transitive = false}
runtime ('org.xyzpdq:xyzpdq-compiler:5.6.0.Final'){transitive = false}
runtime ('org.xyzpdq:xyzpdq-core:5.6.0.Final'){transitive = false}
runtime ('org.xyzpdq:xyzpdq-tables:5.6.0.Final'){transitive = false}
runtime ('org.xyzpdq:xyzpdq-grid-impl:5.6.0.Final'){transitive = false}
runtime ('org.xyzpdq:xyzpdq-templates:5.6.0.Final'){transitive = false}
runtime ('org.mvel:mvel2:2.1.8.Final'){transitive = false}
runtime ('commons-collections:commons-collections:3.2'){transitive = false}
runtime ('com.pnw:pnw-fcommons:7.0.0-SNAPSHOT'){transitive = false}
runtime ('com.sun.xml.bind:jaxb-impl:2.2.6'){transitive = false}
runtime ('com.google.collections:google-collections:1.0'){transitive = false}
compile ('com.pnw:pnw-thingamajig:7.0.0-SNAPSHOT'){transitive = false}
compile ('com.pnw:pnw-mysterychickencontracts:7.0.0-SNAPSHOT'){transitive = false}
compile ('com.pnw:pnw-userdata:7.0.0-SNAPSHOT'){transitive = false}
compile ('com.pnw:pnw-rulesutils:7.0.0-SNAPSHOT'){transitive = false}
compile ('com.pnw:pnw-sterlingengine:7.0.0-SNAPSHOT'){transitive = false}
compile ('com.pnw:pnw-sterlingengine-schema:7.0.0-SNAPSHOT'){transitive = false}
compile ('com.pnw:pnw-domain:7.0.0-SNAPSHOT'){transitive = false}
compile ('com.pnw:pnw-sterlingenginecontent:7.0.0-SNAPSHOT'){transitive = false}
compile ('com.pnw:pnw-data:7.0.0-SNAPSHOT'){transitive = false}
compile ('org.easymock:easymock:3.1'){transitive = false}
compile ('com.pnw:pnw-utilities:7.0.0.0'){transitive = false}
compile ('org.javolution:javolution-core-java:6.2.0rc3'){transitive = true}
compile ('com.eaio.stringsearch:stringsearch:2'){transitive = false}
}
plugins {
runtime ':hibernate4:4.3.5.2' // or ':hibernate:3.6.10.14'
runtime ':jquery:1.11.0.2'
runtime ':resources:1.2.14'
// Uncomment these (or add new ones) to enable additional resources capabilities
//runtime ":zipped-resources:1.0"
//runtime ":cached-resources:1.0"
//runtime ":yui-minify-resources:0.1.4"
build ':tomcat:7.0.52.1'
runtime ':database-migration:1.4.0'
compile ':cache:1.1.3'
//compile ':scaffolding:2.0.1' // use latest version here
}
}
好的,这是按要求生成的依赖关系树转储。当然,它已被编辑。因此,如果 pnw 依赖项不匹配,那就是原因。
|Loading Grails 2.4.5
Warning |
grailsRepo() method deprecated. Legacy Grails SVN repositories are not supported by Aether.
|Configuring classpath
.
|Environment set to development
.
build - Dependencies for the build system only (total: 33)
+--- xalan:serializer:2.7.2
+--- org.grails:grails-bootstrap:2.4.5
| \--- org.slf4j:jcl-over-slf4j:1.7.5
| \--- org.slf4j:slf4j-api:1.7.5
| \--- jline:jline:2.12
| \--- org.apache.ant:ant:1.8.4
| \--- org.apache.ant:ant-launcher:1.8.4
| \--- org.codehaus.groovy:groovy-all:2.3.11
| \--- org.apache.ant:ant-trax:1.7.1
| \--- org.apache.ant:ant-junit:1.8.4
| \--- net.java.dev.jna:jna:4.0.0
| \--- org.codehaus.gant:gant_groovy1.8:1.9.6
| \--- org.apache.ivy:ivy:2.3.0
| \--- org.fusesource.jansi:jansi:1.11
+--- org.grails:grails-project-api:2.4.5
+--- org.grails:grails-scripts:2.4.5
+--- org.grails:grails-docs:2.4.5
| \--- org.xhtmlrenderer:core-renderer:R8
| \--- org.yaml:snakeyaml:1.8
| \--- org.grails:grails-gdoc-engine:1.0.1
| \--- org.jsoup:jsoup:1.7.3
| \--- com.lowagie:itext:2.0.8
| \--- bouncycastle:bcmail-jdk14:138
| \--- bouncycastle:bcprov-jdk14:138
| \--- commons-lang:commons-lang:2.6
+--- org.grails.plugins:tomcat:7.0.52.1
| \--- org.apache.tomcat:tomcat-catalina-ant:7.0.52
| \--- org.apache.tomcat.embed:tomcat-embed-jasper:7.0.52
| \--- org.apache.tomcat.embed:tomcat-embed-el:7.0.52
| \--- org.apache.tomcat.embed:tomcat-embed-logging-log4j:7.0.52
| \--- org.apache.tomcat.embed:tomcat-embed-websocket:7.0.52
| \--- org.eclipse.jdt.core.compiler:ecj:3.7.2
| \--- org.apache.tomcat.embed:tomcat-embed-core:7.0.52
provided - Dependencies needed at development time, but not during deployment (total: 1)
+--- javax.servlet:javax.servlet-api:3.0.1
compile - Dependencies placed on the classpath for compilation (total: 82)
+--- org.codehaus.groovy:groovy-all:2.3.11
+--- org.grails:grails-plugin-rest:2.4.5
| \--- org.grails:grails-plugin-controllers:2.4.5
| \--- org.grails:grails-async:2.4.5
| \--- org.codehaus.gpars:gpars:1.2.1
| \--- org.codehaus.jsr166-mirror:jsr166y:1.7.0
| \--- org.grails:grails-plugin-validation:2.4.5
| \--- org.slf4j:jcl-over-slf4j:1.7.5
| \--- org.slf4j:slf4j-api:1.7.5
| \--- com.google.code.gson:gson:2.2.4
| \--- org.grails:grails-plugin-datasource:2.4.5
| \--- org.springframework:spring-jdbc:4.0.9.RELEASE
| \--- org.springframework:spring-context:4.0.9.RELEASE
| \--- org.springframework:spring-aop:4.0.9.RELEASE
| \--- org.springframework:spring-expression:4.0.9.RELEASE
| \--- org.apache.tomcat:tomcat-jdbc:7.0.50
| \--- org.apache.tomcat:tomcat-juli:7.0.50
| \--- org.grails:grails-web:2.4.5
| \--- org.grails:grails-web-jsp:2.4.5
| \--- org.grails:grails-web-sitemesh:2.4.5
| \--- opensymphony:sitemesh:2.4
| \--- org.grails:grails-web-fileupload:2.4.5
| \--- commons-fileupload:commons-fileupload:1.3.1
| \--- commons-io:commons-io:2.2
| \--- org.grails:grails-web-gsp:2.4.5
| \--- org.grails:grails-web-url-mappings:2.4.5
| \--- org.grails:grails-web-common:2.4.5
| \--- org.springframework:spring-context-support:4.0.9.RELEASE
| \--- org.springframework:spring-webmvc:4.0.9.RELEASE
| \--- org.grails:grails-databinding:2.4.5
| \--- org.grails:grails-web-databinding:2.4.5
| \--- org.grails:grails-web-mvc:2.4.5
+--- org.grails:grails-plugin-databinding:2.4.5
| \--- org.grails:grails-core:2.4.5
| \--- org.springframework:spring-core:4.0.9.RELEASE
| \--- org.grails:grails-spring:2.4.5
| \--- org.grails:grails-bootstrap:2.4.5
| \--- aopalliance:aopalliance:1.0
| \--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final
| \--- org.springframework:spring-beans:4.0.9.RELEASE
+--- org.grails:grails-plugin-i18n:2.4.5
| \--- commons-lang:commons-lang:2.6
+--- org.grails:grails-plugin-filters:2.4.5
+--- org.grails:grails-plugin-gsp:2.4.5
| \--- org.grails:grails-web-gsp-taglib:2.4.5
| \--- org.grails:grails-logging:2.4.5
| \--- org.grails:grails-plugin-codecs:2.4.5
| \--- commons-codec:commons-codec:1.6
| \--- org.grails:grails-encoder:2.4.5
| \--- org.springframework:spring-web:4.0.9.RELEASE
+--- org.grails:grails-plugin-log4j:2.4.5
| \--- org.slf4j:jul-to-slf4j:1.7.5
+--- org.grails:grails-plugin-services:2.4.5
| \--- org.springframework:spring-tx:4.0.9.RELEASE
+--- org.grails:grails-plugin-servlets:2.4.5
+--- org.grails:grails-plugin-url-mappings:2.4.5
| \--- com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.4
| \--- org.grails:grails-validation:2.4.5
| \--- commons-validator:commons-validator:1.4.0
+--- com.pnw:pnw-jailoringfuels:7.0.0-SNAPSHOT
+--- com.pnw:pnw-fuelsdocuments:7.0.0-SNAPSHOT
+--- com.pnw:pnw-userdatacalculator:7.0.0-SNAPSHOT
+--- com.pnw:pnw-fuelsutils:7.0.0-SNAPSHOT
+--- com.pnw:pnw-confusionengine:7.0.0-SNAPSHOT
+--- com.pnw:pnw-confusionengine-schema:7.0.0-SNAPSHOT
+--- com.pnw:pnw-domain:7.0.0-SNAPSHOT
+--- com.pnw:pnw-confusionenginecontent:7.0.0-SNAPSHOT
+--- com.pnw:pnw-wierdodata:7.0.0-SNAPSHOT
+--- org.easymock:easymock:3.1
+--- com.pnw:pnw-utilities:7.0.0.0
+--- org.javolution:javolution-core-java:6.2.0rc3
+--- com.eaio.stringsearch:stringsearch:2
+--- org.grails.plugins:cache:1.1.3
| \--- org.grails.plugins:webxml:1.4.1
runtime - Dependencies needed at runtime but not for compilation (total: 127)
+--- org.codehaus.groovy:groovy-all:2.3.11
+--- org.grails:grails-plugin-rest:2.4.5
| \--- org.grails:grails-plugin-controllers:2.4.5
| \--- org.grails:grails-async:2.4.5
| \--- org.codehaus.gpars:gpars:1.2.1
| \--- org.codehaus.jsr166-mirror:jsr166y:1.7.0
| \--- org.grails:grails-plugin-validation:2.4.5
| \--- org.slf4j:jcl-over-slf4j:1.7.5
| \--- org.slf4j:slf4j-api:1.7.5
| \--- com.google.code.gson:gson:2.2.4
| \--- org.grails:grails-plugin-datasource:2.4.5
| \--- org.springframework:spring-jdbc:4.0.9.RELEASE
| \--- org.springframework:spring-context:4.0.9.RELEASE
| \--- org.springframework:spring-aop:4.0.9.RELEASE
| \--- org.springframework:spring-expression:4.0.9.RELEASE
| \--- org.apache.tomcat.embed:tomcat-embed-logging-log4j:7.0.50
| \--- org.apache.tomcat:tomcat-jdbc:7.0.50
| \--- org.apache.tomcat:tomcat-juli:7.0.50
| \--- org.grails:grails-web:2.4.5
| \--- org.grails:grails-web-jsp:2.4.5
| \--- org.grails:grails-web-sitemesh:2.4.5
| \--- opensymphony:sitemesh:2.4
| \--- org.grails:grails-web-fileupload:2.4.5
| \--- commons-fileupload:commons-fileupload:1.3.1
| \--- commons-io:commons-io:2.2
| \--- org.grails:grails-web-gsp:2.4.5
| \--- org.springframework:spring-aspects:4.0.9.RELEASE
| \--- org.grails:grails-web-url-mappings:2.4.5
| \--- org.grails:grails-web-common:2.4.5
| \--- org.springframework:spring-context-support:4.0.9.RELEASE
| \--- org.springframework:spring-webmvc:4.0.9.RELEASE
| \--- org.grails:grails-databinding:2.4.5
| \--- org.grails:grails-web-databinding:2.4.5
| \--- org.aspectj:aspectjrt:1.8.4
| \--- org.grails:grails-web-mvc:2.4.5
| \--- org.aspectj:aspectjweaver:1.8.4
+--- org.grails:grails-plugin-databinding:2.4.5
| \--- org.grails:grails-core:2.4.5
| \--- org.springframework:spring-core:4.0.9.RELEASE
| \--- xalan:serializer:2.7.2
| \--- org.grails:grails-spring:2.4.5
| \--- org.grails:grails-bootstrap:2.4.5
| \--- aopalliance:aopalliance:1.0
| \--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final
| \--- org.springframework:spring-beans:4.0.9.RELEASE
+--- org.grails:grails-plugin-i18n:2.4.5
| \--- commons-lang:commons-lang:2.6
+--- org.grails:grails-plugin-filters:2.4.5
+--- org.grails:grails-plugin-gsp:2.4.5
| \--- org.grails:grails-web-gsp-taglib:2.4.5
| \--- org.grails:grails-logging:2.4.5
| \--- org.grails:grails-plugin-codecs:2.4.5
| \--- commons-codec:commons-codec:1.6
| \--- org.grails:grails-encoder:2.4.5
| \--- org.springframework:spring-web:4.0.9.RELEASE
+--- org.grails:grails-plugin-log4j:2.4.5
| \--- org.slf4j:jul-to-slf4j:1.7.5
+--- org.grails:grails-plugin-services:2.4.5
| \--- org.springframework:spring-tx:4.0.9.RELEASE
+--- org.grails:grails-plugin-servlets:2.4.5
+--- org.grails:grails-plugin-url-mappings:2.4.5
| \--- com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.4
| \--- org.grails:grails-validation:2.4.5
| \--- commons-validator:commons-validator:1.4.0
+--- com.h2database:h2:1.3.176
+--- log4j:log4j:1.2.17
+--- org.grails:grails-resources:2.4.5
+--- mysql:mysql-connector-java:5.1.20
+--- joda-time:joda-time:1.6
+--- org.pools:knowledge-api:5.6.0.Final
+--- org.pools:knowledge-internal-api:5.6.0.Final
+--- org.pools:drools-ant:5.6.0.Final
+--- org.pools:drools-compiler:5.6.0.Final
+--- org.pools:drools-core:5.6.0.Final
+--- org.pools:drools-decisiontables:5.6.0.Final
+--- org.pools:drools-grid-impl:5.6.0.Final
+--- org.pools:drools-templates:5.6.0.Final
+--- org.mvel:mvel2:2.1.8.Final
+--- commons-collections:commons-collections:3.2
+--- com.pnw:pnw-confusionenginecommons:7.0.0-SNAPSHOT
+--- com.sun.xml.bind:jaxb-impl:2.2.6
+--- com.google.collections:google-collections:1.0
+--- com.pnw:pnw-jailoringfuels:7.0.0-SNAPSHOT
+--- com.pnw:pnw-fuelsdocuments:7.0.0-SNAPSHOT
+--- com.pnw:pnw-userdatacalculator:7.0.0-SNAPSHOT
+--- com.pnw:pnw-fuelsutils:7.0.0-SNAPSHOT
+--- com.pnw:pnw-confusionengine:7.0.0-SNAPSHOT
+--- com.pnw:pnw-confusionengine-schema:7.0.0-SNAPSHOT
+--- com.pnw:pnw-domain:7.0.0-SNAPSHOT
+--- com.pnw:pnw-confusionenginecontent:7.0.0-SNAPSHOT
+--- com.pnw:pnw-wierdodata:7.0.0-SNAPSHOT
+--- org.easymock:easymock:3.1
+--- com.pnw:pnw-utilities:7.0.0.0
+--- org.javolution:javolution-core-java:6.2.0rc3
+--- com.eaio.stringsearch:stringsearch:2
+--- org.grails.plugins:hibernate4:4.3.5.2
| \--- org.hibernate:hibernate-ehcache:4.3.5.Final
| \--- org.jboss.logging:jboss-logging-annotations:1.2.0.Beta1
| \--- org.hibernate:hibernate-core:4.3.5.Final
| \--- org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.0.0.Final
| \--- antlr:antlr:2.7.7
| \--- org.jboss:jandex:1.1.0.Final
| \--- org.hibernate:hibernate-validator:5.0.3.Final
| \--- com.fasterxml:classmate:1.0.0
| \--- net.sf.ehcache:ehcache-core:2.4.8
| \--- org.jboss.logging:jboss-logging:3.1.0.GA
| \--- org.grails:grails-datastore-core:3.1.0.RELEASE
| \--- org.javassist:javassist:3.17.1-GA
| \--- javax.transaction:jta:1.1
| \--- org.grails:grails-datastore-gorm:3.1.0.RELEASE
| \--- org.grails:grails-datastore-gorm-hibernate4:3.1.0.RELEASE
| \--- org.hibernate.common:hibernate-commons-annotations:4.0.4.Final
| \--- org.grails:grails-datastore-gorm-hibernate-core:3.1.0.RELEASE
| \--- org.grails:grails-datastore-gorm-plugin-support:3.1.0.RELEASE
| \--- org.springframework:spring-orm:4.0.9.RELEASE
| \--- dom4j:dom4j:1.6.1
| \--- org.grails:grails-datastore-simple:3.1.0.RELEASE
| \--- javax.validation:validation-api:1.1.0.Final
+--- org.grails.plugins:jquery:1.11.0.2
+--- org.grails.plugins:resources:1.2.14
+--- org.grails.plugins:database-migration:1.4.0
| \--- org.liquibase:liquibase-core:2.0.5
+--- org.grails.plugins:cache:1.1.3
| \--- org.grails.plugins:webxml:1.4.1
test - Dependencies needed for test compilation and execution but not at runtime (total: 144)
+--- javax.servlet:javax.servlet-api:3.0.1
+--- org.codehaus.groovy:groovy-all:2.3.11
+--- org.grails:grails-plugin-rest:2.4.5
| \--- org.grails:grails-plugin-controllers:2.4.5
| \--- org.grails:grails-async:2.4.5
| \--- org.codehaus.gpars:gpars:1.2.1
| \--- org.codehaus.jsr166-mirror:jsr166y:1.7.0
| \--- org.grails:grails-plugin-validation:2.4.5
| \--- org.slf4j:jcl-over-slf4j:1.7.5
| \--- org.slf4j:slf4j-api:1.7.5
| \--- com.google.code.gson:gson:2.2.4
| \--- org.grails:grails-plugin-datasource:2.4.5
| \--- org.springframework:spring-jdbc:4.0.9.RELEASE
| \--- org.springframework:spring-context:4.0.9.RELEASE
| \--- org.springframework:spring-aop:4.0.9.RELEASE
| \--- org.springframework:spring-expression:4.0.9.RELEASE
| \--- org.apache.tomcat.embed:tomcat-embed-logging-log4j:7.0.50
| \--- org.apache.tomcat:tomcat-jdbc:7.0.50
| \--- org.apache.tomcat:tomcat-juli:7.0.50
| \--- org.grails:grails-web:2.4.5
| \--- org.grails:grails-web-jsp:2.4.5
| \--- org.grails:grails-web-sitemesh:2.4.5
| \--- opensymphony:sitemesh:2.4
| \--- org.grails:grails-web-fileupload:2.4.5
| \--- commons-fileupload:commons-fileupload:1.3.1
| \--- commons-io:commons-io:2.2
| \--- org.grails:grails-web-gsp:2.4.5
| \--- org.springframework:spring-aspects:4.0.9.RELEASE
| \--- org.grails:grails-web-url-mappings:2.4.5
| \--- org.grails:grails-web-common:2.4.5
| \--- org.springframework:spring-context-support:4.0.9.RELEASE
| \--- org.springframework:spring-webmvc:4.0.9.RELEASE
| \--- org.grails:grails-databinding:2.4.5
| \--- org.grails:grails-web-databinding:2.4.5
| \--- org.aspectj:aspectjrt:1.8.4
| \--- org.grails:grails-web-mvc:2.4.5
| \--- org.aspectj:aspectjweaver:1.8.4
+--- org.grails:grails-plugin-databinding:2.4.5
| \--- org.grails:grails-core:2.4.5
| \--- org.springframework:spring-core:4.0.9.RELEASE
| \--- xalan:serializer:2.7.2
| \--- org.grails:grails-spring:2.4.5
| \--- org.grails:grails-bootstrap:2.4.5
| \--- aopalliance:aopalliance:1.0
| \--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final
| \--- org.springframework:spring-beans:4.0.9.RELEASE
+--- org.grails:grails-plugin-i18n:2.4.5
| \--- commons-lang:commons-lang:2.6
+--- org.grails:grails-plugin-filters:2.4.5
+--- org.grails:grails-plugin-gsp:2.4.5
| \--- org.grails:grails-web-gsp-taglib:2.4.5
| \--- org.grails:grails-logging:2.4.5
| \--- org.grails:grails-plugin-codecs:2.4.5
| \--- commons-codec:commons-codec:1.6
| \--- org.grails:grails-encoder:2.4.5
| \--- org.springframework:spring-web:4.0.9.RELEASE
+--- org.grails:grails-plugin-log4j:2.4.5
| \--- org.slf4j:jul-to-slf4j:1.7.5
+--- org.grails:grails-plugin-services:2.4.5
| \--- org.springframework:spring-tx:4.0.9.RELEASE
+--- org.grails:grails-plugin-servlets:2.4.5
+--- org.grails:grails-plugin-url-mappings:2.4.5
| \--- com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.4
| \--- org.grails:grails-validation:2.4.5
| \--- commons-validator:commons-validator:1.4.0
+--- org.grails:grails-plugin-testing:2.4.5
| \--- org.grails:grails-plugin-domain-class:2.4.5
| \--- org.grails:grails-test:2.4.5
| \--- org.grails:grails-project-api:2.4.5
| \--- org.apache.ant:ant:1.8.4
| \--- org.apache.ant:ant-launcher:1.8.4
| \--- jline:jline:2.12
| \--- org.codehaus.gant:gant_groovy1.8:1.9.6
| \--- org.fusesource.jansi:jansi:1.11
| \--- org.objenesis:objenesis:1.4
| \--- org.grails:grails-plugin-converters:2.4.5
| \--- org.grails:grails-plugin-mimetypes:2.4.5
| \--- cglib:cglib:2.2.2
| \--- asm:asm:3.3.1
| \--- org.springframework:spring-test:4.0.9.RELEASE
+--- org.spockframework:spock-core:0.7-groovy-2.0
| \--- org.hamcrest:hamcrest-core:1.3
+--- cglib:cglib-nodep:2.2.2
+--- junit:junit:4.11
+--- com.h2database:h2:1.3.176
+--- log4j:log4j:1.2.17
+--- org.grails:grails-resources:2.4.5
+--- mysql:mysql-connector-java:5.1.20
+--- joda-time:joda-time:1.6
+--- org.pools:knowledge-api:5.6.0.Final
+--- org.pools:knowledge-internal-api:5.6.0.Final
+--- org.pools:drools-ant:5.6.0.Final
+--- org.pools:drools-compiler:5.6.0.Final
+--- org.pools:drools-core:5.6.0.Final
+--- org.pools:drools-decisiontables:5.6.0.Final
+--- org.pools:drools-grid-impl:5.6.0.Final
+--- org.pools:drools-templates:5.6.0.Final
+--- org.mvel:mvel2:2.1.8.Final
+--- commons-collections:commons-collections:3.2
+--- com.pnw:pnw-confusionenginecommons:7.0.0-SNAPSHOT
+--- com.sun.xml.bind:jaxb-impl:2.2.6
+--- com.google.collections:google-collections:1.0
+--- com.pnw:pnw-jailoringfuels:7.0.0-SNAPSHOT
+--- com.pnw:pnw-fuelsdocuments:7.0.0-SNAPSHOT
+--- com.pnw:pnw-userdatacalculator:7.0.0-SNAPSHOT
+--- com.pnw:pnw-fuelsutils:7.0.0-SNAPSHOT
+--- com.pnw:pnw-confusionengine:7.0.0-SNAPSHOT
+--- com.pnw:pnw-confusionengine-schema:7.0.0-SNAPSHOT
+--- com.pnw:pnw-domain:7.0.0-SNAPSHOT
+--- com.pnw:pnw-confusionenginecontent:7.0.0-SNAPSHOT
+--- com.pnw:pnw-wierdoantdata:7.0.0-SNAPSHOT
+--- org.easymock:easymock:3.1
+--- com.pnw:pnw-utilities:7.0.0.0
+--- org.javolution:javolution-core-java:6.2.0rc3
+--- com.eaio.stringsearch:stringsearch:2
+--- org.grails.plugins:hibernate4:4.3.5.2
| \--- org.hibernate:hibernate-ehcache:4.3.5.Final
| \--- org.jboss.logging:jboss-logging-annotations:1.2.0.Beta1
| \--- org.hibernate:hibernate-core:4.3.5.Final
| \--- org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.0.0.Final
| \--- antlr:antlr:2.7.7
| \--- org.jboss:jandex:1.1.0.Final
| \--- org.hibernate:hibernate-validator:5.0.3.Final
| \--- com.fasterxml:classmate:1.0.0
| \--- net.sf.ehcache:ehcache-core:2.4.8
| \--- org.jboss.logging:jboss-logging:3.1.0.GA
| \--- org.grails:grails-datastore-core:3.1.0.RELEASE
| \--- org.javassist:javassist:3.17.1-GA
| \--- javax.transaction:jta:1.1
| \--- org.grails:grails-datastore-gorm:3.1.0.RELEASE
| \--- org.grails:grails-datastore-gorm-hibernate4:3.1.0.RELEASE
| \--- org.hibernate.common:hibernate-commons-annotations:4.0.4.Final
| \--- org.grails:grails-datastore-gorm-hibernate-core:3.1.0.RELEASE
| \--- org.grails:grails-datastore-gorm-plugin-support:3.1.0.RELEASE
| \--- org.springframework:spring-orm:4.0.9.RELEASE
| \--- dom4j:dom4j:1.6.1
| \--- org.grails:grails-datastore-simple:3.1.0.RELEASE
| \--- javax.validation:validation-api:1.1.0.Final
+--- org.grails.plugins:jquery:1.11.0.2
+--- org.grails.plugins:resources:1.2.14
+--- org.grails.plugins:database-migration:1.4.0
| \--- org.liquibase:liquibase-core:2.0.5
+--- org.grails.plugins:cache:1.1.3
| \--- org.grails.plugins:webxml:1.4.1
最佳答案
首先使用此存储库:
mavenRepo "http://repo.grails.org/grails/repo"
关于java - Grails 2.4.5 依赖项解析错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40090985/
我已经使用 vue-cli 两个星期了,直到今天一切正常。我在本地建立这个项目。 https://drive.google.com/open?id=0BwGw1zyyKjW7S3RYWXRaX24tQ
您好,我正在尝试使用 python 库 pytesseract 从图像中提取文本。请找到代码: from PIL import Image from pytesseract import image_
我的错误 /usr/bin/ld: errno: TLS definition in /lib/libc.so.6 section .tbss mismatches non-TLS reference
我已经训练了一个模型,我正在尝试使用 predict函数但它返回以下错误。 Error in contrasts<-(*tmp*, value = contr.funs[1 + isOF[nn]])
根据Microsoft DataConnectors的信息我想通过 this ODBC driver 创建一个从 PowerBi 到 PostgreSQL 的连接器使用直接查询。我重用了 Micros
我已经为 SoundManagement 创建了一个包,其中有一个扩展 MediaPlayer 的类。我希望全局控制这个变量。这是我的代码: package soundmanagement; impo
我在Heroku上部署了一个应用程序。我正在使用免费服务。 我经常收到以下错误消息。 PG::Error: ERROR: out of memory 如果刷新浏览器,就可以了。但是随后,它又随机发生
我正在运行 LAMP 服务器,这个 .htaccess 给我一个 500 错误。其作用是过滤关键字并重定向到相应的域名。 Options +FollowSymLinks RewriteEngine
我有两个驱动器 A 和 B。使用 python 脚本,我在“A”驱动器中创建一些文件,并运行 powerscript,该脚本以 1 秒的间隔将驱动器 A 中的所有文件复制到驱动器 B。 我在 powe
下面的函数一直返回这个错误信息。我认为可能是 double_precision 字段类型导致了这种情况,我尝试使用 CAST,但要么不是这样,要么我没有做对...帮助? 这是错误: ERROR: i
这个问题已经有答案了: Syntax error due to using a reserved word as a table or column name in MySQL (1 个回答) 已关闭
我的数据库有这个小问题。 我创建了一个表“articoli”,其中包含商品的品牌、型号和价格。 每篇文章都由一个 id (ID_ARTICOLO)` 定义,它是一个自动递增字段。 好吧,现在当我尝试插
我是新来的。我目前正在 DeVry 在线学习中级 C++ 编程。我们正在使用 C++ Primer Plus 这本书,到目前为止我一直做得很好。我的老师最近向我们扔了一个曲线球。我目前的任务是这样的:
这个问题在这里已经有了答案: What is an undefined reference/unresolved external symbol error and how do I fix it?
我的网站中有一段代码有问题;此错误仅发生在 Internet Explorer 7 中。 我没有在这里发布我所有的 HTML/CSS 标记,而是发布了网站的一个版本 here . 如您所见,我在列中有
如果尝试在 USB 设备上构建 node.js 应用程序时在我的树莓派上使用 npm 时遇到一些问题。 package.json 看起来像这样: { "name" : "node-todo",
在 Python 中,您有 None单例,在某些情况下表现得很奇怪: >>> a = None >>> type(a) >>> isinstance(a,None) Traceback (most
这是我的 build.gradle (Module:app) 文件: apply plugin: 'com.android.application' android { compileSdkV
我是 android 的新手,我的项目刚才编译和运行正常,但在我尝试实现抽屉导航后,它给了我这个错误 FAILURE: Build failed with an exception. What wen
谁能解释一下?我想我正在做一些非常愚蠢的事情,并且急切地等待着启蒙。 我得到这个输出: phpversion() == 7.2.25-1+0~20191128.32+debian8~1.gbp108
我是一名优秀的程序员,十分优秀!