我一直在尝试将 spring-aspects 编译到 Gradle 应用程序中。
我首先试图让 Vaadin Spring 集成工作并复制 vaadin-6-spring-3-integration-2/] 1和Vaadin Spring Integration,当我从 Gradle 运行应用程序时,使用来自https://github的确切任务.com/SpringSource/spring-framework/blob/master/spring-aspects/aspects.gradle没有任何东西被自动装配(一切都是空的)。我也试过这个版本:' https://raw.github.com/breskeby/gradleplugins/0.9-upgrade/aspectjPlugin/aspectJ.gradle '我还使用了gradle-1-0-spring-aspectj-上的更新版本构建问题,但除了 Maven 插件之外,似乎没有任何东西可以与 spring-aspects 编译时间编织一起使用。这是我上次使用的 Gradle 任务:
task compileJava(dependsOn: JavaPlugin.PROCESS_RESOURCES_TASK_NAME, overwrite: true) {
dependsOn configurations.ajc.getTaskDependencyFromProjectDependency(true, "compileJava")
doLast{
ant.taskdef( resource:"org/aspectj/tools/ant/taskdefs/aspectjTaskdefs.properties", classpath: configurations.ajc.asPath)
ant.iajc(source:sourceCompatibility, target:targetCompatibility, destDir:sourceSets.main.output.classesDir.absolutePath, maxmem:"512m", fork:"true",
aspectPath:configurations.aspects.asPath, inpath:configurations.ajInpath.asPath, sourceRootCopyFilter:"**/.svn/*,**/*.java",classpath:configurations.compile.asPath){
sourceroots{
sourceSets.main.java.srcDirs.each{
pathelement(location:it.absolutePath)
}
}
}
}
}
然后当我创建一个 Maven pom 来使用以下插件时:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>${aspectj-maven-plugin.version}</version>
<configuration>
<!-- Required as the plugin does not resolve this by default -->
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
<aspectLibraries>
<aspectLibrary>
<groupId>org.springframework</groupId>
<artifactId>spring-aspects</artifactId>
</aspectLibrary>
</aspectLibraries>
</configuration>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
</plugin>
该应用程序是自动装配好的。
任何人都可以帮助 Gradle 工作吗?