Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [m2e-dev] Is there a released 0.13 target platform for e36?

No, there is no released .target file yet.

Personally, I usually prefer <repository/> with layout=p2 over .target
file, as I find this easier to manage because I don't need to update
.target file each time new contents becomes available in the remote
repositories.

--
Regards,
Igor

On 11-05-27 01:12 PM, Benson Margulies wrote:
So, I've got as target-platform-configuration that is intended to
borrow from M2e.

If I wanted to run the release plugin, I'd need to put a release
version in here, no? Is there one?

  <plugin>
                 <groupId>org.eclipse.tycho</groupId>
                 <artifactId>target-platform-configuration</artifactId>
                 <version>${tycho-version}</version>
                 <configuration>
                     <resolver>p2</resolver>
                     <target>
                         <artifact>
                             <groupId>org.eclipse.m2e</groupId>
                             <artifactId>target-platform</artifactId>
                             <version>${project.version}</version>
                             <classifier>${target.platform}</classifier>
                         </artifact>
                     </target>
                     <ignoreTychoRepositories>true</ignoreTychoRepositories>
                 </configuration>
             </plugin>
_______________________________________________
m2e-dev mailing list
m2e-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/m2e-dev


Back to the top