Hi, Yoav!

Sorry for not mention these important informations on the first email.

Maven: apache-maven-3.0-beta-1
Artifactory: 2.2.3 (with the fix of the
http://issues.jfrog.org/jira/browse/RTFACT-3147 you provided for me, thanks
again hehe)

I tried to deploy both releases and snapshots, actually every deploy I tried
failed :<( As this problem is not affecting any specific project, I don't
believe a mini project will help you, but I could make one if you really
need, just ask me. I'm attaching the pom of one of the projects I tried.

Thanks,

On Mon, Jul 19, 2010 at 19:50, Yoav Landman <[email protected]> wrote:

> Hi Bruno,
>
> Which version of Maven 3 are you currently using and with which version of
> Artifactory?
> Are you deploying a snapshot or a release? Do you have a sample mini
> project that we can use to reproduce this?
>
> Yoav
>
>
> On Mon, Jul 19, 2010 at 8:42 PM, Bruno Medeiros <[email protected]>wrote:
>
>> Hi all!
>>
>> I getting an error trying to deploy an artifact to my artifactory using
>> the 'deploy' goal on maven 3. All messages on my client console are ok and
>> the deploy seems successfully done, but when other client tries to grab the
>> newly uploaded artifact, it gets a 0 bytes file. Verifying the artifactory
>> log, I can see a lot of
>>
>> 2010-07-15 19:35:05,573 [pool-1-thread-21] [WARN ]
>> (o.a.r.ArtifactoryResponseBase:50) - Zero bytes sent to client.
>>
>> Looking at the web interface the artifact is showed with 0 bytes too, so
>> we can affirm that the problem is on the deploy, not in the download.
>>
>> I tried with Eclipse 3.5.1 with m2eclipse for windows and linux and maven
>> console on linux, both using maven 3, same problem on all of them.
>> If I use maven 2.2.1, I can deploy normally.
>>
>> Does anyone have an idea about what's happening?
>>
>> --
>> BrunoJCM
>>
>>
>> ------------------------------------------------------------------------------
>> This SF.net email is sponsored by Sprint
>> What will you do first with EVO, the first 4G phone?
>> Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
>> _______________________________________________
>> Artifactory-users mailing list
>> [email protected]
>> https://lists.sourceforge.net/lists/listinfo/artifactory-users
>>
>>
> ]
>
>
>
> ------------------------------------------------------------------------------
> This SF.net email is sponsored by Sprint
> What will you do first with EVO, the first 4G phone?
> Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
> _______________________________________________
> Artifactory-users mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/artifactory-users
>
>


-- 
BrunoJCM
<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>com.japisoft</groupId>
	<artifactId>jformula</artifactId>
	<packaging>jar</packaging>
	<version>3.7</version>
	<name>JFormula</name>

	<build>
		<plugins>
			<plugin>
				<artifactId>maven-source-plugin</artifactId>
				<version>2.0.4</version>
				<executions>
					<execution>
						<id>attach-sources</id>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.0.2</version>
				<configuration>
					<source>1.5</source>
					<target>1.5</target>
					<encoding>UTF-8</encoding>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>2.6.1</version>
				<configuration>
					<show>private</show>
				</configuration>
			</plugin>
		</plugins>
	</build>


	<distributionManagement>
		<repository>
			<id>company-repo</id>
			<name>company-webserver-releases</name>
			<url>http://dev.company.com.br:80/maven2/proprietary-releases-local</url>
		</repository>
		<snapshotRepository>
			<id>company-repo</id>
			<name>company-webserver-snapshots</name>
			<url>http://dev.company.com.br:80/maven2/proprietary-snapshots-local</url>
		</snapshotRepository>
		<downloadUrl>http://dev.company.com.br:80/maven2/repo</downloadUrl>
	</distributionManagement>

	<dependencies>
	</dependencies>

</project>

------------------------------------------------------------------------------
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
_______________________________________________
Artifactory-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/artifactory-users

Reply via email to