I'm trying to use the obr:deploy-file goal but the plugin never upload my jar 
to the remote repository, it just updates the repository.xml

Here's my config:

<plugin>   
        <groupId>org.apache.felix</groupId>
                <artifactId>maven-obr-plugin</artifactId>
                <executions>
                        <execution>
                                <id>install</id>
                                <phase>install</phase>
                                <goals>    
                                        <goal>install-file</goal>
                                </goals>
                        </execution>
                        <execution>
                                <id>deploy</id>
                                <phase>deploy</phase>
                                <goals>    
                                        <goal>deploy-file</goal>
                                </goals>
                        </execution>
                </executions>
                <configuration>
                        <groupId>${pom.groupId}</groupId>
                        <artifactId>${pom.artifactId}</artifactId>
                        <version>${pom.version}</version>
                        <packaging>bundle</packaging>
<repositoryId>${project.distributionManagementArtifactRepository.id}</repositoryId>
                                        
<url>${project.distributionManagementArtifactRepository.url}</url>
                <file>${pom.artifactId}-${pom.version}.jar</file>
        </configuration>
</plugin>



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to