My project do not use generated sources.

I made another test : I created a new workspace and imported just on
jar project (pom.xml file attached), and it run process-test-resources
continuously until I disable automatically build. The imported project
is clean : it has no target, .project or classpath.

After disable, if I re-enable automatic build, continuous build start.

Refreshing the project does nothing, continuous build continue.

On Tue, Aug 12, 2008 at 1:03 PM, Igor Fedorenko <[EMAIL PROTECTED]> wrote:
> Bouiaw wrote:
>>
>> Hi,
>>
>> I have tested this dev build. Duplicate entry error and resources copy
>> issues seems to be fixed, but I am not 100% sure since I did not
>> succeed to make it work with my company projects because of bug
>> MNGECLIPSE-839.
>
> Does any of your projects use generated sources? Also, can you refresh your
> projects from local filesystem (i.e. right-click, refresh), probably after
> restarting with autobuild off to make sure the build is not running?
>
>
>>
>> Please find bellow the 3 bugs I found on my projects :
>> - My projects (WAR project that depend on a JAR project) keeps on
>> running process-test-resources :
>> http://jira.codehaus.org/browse/MNGECLIPSE-839
>> - After an import maven project, unable to select the another project
>> to import : http://jira.codehaus.org/browse/MNGECLIPSE-840
>> - After a project import, JRE restriction generate some compilation
>> error : http://jira.codehaus.org/browse/MNGECLIPSE-841
>>
>> Regards,
>> Sébastien Deleuze
>>
>> On Tue, Aug 12, 2008 at 7:05 AM, Eugene Kuleshov <[EMAIL PROTECTED]> wrote:
>>>
>>>  We have published stable development build 0.9.6.20080811-2209, which
>>> can be installed from the dev update site at
>>> http://m2eclipse.sonatype.org/update-dev/
>>>
>>>  This build includes several bug fixes for the Form-based POM editor.
>>> See list of fixed issues in JIRA at http://tinyurl.com/6rhdwr
>>>
>>>  The most notable new feature is the content assist in POM XML editor for
>>> elements inside plugin's <configuration>.
>>>
>>>  New action "Show Dependency Hierarchy" is added to the Maven popup menu
>>> on
>>> "Maven Dependencies" container entries. It can be used to open selected
>>> dependency in the "Dependency Hierarchy" viewer.
>>>
>>>  You can see complete New and Noteworthy features for this and previous
>>> builds on the wiki at
>>> http://docs.codehaus.org/display/M2ECLIPSE/New+and+Noteworthy
>>>
>>>  As always, please don't hesitate to share your thoughts in the news
>>> group
>>> and mailing lists, submit bug reports to the project issue tracker [1]
>>> and
>>> contribute to project documentation on the wiki [2].
>>>
>>>  Thanks
>>>
>>>  m2eclipse team
>>>
>>> [1] http://jira.codehaus.org/browse/MNGECLIPSE
>>> [2] http://docs.codehaus.org/display/M2ECLIPSE
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe from this list, please visit:
>>>
>>>  http://xircles.codehaus.org/manage_email
>>>
>>>
>>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe from this list, please visit:
>>
>>    http://xircles.codehaus.org/manage_email
>>
>>
>
>
> ---------------------------------------------------------------------
> To unsubscribe from this list, please visit:
>
>   http://xircles.codehaus.org/manage_email
>
>
>
<?xml version="1.0" encoding="ISO-8859-1"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";>

	<modelVersion>4.0.0</modelVersion>
	
	<groupId>fr.customer</groupId>
	<artifactId>project-core</artifactId>
	<packaging>jar</packaging>
	<version>1.0-SNAPSHOT</version>
	<name>project-core</name>
	<description>
		Librairie project
	</description>
	
	<properties>
		<maven.test.failure.customerore>true</maven.test.failure.customerore>
		<env>LOCAL</env>
	</properties>

	
	<dependencies>
		<dependency>
			<groupId>org.springframework.security</groupId>
			<artifactId>spring-security-core</artifactId>
			<version>2.0.3</version>
		</dependency>
		<dependency>
			<groupId>org.springframework.security</groupId>
			<artifactId>spring-security-core-tiger</artifactId>
			<version>2.0.3</version>
		</dependency>
		<dependency>
		    <groupId>aspectj</groupId>
		    <artifactId>aspectjrt</artifactId>
		    <version>1.5.4</version>
		</dependency> 
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring</artifactId>
			<version>2.0.8</version>
		</dependency>
		<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
			<version>1.2.13</version>
	    </dependency>
		<dependency>
		    <groupId>junit</groupId>
		    <artifactId>junit</artifactId>
		    <version>3.8.2</version>
			<scope>test</scope>
		</dependency>
		<dependency>
        	<groupId>activemq</groupId>
            <artifactId>activemq</artifactId>
            <version>1.0-incubator</version>
        </dependency>
        <dependency>
		    <groupId>jasperreports</groupId>
		    <artifactId>jasperreports</artifactId>
		    <version>3.0.0</version>
		</dependency>
	</dependencies>
	
	
	<pluginRepositories>
		<pluginRepository>
			<id>repo1</id>
			<name>official repository</name>
			<url>http://repo1.maven.org/maven2</url>
			<releases>
				<enabled>true</enabled>
			</releases>
			<snapshots>
				<enabled>false</enabled>
			</snapshots>
		</pluginRepository>
		<pluginRepository>
			<id>Codehaus repository</id>
			<url>http://repository.codehaus.org/</url>
		</pluginRepository>
		
	</pluginRepositories>
	
	<build>
		<finalName>project-core</finalName>
		
		<resources>
		  <resource>
			<directory>src/main/resources</directory>
		  </resource>
		</resources>
		<testResources>
			<testResource>
				<directory>src/main/resources</directory>
			</testResource>
			<testResource>
				<directory>${test-config-dir}</directory>
			</testResource>
		</testResources>
		
		<!-- Stable plugin versions can be found on http://maven.apache.org/plugins/index.html -->
		<plugins>
			
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.0.2</version>
				<configuration>
						<source>1.5</source>
						<target>1.5</target>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-install-plugin</artifactId>
				<version>2.2</version>
			</plugin>
			<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-resources-plugin</artifactId>
					<version>2.2</version>
					<configuration>
							<encoding>UTF-8</encoding>
					</configuration>
			</plugin>
			<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-surefire-plugin</artifactId>
					<version>2.4.2</version>
			</plugin>
			<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-site-plugin</artifactId>
					<version>2.0-beta-7</version>
			</plugin>
		</plugins>
	</build>
	
	<reporting>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>2.3</version>
				<configuration>
					<minmemory>128m</minmemory>
					<maxmemory>512m</maxmemory>
					<encoding>UTF-8</encoding>
					<charset>UTF-8</charset>
					<docencoding>UTF-8</docencoding>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-checkstyle-plugin</artifactId>
				<version>2.1</version>
		        <configuration>
		          <configLocation>./checkstyle.xml</configLocation>
		        </configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-report-plugin</artifactId>
				 <version>2.4.2</version>
				 <configuration>
				 	<testFailurecustomerore>true</testFailurecustomerore>
				 </configuration>
            </plugin>
             <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-project-info-reports-plugin</artifactId>
                  <reportSets>
                    <reportSet>
                        <reports>
                            <report>scm</report>
                            <report>index</report>
                        </reports>
                    </reportSet>
                </reportSets>
            </plugin>
            
            <plugin>
				<groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-pmd-plugin</artifactId>
				<version>2.3</version>
				<configuration>
					<targetJdk>1.5</targetJdk>
				</configuration>
			</plugin>

		</plugins>
	</reporting>
	
</project>
---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email

Reply via email to