Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 914094 Details for
Bug 1115409
javapackages-tools: mvn_artifact.py: Generated <requestedVersion> is empty
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
pom1.xml
pom1.xml (text/xml), 6.47 KB, created by
Mikolaj Izdebski
on 2014-07-02 10:12:59 UTC
(
hide
)
Description:
pom1.xml
Filename:
MIME Type:
Creator:
Mikolaj Izdebski
Created:
2014-07-02 10:12:59 UTC
Size:
6.47 KB
patch
obsolete
><?xml version="1.0" encoding="UTF-8"?> ><!-- > Copyright (c) 2011 Sonatype, Inc. > All rights reserved. This program and the accompanying materials > are made available under the terms of the Eclipse Public License v1.0 > which accompanies this distribution, and is available at > http://www.eclipse.org/legal/epl-v10.html >--> ><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> > > <prerequisites> > <maven>3.0</maven> > </prerequisites> > > <parent> > <groupId>org.sonatype.forge</groupId> > <artifactId>forge-parent</artifactId> > <version>10</version> > </parent> > > <groupId>org.eclipse.m2e</groupId> > <artifactId>m2e-maven-runtime</artifactId> > <version>1.5.0-SNAPSHOT</version> > <packaging>pom</packaging> > > <organization> > <name>Eclipse.org - m2e</name> > <url>www.eclipse.org</url> > </organization> > > <properties> > <maven.build.timestamp.format>yyyyMMdd-HHmm</maven.build.timestamp.format> > <osgi-version-qualifier>${maven.build.timestamp}</osgi-version-qualifier> > <maven-bundle-plugin.version>2.4.0</maven-bundle-plugin.version> > <tycho.version>0.20.0</tycho.version> > <tycho-extras-version>${tycho.version}</tycho-extras-version> > </properties> > > <modules> > <module>org.eclipse.m2e.archetype.common</module> > <module>org.eclipse.m2e.maven.indexer</module> > <module>org.eclipse.m2e.maven.runtime</module> > <module>org.eclipse.m2e.maven.runtime.slf4j.simple</module> > </modules> > > <build> > <plugins> > <plugin> > <groupId>org.eclipse.tycho</groupId> > <artifactId>tycho-maven-plugin</artifactId> > <version>${tycho.version}</version> > <extensions>true</extensions> > </plugin> > </plugins> > > <pluginManagement> > <plugins> > <plugin> > <groupId>org.apache.felix</groupId> > <artifactId>maven-bundle-plugin</artifactId> > <version>${maven-bundle-plugin.version}</version> > <extensions>true</extensions> > <configuration> > <instructions> > <Embed-Transitive>true</Embed-Transitive> > <_failok>true</_failok> > <_nouses>true</_nouses> > <_nodefaultversion>true</_nodefaultversion> > <_snapshot>${osgi-version-qualifier}</_snapshot> > > <Bundle-SymbolicName>${project.artifactId};singleton:=false</Bundle-SymbolicName> > <Bundle-RequiredExecutionEnvironment>JavaSE-1.6,JavaSE-1.7</Bundle-RequiredExecutionEnvironment> > <Bundle-Name>%Bundle-Name</Bundle-Name> > <Bundle-Vendor>%Bundle-Vendor</Bundle-Vendor> > <Bundle-ClassPath>{maven-dependencies}</Bundle-ClassPath> > > <Eclipse-BundleShape>dir</Eclipse-BundleShape> > </instructions> > <archive> > <addMavenDescriptor>false</addMavenDescriptor> > </archive> > </configuration> > </plugin> > <plugin> > <groupId>org.eclipse.tycho</groupId> > <artifactId>tycho-p2-plugin</artifactId> > <version>${tycho.version}</version> > <executions> > <execution> > <id>p2-metadata</id> > <goals> > <goal>p2-metadata</goal> > <goal>update-local-index</goal> > </goals> > <phase>package</phase> > </execution> > </executions> > </plugin> > </plugins> > </pluginManagement> > </build> > > <profiles> > <profile> > <id>m2e</id> > <activation> > <property> > <name>m2e.version</name> > </property> > </activation> > <properties> > <osgi-version-qualifier>qualifier</osgi-version-qualifier> > </properties> > <build> > <pluginManagement> > <plugins> > <plugin> > <groupId>org.apache.felix</groupId> > <artifactId>maven-bundle-plugin</artifactId> > <configuration> > <!-- PDE does not honour custom manifest location --> > <manifestLocation>META-INF</manifestLocation> > </configuration> > </plugin> > </plugins> > </pluginManagement> > </build> > </profile> > > <profile> > <id>eclipse-sign</id> > > <pluginRepositories> > <pluginRepository> > <id>m2e-cbi</id> > <url>http://download.eclipse.org/technology/m2e/maven/</url> > </pluginRepository> > </pluginRepositories> > > <build> > <plugins> > <plugin> > <groupId>org.eclipse.tycho.extras</groupId> > <artifactId>tycho-pack200a-plugin</artifactId> > <version>${tycho-extras-version}</version> > <executions> > <execution> > <id>pack200-normalize</id> > <goals> > <goal>normalize</goal> > </goals> > </execution> > </executions> > <configuration> > <supportedProjectTypes> > <supportedProjectType>bundle</supportedProjectType> > </supportedProjectTypes> > </configuration> > </plugin> > > <plugin> > <groupId>org.eclipse.cbi.maven.plugins</groupId> > <artifactId>eclipse-jarsigner-plugin</artifactId> > <version>1.0.0</version> > <executions> > <execution> > <id>sign</id> > <goals> > <goal>sign</goal> > </goals> > </execution> > </executions> > <configuration> > <supportedProjectTypes> > <supportedProjectType>bundle</supportedProjectType> > </supportedProjectTypes> > </configuration> > </plugin> > > <plugin> > <groupId>org.eclipse.tycho.extras</groupId> > <artifactId>tycho-pack200b-plugin</artifactId> > <version>${tycho-extras-version}</version> > <executions> > <execution> > <id>pack200-pack</id> > <goals> > <goal>pack</goal> > </goals> > </execution> > </executions> > <configuration> > <supportedProjectTypes> > <supportedProjectType>bundle</supportedProjectType> > </supportedProjectTypes> > </configuration> > </plugin> > </plugins> > </build> > </profile> > > </profiles> > ></project>
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 1115409
: 914094 |
914095