maven-eclipse-plugin 与aspectj

问题1:最近一段时间以来,项目中使用maven-eclipse-plugin的eclipse:eclipse目标时比较恼人。pom里已经加入了aspectj的依赖,但生成的.classpath里却没有相应的classpathentry。
白衣提供的解决方法是:设置ajdtVersion为none
<!-- Eclipse plugin -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-eclipse-plugin</artifactId>
				<version>2.7</version>
				<configuration>
					<sourceExcludes>
						<sourceExclude>**/.svn/</sourceExclude>
					</sourceExcludes>
					<downloadSources>true</downloadSources>
					<ajdtVersion>none</ajdtVersion>
				</configuration>
			</plugin>

网上找了下,理由是:eclipse中自带了aspectj,因此pom中即使设置了aspectj的dependency,实际的运行lib里面也不会出现。需要把上面的ajdtVersion参数设置成none。
虽然这理由很牵强,说不定哪天又会出现个什么自带的,看来最好的解决方法是建议maven提供一个<allVersion>none</allVersion>。
同样的项目,ss3ex2.5版本就没有这种情况存在,我在里面同样也写了声明式缓存,所以说这个理由很是牵强。
还有一种解决方案是:手工的在eclipse中的项目中加入依赖包,但是这给ss3ex提供了一些不便。为了确保大家用的方便,还是采用了白衣的办法。
对于ss3ex2.5版本就没有这种情况存在的原因,我正在找原因。问此问题怎么解决?
问题2:ss3ex是在ubuntu9.1下搭建的,同样适合windows,在linux系统中,<sourceExclude>**/.svn/</sourceExclude>标签不起作用,但是win下有效。问:此问题如何解决?
问题3:pom文件中加入
<!-- clean插件-->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-clean-plugin</artifactId>
				<version>2.4</version>
			</plugin>

			<!-- install插件-->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-install-plugin</artifactId>
				<version>2.3</version>
			</plugin>
和不加入这些插件有什么区别,经过尝试,在win下,是执行mvn clean,不能够删除类似eclipse的环境文件,但是在linux环境下,能清除得非常干净,这个问题,又怎么解决?
开发环境是:用的是伽利略版本的eclipse。

你可能感兴趣的:(apache,eclipse,maven,linux,SVN)