If I understood your correctly, you want to add "Eclipse-BundleShape: dir" to judo.designer.core's MANIFEST.MF [1]. Otherwise, this should also be possible via org.eclipse.equinox.p2.touchpoint.natives.unzip touchpoint in a p2.inf file.
[1] http://wiki.eclipse.org/Tycho/Packaging_Types
Mikhail Kalkov
Hi!
Â
My Team is creating a product based on Eclipse Kepler RCP and we would like use Maven to build this one using Tycho.
Our product contains 3 projects:
- a parent: judok.designer
- a plugin: judok.designer.core
- a product: judok.designer.product
Â
The POMs are as follows:
Â
<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/xsd/maven-4.0.0.xsd">
ÂÂÂÂÂÂ <modelVersion>4.0.0</modelVersion>
ÂÂÂÂÂÂ <groupId>at.gv.brz.bjujq</groupId>
ÂÂÂÂÂÂ <artifactId>judok.designer</artifactId>
ÂÂÂÂÂÂ <version>1.0.0-SNAPSHOT</version>
ÂÂÂÂÂÂ <packaging>pom</packaging>
ÂÂÂÂÂÂ <name>JUDOK Designer</name>
ÂÂÂÂÂÂ <inceptionYear>2014</inceptionYear>
ÂÂÂ <organization>
ÂÂÂÂÂÂÂ <name>Bundesrechenzentrum GmbH</name>
ÂÂÂÂÂÂÂ <url>http://brz.gv.at/</url>
ÂÂÂ </organization>
Â
ÂÂÂÂÂÂ <properties>
ÂÂÂÂÂÂÂÂÂÂÂÂ <plugin.tycho.version>0.20.0</plugin.tycho.version>
ÂÂÂÂÂÂÂÂÂÂÂÂ <plugin.dependency.version>2.8</plugin.dependency.version>
ÂÂÂÂÂÂÂÂÂÂÂÂ
ÂÂÂÂÂÂÂÂÂÂÂÂ <dependency.commons-codec.version>1.9</dependency.commons-codec.version>
ÂÂÂÂÂÂÂÂÂÂÂÂ <dependency.commons-collections4.version>4.0</dependency.commons-collections4.version>
ÂÂÂÂÂÂÂ <dependency.commons-exec.version>1.2</dependency.commons-exec.version>
ÂÂÂÂÂÂÂ <dependency.commons-io.version>2.4</dependency.commons-io.version>
ÂÂÂÂÂÂÂ <dependency.commons-lang.version>3.3.2</dependency.commons-lang.version>
ÂÂÂÂÂÂÂ <dependency.commons-logging.version>1.1.3</dependency.commons-logging.version>
ÂÂÂÂÂÂÂ <dependency.spring.version>2.5.5</dependency.spring.version>
ÂÂÂÂÂÂÂ <dependency.xerces.version>2.9.1</dependency.xerces.version>
ÂÂÂÂÂÂÂÂÂÂÂÂ
ÂÂÂÂÂÂÂÂÂÂÂÂ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
ÂÂÂÂÂÂ </properties>
Â
ÂÂÂÂÂÂ <repositories>
ÂÂÂÂÂÂÂÂÂÂÂÂ <repository>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <id>p2-kepler</id>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <layout>p2</layout>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <url>http://download.eclipse.org/releases/kepler</url>
ÂÂÂÂÂÂÂÂÂÂÂÂ </repository>
ÂÂÂÂÂÂÂÂÂÂÂÂ <repository>
ÂÂÂÂÂÂÂÂÂÂÂ <id>p2-babel</id>
ÂÂÂÂÂÂÂÂÂÂÂ <layout>p2</layout>
ÂÂÂÂÂÂÂÂÂÂÂ <url>http://download.eclipse.org/technology/babel/update-site/R0.11.1/kepler</url>
ÂÂÂÂÂÂÂ </repository>
ÂÂÂÂÂÂ </repositories>
Â
ÂÂÂÂÂÂ <build>
ÂÂÂÂÂÂÂÂÂÂÂÂ <plugins>
ÂÂÂÂÂÂÂÂÂÂÂÂ ÂÂÂ <plugin>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <groupId>org.eclipse.tycho</groupId>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <artifactId>tycho-compiler-plugin</artifactId>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <version>${plugin.tycho.version}</version>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <configuration>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <compilerArgument>-err:-forbidden</compilerArgument>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ </configuration>
ÂÂÂÂÂÂÂÂÂÂÂ </plugin>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <plugin>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <groupId>org.eclipse.tycho</groupId>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <artifactId>target-platform-configuration</artifactId>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <version>${plugin.tycho.version}</version>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <configuration>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <environments>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <environment>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <os>win32</os>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <ws>win32</ws>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <arch>x86</arch>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ </environment>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ </environments>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ </configuration>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ </plugin>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <plugin>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <groupId>org.eclipse.tycho</groupId>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <artifactId>tycho-maven-plugin</artifactId>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <version>${plugin.tycho.version}</version>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <extensions>true</extensions>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ </plugin>
ÂÂÂÂÂÂÂÂÂÂÂÂ </plugins>
ÂÂÂÂÂÂ </build>
ÂÂÂÂÂÂ
ÂÂÂÂÂÂ <modules>
ÂÂÂÂÂÂÂÂÂÂÂÂ <module>../judok.designer.core</module>
ÂÂÂÂÂÂÂÂÂÂÂÂ <module>../judok.designer.product</module>
ÂÂÂÂÂÂ </modules>
</project>
Â
--
Â
<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/xsd/maven-4.0.0.xsd">
ÂÂÂÂÂÂ <modelVersion>4.0.0</modelVersion>
Â
ÂÂÂÂÂÂ <parent>
ÂÂÂÂÂÂÂÂÂÂÂÂ <groupId>at.gv.brz.bjujq</groupId>
ÂÂÂÂÂÂÂÂÂÂÂÂ <artifactId>judok.designer</artifactId>
ÂÂÂÂÂÂÂÂÂÂÂÂ <version>1.0.0-SNAPSHOT</version>
ÂÂÂÂÂÂÂÂÂÂÂÂ <relativePath>../judok.designer</relativePath>
ÂÂÂÂÂÂ </parent>
Â
ÂÂÂÂÂÂ <artifactId>judok.designer.core</artifactId>
ÂÂÂÂÂÂ <packaging>eclipse-plugin</packaging>
Â
ÂÂÂÂÂÂ <dependencies>
ÂÂÂÂÂÂÂÂÂÂÂÂ <dependency>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <groupId>commons-codec</groupId>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <artifactId>commons-codec</artifactId>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <version>${dependency.commons-codec.version}</version>
ÂÂÂÂÂÂÂÂÂÂÂÂ </dependency>
ÂÂÂÂÂÂÂÂÂÂÂÂ <dependency>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <groupId>org.apache.commons</groupId>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <artifactId>commons-collections4</artifactId>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <version>${dependency.commons-collections4.version}</version>
ÂÂÂÂÂÂÂÂÂÂÂÂ </dependency>
ÂÂÂÂÂÂÂÂÂÂÂÂ <dependency>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <groupId>org.apache.commons</groupId>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <artifactId>commons-exec</artifactId>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <version>${dependency.commons-exec.version}</version>
ÂÂÂÂÂÂÂÂÂÂÂÂ </dependency>
ÂÂÂÂÂÂÂÂÂÂÂÂ <dependency>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <groupId>commons-io</groupId>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <artifactId>commons-io</artifactId>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <version>${dependency.commons-io.version}</version>
ÂÂÂÂÂÂÂÂÂÂÂÂ </dependency>
ÂÂÂÂÂÂÂÂÂÂÂÂ <dependency>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <groupId>org.apache.commons</groupId>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <artifactId>commons-lang3</artifactId>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <version>${dependency.commons-lang.version}</version>
ÂÂÂÂÂÂÂÂÂÂÂÂ </dependency>
ÂÂÂÂÂÂÂ <dependency>
ÂÂÂÂÂÂÂÂÂÂÂ <groupId>commons-logging</groupId>
ÂÂÂÂÂÂÂÂÂÂÂ <artifactId>commons-logging</artifactId>
ÂÂÂÂÂÂÂÂÂÂÂ <version>${dependency.commons-logging.version}</version>
ÂÂÂÂÂÂÂ </dependency>
ÂÂÂÂÂÂÂÂÂÂÂÂ <dependency>
ÂÂÂÂÂÂÂÂÂÂÂ <groupId>org.springframework</groupId>
ÂÂÂÂÂÂÂÂÂÂÂ <artifactId>spring-context</artifactId>
ÂÂÂÂÂÂÂÂÂÂÂ <version>${dependency.spring.version}</version>
ÂÂÂÂÂÂÂÂÂÂÂ <exclusions>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <exclusion>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <groupId>commons-logging</groupId>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <artifactId>commons-logging</artifactId>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ </exclusion>
ÂÂÂÂÂÂÂÂÂÂÂ </exclusions>
ÂÂÂÂÂÂÂ </dependency>
ÂÂÂÂÂÂ </dependencies>
Â
ÂÂÂÂÂÂ <build>
ÂÂÂÂÂÂÂÂÂÂÂÂ <plugins>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <plugin>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <groupId>org.apache.maven.plugins</groupId>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <artifactId>maven-dependency-plugin</artifactId>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <version>${plugin.dependency.version}</version>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <executions>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <execution>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <id>copy-dependencies</id>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <phase>process-sources</phase>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <goals>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <goal>copy-dependencies</goal>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ </goals>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <configuration>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <outputDirectory>${basedir}/lib</outputDirectory>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <includeGroupIds>commons-codec,org.apache.commons,commons-io,commons-logging,org.springframework,aopalliance</includeGroupIds>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <stripVersion>true</stripVersion>
ÂÂÂÂÂÂ ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ </configuration>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ </execution>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ </executions>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ </plugin>
ÂÂÂÂÂÂÂÂÂÂÂÂ </plugins>
ÂÂÂÂÂÂÂÂÂÂÂÂ <pluginManagement>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <plugins>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <plugin>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <groupId>org.eclipse.m2e</groupId>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <artifactId>lifecycle-mapping</artifactId>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <version>1.0.0</version>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <configuration>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <lifecycleMappingMetadata>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <pluginExecutions>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <pluginExecution>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <pluginExecutionFilter>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ ÂÂÂÂÂÂ <groupId>org.apache.maven.plugins</groupId>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <artifactId>maven-dependency-plugin</artifactId>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <versionRange>[2.0,)</versionRange>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <goals>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <goal>copy-dependencies</goal>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ </goals>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ </pluginExecutionFilter>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <action>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <execute />
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ </action>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ </pluginExecution>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ </pluginExecutions>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ </lifecycleMappingMetadata>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ </configuration>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ </plugin>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ </plugins>
ÂÂÂÂÂÂÂÂÂÂÂÂ </pluginManagement>
ÂÂÂÂÂÂ </build>
</project>
Â
--
Â
<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/xsd/maven-4.0.0.xsd">
ÂÂÂÂÂÂ <modelVersion>4.0.0</modelVersion>
Â
ÂÂÂ <parent>
ÂÂÂÂÂÂÂ <groupId>at.gv.brz.bjujq</groupId>
ÂÂÂÂÂÂÂ <artifactId>judok.designer</artifactId>
ÂÂÂÂÂÂÂ <version>1.0.0-SNAPSHOT</version>
ÂÂÂÂÂÂÂ <relativePath>../judok.designer</relativePath>
ÂÂÂ </parent>
ÂÂÂ
ÂÂÂÂÂÂ <artifactId>judok.designer.product</artifactId>
ÂÂÂÂÂÂ <packaging>eclipse-repository</packaging>
Â
ÂÂÂÂÂÂ <properties>
ÂÂÂÂÂÂÂÂÂÂÂÂ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
ÂÂÂÂÂÂ </properties>
ÂÂÂÂÂÂ
ÂÂÂÂÂÂ <dependencies>
ÂÂÂÂÂÂÂÂÂÂÂÂ <dependency>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <groupId>at.gv.brz.bjujq</groupId>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <artifactId>judok.designer.core</artifactId>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <version>1.0.0-SNAPSHOT</version>
ÂÂÂÂÂÂÂÂÂÂÂÂ </dependency>
ÂÂÂÂÂÂ </dependencies>
Â
ÂÂÂÂÂÂ <build>
ÂÂÂÂÂÂÂÂÂÂÂÂ <plugins>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <plugin>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <groupId>org.eclipse.tycho</groupId>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <artifactId>tycho-p2-director-plugin</artifactId>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <version>${plugin.tycho.version}</version>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <executions>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <execution>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <id>materialize-products</id>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <goals>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <goal>materialize-products</goal>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ </goals>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ </execution>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <execution>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <id>archive-products</id>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <goals>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ <goal>archive-products</goal>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ </goals>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ </execution>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ </executions>
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ </plugin>
ÂÂÂÂÂÂÂÂÂÂÂÂ </plugins>
ÂÂÂÂÂÂ </build>
Â
</project>
Â
Our product can be built successfully, but the plugin judok.designer.core will be bundled as JAR. Is it possible to bundle this one without creating an archive from it?
Â
Thanks!
Â
mit freundlichen GrÃÃen / best regards / cordiales saludos / meilleures salutations
Â
Gabor Ilyes-Veisz
B-JU-JQ
Â
Bundesrechenzentrum GmbH
Hintere ZollamtsstraÃe 4, 1030 Wien
DVR: 0875597Â
E-Mail: Gergoe-Gabor.Ilyes-Veisz@xxxxxxxxx
Web: www.brz.gv.at
Â
Support Green IT. Think before you print and save a tree.
Â
Angaben gemÃÃ Â14 UGB:
Firmenbuchnummer: 160573m
Firmenbuchgericht: HG Wien
Sitz der Gesellschaft: WienÂ
------------------------------
This message may contain confidential and/or legally privileged information and is intended for use by the indicated addressee only.
If you are not the intended addressee:
(a) any disclosure, reproduction, distribution or action you take on the basis of the contents of this message (except for this instruction) is strictly prohibited;
(b) please return the complete message to the sender and delete any copies there of from your system; and
(c) this message is not a solicitation for purchase or sale or an offer or agreement of any kind whatsoever that binds the sender.Â
_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/tycho-user