Skip to content
Snippets Groups Projects
Commit ed73fa2e authored by Alexander Diewald's avatar Alexander Diewald
Browse files

Remaining bits to create tooling p2 site + AF3 product.

* TODO: Tests missing.
* AF3 product starts (on windows).
* Remove platform specific features from the feature.xml.
  TODO: Probably, all other non-AF3 tooling/kernel plugins can be
  removed as well, since they are only needed and added automatically
  when building the product.
  TODO: Create a tooling feature.
* Add a product definition for AF3 Phoenix.
* Use felix instead of equinox.ds in the start config of the product.
  (See https://bugs.eclipse.org/bugs/show_bug.cgi?id=538737 )
* Add a maven module that issues the code generation from EMF models.
* Move the OpenJFX stubs to the common bundle pom such that these libs
  are only acquired when building sources.

Issue-Ref: 3620
Issue-Url: https://af3-developer.fortiss.org/issues/3620


Signed-off-by: default avatarAlexander Diewald <diewald@fortiss.org>
parent 34a1d849
No related branches found
No related tags found
No related merge requests found
<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>
<name>EMF Generation</name>
<version>1.0.0-SNAPSHOT</version>
<artifactId>org.fortiss.af3.generation</artifactId>
<groupId>org.fortiss.af3</groupId>
<parent>
<groupId>org.fortiss.af3</groupId>
<artifactId>org.fortiss.af3.root</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<packaging>pom</packaging>
<!--
Defines the code generation from EMF models.
-->
<profiles>
<profile>
<id>tooling</id>
<properties>
<genmodel.searchpath>${basedir}/../kernel/</genmodel.searchpath>
<genmodel.hulldirnum>0</genmodel.hulldirnum>
</properties>
</profile>
<profile>
<id>af3</id>
<!-- Here, we must include all ecores due to dependencies: The platform is
the common folder of the af3 and the kernel repo. -->
<properties>
<genmodel.searchpath>${basedir}/../</genmodel.searchpath>
<genmodel.hulldirnum>1</genmodel.hulldirnum>
</properties>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>com.googlecode.maven-download-plugin</groupId>
<artifactId>download-maven-plugin</artifactId>
<version>1.3.0</version>
<executions>
<execution>
<!-- the wget goal actually binds itself to this phase by default -->
<phase>generate-resources</phase>
<goals>
<goal>wget</goal>
</goals>
<configuration>
<!-- For testing new emf-generator jars, use a file:// URL.
NOTE: You must clean ${M2_HOME}/repository/.cache/download-maven-plugin/emf-generator.jar*
before. Otherwise, the previous version is used. -->
<url>https://git.fortiss.org/af3/jenkins-tools/raw/3620/de.itemis.emfgenerator/jar/emf-generator.jar</url>
<outputFileName>emf-generator.jar</outputFileName>
<!-- default target location, just to demonstrate the parameter -->
<outputDirectory>${project.build.directory}</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<id>Generate-EMF-code</id>
<phase>generate-resources</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>java</executable>
<arguments>
<argument>-jar</argument>
<argument>${project.build.directory}/emf-generator.jar</argument>
<argument>${genmodel.searchpath}</argument>
<argument>${genmodel.hulldirnum}</argument>
<argument>${genmodel.searchpath}</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</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>
<name>AF3 Phoenix Continuous Build POM</name>
<version>1.0.0-SNAPSHOT</version>
<artifactId>org.fortiss.af3.bundle</artifactId>
<groupId>org.fortiss.af3</groupId>
<parent>
<groupId>org.fortiss.af3</groupId>
<artifactId>org.fortiss.af3.root</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<packaging>pom</packaging>
<profiles>
<profile>
<!-- NOTE: tooling plugins are checked out for the build, but are not
compiled by maven. -->
<id>tooling</id>
<modules>
<module>kernel/org.fortiss.tooling.base</module>
<module>kernel/org.fortiss.tooling.base.ui</module>
<module>kernel/org.fortiss.tooling.common</module>
<module>kernel/org.fortiss.tooling.common.ui</module>
<module>kernel/org.fortiss.tooling.graphicsGL</module>
<module>kernel/org.fortiss.tooling.graphicsGL.ui</module>
<module>kernel/org.fortiss.tooling.kernel</module>
<module>kernel/org.fortiss.tooling.kernel.ui</module>
<module>kernel/org.fortiss.tooling.spiderchart.ui</module>
</modules>
</profile>
<profile>
<id>af3</id>
<modules>
<module>af3/com.microsoft.z3</module>
<module>af3/eu.fbk.af3.tools.diagram</module>
<module>af3/eu.fbk.af3.tools.diagram.ui</module>
<module>af3/org.fortiss.af3.allocation</module>
<module>af3/org.fortiss.af3.allocation.ui</module>
<module>af3/org.fortiss.af3.component</module>
<module>af3/org.fortiss.af3.component.ui</module>
<module>af3/org.fortiss.af3.cosimulation</module>
<module>af3/org.fortiss.af3.cosimulation.ui</module>
<module>af3/org.fortiss.af3.deployment</module>
<module>af3/org.fortiss.af3.deployment.ui</module>
<module>af3/org.fortiss.af3.exploration</module>
<module>af3/org.fortiss.af3.exploration.smt</module>
<module>af3/org.fortiss.af3.exploration.ui</module>
<module>af3/org.fortiss.af3.expression</module>
<module>af3/org.fortiss.af3.expression.ui</module>
<module>af3/org.fortiss.af3.generator.common</module>
<module>af3/org.fortiss.af3.mira</module>
<module>af3/org.fortiss.af3.mira.ui</module>
<module>af3/org.fortiss.af3.mode</module>
<module>af3/org.fortiss.af3.mode.ui</module>
<module>af3/org.fortiss.af3.msc</module>
<module>af3/org.fortiss.af3.msc.ui</module>
<module>af3/org.fortiss.af3.ocra</module>
<module>af3/org.fortiss.af3.operatorpanel</module>
<module>af3/org.fortiss.af3.operatorpanel.ui</module>
<module>af3/org.fortiss.af3.partition</module>
<module>af3/org.fortiss.af3.partition.ui</module>
<module>af3/org.fortiss.af3.platform</module>
<module>af3/org.fortiss.af3.platform.beagle</module>
<module>af3/org.fortiss.af3.platform.beagle.ui</module>
<module>af3/org.fortiss.af3.platform.hierarchic</module>
<module>af3/org.fortiss.af3.platform.hierarchic.ui</module>
<module>af3/org.fortiss.af3.platform.ui</module>
<module>af3/org.fortiss.af3.project</module>
<module>af3/org.fortiss.af3.project.ui</module>
<module>af3/org.fortiss.af3.rcp.application</module>
<module>af3/org.fortiss.af3.refinement</module>
<module>af3/org.fortiss.af3.refinement.ui</module>
<module>af3/org.fortiss.af3.safety</module>
<module>af3/org.fortiss.af3.safety.ui</module>
<module>af3/org.fortiss.af3.safetycases</module>
<module>af3/org.fortiss.af3.safetycases.ui</module>
<module>af3/org.fortiss.af3.schedule</module>
<module>af3/org.fortiss.af3.schedule.ui</module>
<module>af3/org.fortiss.af3.specification</module>
<module>af3/org.fortiss.af3.specification.ui</module>
<module>af3/org.fortiss.af3.state</module>
<module>af3/org.fortiss.af3.state.ui</module>
<module>af3/org.fortiss.af3.task</module>
<module>af3/org.fortiss.af3.task.ui</module>
<module>af3/org.fortiss.af3.testing</module>
<module>af3/org.fortiss.af3.testing.ui</module>
<module>af3/org.fortiss.af3.timing</module>
<module>af3/org.fortiss.af3.timing.ui</module>
<module>af3/org.fortiss.af3.tools</module>
<module>af3/org.fortiss.pragmatictransformation</module>
</modules>
</profile>
</profiles>
</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>
<name>AF3 Phoenix Continuous Build POM</name>
<version>1.0.0-SNAPSHOT</version>
<artifactId>org.fortiss.af3.bundle</artifactId>
<groupId>org.fortiss.af3</groupId>
<parent>
<groupId>org.fortiss.af3</groupId>
<artifactId>org.fortiss.af3.root</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<packaging>pom</packaging>
<build>
<plugins>
<!-- JavaFX-SWT Hook to be removed when javafx-swt is published
on mavencentral. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<id>unpack</id>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.openjfx</groupId>
<artifactId>javafx-graphics</artifactId>
<version>11.0.2</version>
<classifier>${osClassifier}</classifier>
<type>jar</type>
<overWrite>false</overWrite>
<outputDirectory>${openjfx.swt.path}</outputDirectory>
<destFileName>javafx-swt.jar</destFileName>
<includes>javafx-swt.jar</includes>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<!-- End hook -->
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-compiler-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<encoding>UTF-8</encoding>
<source>11</source>
<target>11</target>
<extraClasspathElements>
<extraClasspathElement>
<groupId>org.openjfx</groupId>
<artifactId>javafx-base</artifactId>
<version>11.0.2</version>
</extraClasspathElement>
<extraClasspathElement>
<groupId>org.openjfx</groupId>
<artifactId>javafx-graphics</artifactId>
<version>11.0.2</version>
</extraClasspathElement>
<extraClasspathElement>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>11.0.2</version>
</extraClasspathElement>
<extraClasspathElement>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>11.0.2</version>
</extraClasspathElement>
<extraClasspathElement>
<groupId>org.openjfx</groupId>
<artifactId>javafx-media</artifactId>
<version>11.0.2</version>
</extraClasspathElement>
<extraClasspathElement>
<groupId>org.openjfx</groupId>
<artifactId>javafx-swt</artifactId>
<version>11.0.2</version>
<!-- JavaFX-SWT Hook to be removed when javafx-swt is published
on mavencentral. -->
<scope>system</scope>
<systemPath>${openjfx.swt.path}/javafx-swt.jar</systemPath>
<!-- End Hook -->
</extraClasspathElement>
<extraClasspathElement>
<groupId>org.openjfx</groupId>
<artifactId>javafx-web</artifactId>
<version>11.0.2</version>
</extraClasspathElement>
</extraClasspathElements>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<module>emf-generator</module>
</modules>
<profiles>
<profile>
<!-- NOTE: tooling plugins are checked out for the build, but are not
compiled by maven. -->
<id>tooling</id>
<modules>
<module>kernel/org.fortiss.tooling.base</module>
<module>kernel/org.fortiss.tooling.base.ui</module>
<module>kernel/org.fortiss.tooling.common</module>
<module>kernel/org.fortiss.tooling.common.ui</module>
<module>kernel/org.fortiss.tooling.graphicsGL</module>
<module>kernel/org.fortiss.tooling.graphicsGL.ui</module>
<module>kernel/org.fortiss.tooling.kernel</module>
<module>kernel/org.fortiss.tooling.kernel.ui</module>
<module>kernel/org.fortiss.tooling.spiderchart.ui</module>
</modules>
</profile>
<profile>
<id>af3</id>
<modules>
<module>af3/com.microsoft.z3</module>
<module>af3/eu.fbk.af3.tools.diagram</module>
<module>af3/eu.fbk.af3.tools.diagram.ui</module>
<module>af3/org.fortiss.af3.allocation</module>
<module>af3/org.fortiss.af3.allocation.ui</module>
<module>af3/org.fortiss.af3.component</module>
<module>af3/org.fortiss.af3.component.ui</module>
<module>af3/org.fortiss.af3.cosimulation</module>
<module>af3/org.fortiss.af3.cosimulation.ui</module>
<module>af3/org.fortiss.af3.deployment</module>
<module>af3/org.fortiss.af3.deployment.ui</module>
<module>af3/org.fortiss.af3.exploration</module>
<module>af3/org.fortiss.af3.exploration.smt</module>
<module>af3/org.fortiss.af3.exploration.ui</module>
<module>af3/org.fortiss.af3.expression</module>
<module>af3/org.fortiss.af3.expression.ui</module>
<module>af3/org.fortiss.af3.generator.common</module>
<module>af3/org.fortiss.af3.mira</module>
<module>af3/org.fortiss.af3.mira.ui</module>
<module>af3/org.fortiss.af3.mode</module>
<module>af3/org.fortiss.af3.mode.ui</module>
<module>af3/org.fortiss.af3.msc</module>
<module>af3/org.fortiss.af3.msc.ui</module>
<module>af3/org.fortiss.af3.ocra</module>
<module>af3/org.fortiss.af3.operatorpanel</module>
<module>af3/org.fortiss.af3.operatorpanel.ui</module>
<module>af3/org.fortiss.af3.partition</module>
<module>af3/org.fortiss.af3.partition.ui</module>
<module>af3/org.fortiss.af3.platform</module>
<module>af3/org.fortiss.af3.platform.beagle</module>
<module>af3/org.fortiss.af3.platform.beagle.ui</module>
<module>af3/org.fortiss.af3.platform.hierarchic</module>
<module>af3/org.fortiss.af3.platform.hierarchic.ui</module>
<module>af3/org.fortiss.af3.platform.ui</module>
<module>af3/org.fortiss.af3.project</module>
<module>af3/org.fortiss.af3.project.ui</module>
<module>af3/org.fortiss.af3.rcp.application</module>
<module>af3/org.fortiss.af3.refinement</module>
<module>af3/org.fortiss.af3.refinement.ui</module>
<module>af3/org.fortiss.af3.safety</module>
<module>af3/org.fortiss.af3.safety.ui</module>
<module>af3/org.fortiss.af3.safetycases</module>
<module>af3/org.fortiss.af3.safetycases.ui</module>
<module>af3/org.fortiss.af3.schedule</module>
<module>af3/org.fortiss.af3.schedule.ui</module>
<module>af3/org.fortiss.af3.specification</module>
<module>af3/org.fortiss.af3.specification.ui</module>
<module>af3/org.fortiss.af3.state</module>
<module>af3/org.fortiss.af3.state.ui</module>
<module>af3/org.fortiss.af3.task</module>
<module>af3/org.fortiss.af3.task.ui</module>
<module>af3/org.fortiss.af3.testing</module>
<module>af3/org.fortiss.af3.testing.ui</module>
<module>af3/org.fortiss.af3.timing</module>
<module>af3/org.fortiss.af3.timing.ui</module>
<module>af3/org.fortiss.af3.tools</module>
<module>af3/org.fortiss.pragmatictransformation</module>
</modules>
</profile>
</profiles>
</project>
This diff is collapsed.
<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>
<name>AF3 Phoenix Continuous Feature</name>
<artifactId>org.fortiss.af3.phoenix.feature</artifactId>
<version>2.14.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
<parent>
<groupId>org.fortiss.af3</groupId>
<artifactId>org.fortiss.af3.features</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
</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>
<name>AF3 Phoenix Continuous Feature</name>
<artifactId>org.fortiss.af3.phoenix.feature</artifactId>
<version>2.14.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
<parent>
<groupId>org.fortiss.af3</groupId>
<artifactId>org.fortiss.af3.features</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
</project>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.fortiss.af3</groupId>
<artifactId>org.fortiss.af3.root</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<parent>
<groupId>org.fortiss.af3</groupId>
<artifactId>org.fortiss.af3.configuration</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>./releng/org.fortiss.af3.configuration</relativePath>
</parent>
<modules>
<module>bundles</module>
<module>features</module>
<!--module>tests</module-->
<module>releng</module>
</modules>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.fortiss.af3</groupId>
<artifactId>org.fortiss.af3.root</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<parent>
<groupId>org.fortiss.af3</groupId>
<artifactId>org.fortiss.af3.configuration</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>./releng/org.fortiss.af3.configuration</relativePath>
</parent>
<modules>
<module>bundles</module>
<module>features</module>
<module>products</module>
<!--module>tests</module-->
<module>releng</module>
</modules>
</project>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<?pde version="3.5"?>
<product name="AutoFOCUS 3 - &quot;Phoenix&quot; 2.14" uid="org.fortiss.af3.phoenix.product" id="org.fortiss.af3.rcp.application.product" application="org.fortiss.af3.rcp.application.af3app" version="2.14.0.qualifier" useFeatures="true" includeLaunchers="true">
<aboutInfo>
<image path="icons/about.png"/>
<text>
AutoFOCUS 3 - &quot;Phoenix&quot;
Version: 2.14.0
Copyright 2011-2018 fortiss GmbH
Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
express or implied. See the License for the specific language
governing permissions and limitations under the License.
</text>
</aboutInfo>
<configIni use="default">
</configIni>
<launcherArgs>
<programArgs>-Dosgi.framework.extensions=reference:file:org.eclipse.fx.osgi_0.9.0.201401250701.jar</programArgs>
<vmArgsLin>-Xmx1024m -Xss32m</vmArgsLin>
<vmArgsMac>-Xmx1024m -Xss32m -XstartOnFirstThread
-startup
../Eclipse/plugins/org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar
--launcher.library
../Eclipse/plugins/org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.1.200.v20140116-2212
-showsplash</vmArgsMac>
<vmArgsWin>-Xmx512m -Xss16m
-Dorg.osgi.framework.os.name=win32</vmArgsWin>
</launcherArgs>
<windowImages i16="icons/dock_icons/icon16.png" i32="icons/dock_icons/icon32.png" i48="icons/dock_icons/icon48.png" i64="icons/dock_icons/icon64.png" i128="icons/dock_icons/icon128.png"/>
<splash
location="org.fortiss.af3.rcp.application"
startupProgressRect="0,290,450,10"
startupMessageRect="0,275,450,15"
startupForegroundColor="35517B" />
<launcher name="autofocus3-phoenix">
<linux icon="icons/dock_icons/icon128.xpm"/>
<macosx icon="icons/dock_icons/icon128.icns"/>
<solaris/>
<win useIco="false">
<bmp
winSmallHigh="icons/dock_icons/icon16.bmp"
winMediumHigh="icons/dock_icons/icon32.bmp"
winLargeHigh="icons/dock_icons/icon48.bmp"/>
</win>
</launcher>
<vm>
<windows include="true">org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11</windows>
</vm>
<license>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<text>
Copyright 2011-2018 fortiss GmbH
Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
</text>
</license>
<plugins>
</plugins>
<features>
<feature id="org.fortiss.af3.phoenix.feature" version="2.14.0.qualifier"/>
<feature id="org.eclipse.rcp"/>
</features>
<configurations>
<plugin id="org.eclipse.core.runtime" autoStart="true" startLevel="4" />
<plugin id="org.apache.felix.scr" autoStart="true" startLevel="2" />
<plugin id="org.eclipse.equinox.event" autoStart="true" startLevel="2" />
</configurations>
</product>
<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>
<name>AF3 Phoenix 2.14 Product</name>
<version>2.14.0-SNAPSHOT</version>
<artifactId>org.fortiss.af3.phoenix.product</artifactId>
<packaging>eclipse-repository</packaging>
<parent>
<artifactId>org.fortiss.af3.products</artifactId>
<groupId>org.fortiss.af3.product</groupId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-repository-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<includeAllDependencies>true</includeAllDependencies>
<profileProperties>
<macosx-bundled>true</macosx-bundled>
</profileProperties>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-director-plugin</artifactId>
<version>${tycho-version}</version>
<executions>
<execution>
<!-- install the product using the p2 director -->
<id>materialize-products</id>
<goals>
<goal>materialize-products</goal>
</goals>
</execution>
<execution>
<!-- create zip file with the installed product -->
<id>archive-products</id>
<goals>
<goal>archive-products</goal>
</goals>
</execution>
</executions>
<configuration>
<products>
<product>
<id>org.fortiss.af3.phoenix.product</id>
<rootFolder>AF3Phoenix</rootFolder>
<rootFolders>
<linux>autofocus3</linux>
<macosx>AutoFOCUS3.app</macosx>
<windows>AutoFOCUS3</windows>
</rootFolders>
</product>
</products>
</configuration>
</plugin>
</plugins>
</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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>org.fortiss.af3.products</artifactId>
<packaging>pom</packaging>
<parent>
<groupId>org.fortiss.af3</groupId>
<artifactId>org.fortiss.af3.root</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<profiles>
<profile>
<id>af3</id>
<modules>
<module>org.fortiss.af3.phoenix.product</module>
</modules>
</profile>
</profiles>
<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>
<artifactId>org.fortiss.af3.products</artifactId>
<groupId>org.fortiss.af3.product</groupId>
<packaging>pom</packaging>
<parent>
<groupId>org.fortiss.af3</groupId>
<artifactId>org.fortiss.af3.root</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<!-- For fetching platform-specific artifacts -->
<repositories>
<repository>
<!-- Place more centrally and combine with af3 profile -->
<id>2018-12</id>
<layout>p2</layout>
<!-- In jenkins, the tooling update site must be copied to this location. -->
<url>https://download.eclipse.org/releases/2018-12</url>
</repository>
</repositories>
<profiles>
<profile>
<id>af3</id>
<modules>
<module>org.fortiss.af3.phoenix.product</module>
</modules>
</profile>
</profiles>
</project>
\ No newline at end of file
<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>
<name>AF3 main configuration POM</name>
<version>1.0.0-SNAPSHOT</version>
<artifactId>org.fortiss.af3.configuration</artifactId>
<groupId>org.fortiss.af3</groupId>
<packaging>pom</packaging>
<properties>
<tycho-version>1.3.0</tycho-version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- JavaFX-SWT Hook to be removed when javafx-swt is published on
mavencentral. -->
<openjfx.swt.path>${project.build.directory}/.jfx-swt</openjfx.swt.path>
<!-- End hook -->
</properties>
<!-- Helper to identify the OS family. -->
<profiles>
<profile>
<id>windows</id>
<activation>
<os>
<family>windows</family>
</os>
</activation>
<properties>
<osClassifier>win</osClassifier>
</properties>
</profile>
<profile>
<id>osx</id>
<activation>
<os>
<family>osx</family>
</os>
</activation>
<properties>
<osClassifier>mac</osClassifier>
</properties>
</profile>
<profile>
<id>linux</id>
<activation>
<os>
<family>linux</family>
</os>
</activation>
<properties>
<osClassifier>linux</osClassifier>
</properties>
</profile>
</profiles>
<build>
<!--outputDirectory>./out/${basedir}/target/classes</outputDirectory-->
<plugins>
<!-- JavaFX-SWT Hook to be removed when javafx-swt is published
on mavencentral. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<id>unpack</id>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.openjfx</groupId>
<artifactId>javafx-graphics</artifactId>
<version>11.0.2</version>
<classifier>${osClassifier}</classifier>
<type>jar</type>
<overWrite>false</overWrite>
<outputDirectory>${openjfx.swt.path}</outputDirectory>
<destFileName>javafx-swt.jar</destFileName>
<includes>javafx-swt.jar</includes>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<!-- End hook -->
<plugin>
<!-- enable tycho build extension -->
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>${tycho-version}</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-compiler-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<encoding>UTF-8</encoding>
<source>11</source>
<target>11</target>
<extraClasspathElements>
<extraClasspathElement>
<groupId>org.openjfx</groupId>
<artifactId>javafx-base</artifactId>
<version>11.0.2</version>
</extraClasspathElement>
<extraClasspathElement>
<groupId>org.openjfx</groupId>
<artifactId>javafx-graphics</artifactId>
<version>11.0.2</version>
</extraClasspathElement>
<extraClasspathElement>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>11.0.2</version>
</extraClasspathElement>
<extraClasspathElement>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>11.0.2</version>
</extraClasspathElement>
<extraClasspathElement>
<groupId>org.openjfx</groupId>
<artifactId>javafx-media</artifactId>
<version>11.0.2</version>
</extraClasspathElement>
<extraClasspathElement>
<groupId>org.openjfx</groupId>
<artifactId>javafx-swt</artifactId>
<version>11.0.2</version>
<!-- JavaFX-SWT Hook to be removed when javafx-swt is published
on mavencentral. -->
<scope>system</scope>
<systemPath>${openjfx.swt.path}/javafx-swt.jar</systemPath>
<!-- End Hook -->
</extraClasspathElement>
<extraClasspathElement>
<groupId>org.openjfx</groupId>
<artifactId>javafx-web</artifactId>
<version>11.0.2</version>
</extraClasspathElement>
</extraClasspathElements>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<testFailureIgnore>true</testFailureIgnore>
<useUIHarness>true</useUIHarness>
<useUIThread>false</useUIThread>
<argLine>-Xms256m -Xmx1024m -XX:MaxPermSize=256M -Dosgi.framework.extensions=org.eclipse.fx.osgi</argLine>
<includes>
<include>**/AllTests.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-repository-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<includeAllDependencies>true</includeAllDependencies>
<profileProperties>
<macosx-bundled>true</macosx-bundled>
</profileProperties>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<version>${tycho-version}</version>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tycho-version}</version>
<configuration>
<target>
<artifact>
<groupId>org.fortiss.af3</groupId>
<artifactId>org.fortiss.af3.target</artifactId>
<version>1.0.0-SNAPSHOT</version>
</artifact>
</target>
<environments>
<environment>
<os>macosx</os>
<ws>cocoa</ws>
<arch>x86_64</arch>
</environment>
<environment>
<os>linux</os>
<ws>gtk</ws>
<arch>x86_64</arch>
</environment>
<environment>
<os>win32</os>
<ws>win32</ws>
<arch>x86_64</arch>
</environment>
</environments>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<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>
<name>AF3 main configuration POM</name>
<version>1.0.0-SNAPSHOT</version>
<artifactId>org.fortiss.af3.configuration</artifactId>
<groupId>org.fortiss.af3</groupId>
<packaging>pom</packaging>
<properties>
<tycho-version>1.3.0</tycho-version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- JavaFX-SWT Hook to be removed when javafx-swt is published on
mavencentral. -->
<openjfx.swt.path>${project.build.directory}/.jfx-swt</openjfx.swt.path>
<!-- End hook -->
</properties>
<profiles>
<!-- Helpers to identify the OS family. -->
<profile>
<id>windows</id>
<activation>
<os>
<family>windows</family>
</os>
</activation>
<properties>
<osClassifier>win</osClassifier>
</properties>
</profile>
<profile>
<id>osx</id>
<activation>
<os>
<family>osx</family>
</os>
</activation>
<properties>
<osClassifier>mac</osClassifier>
</properties>
</profile>
<profile>
<id>linux</id>
<activation>
<os>
<family>linux</family>
</os>
</activation>
<properties>
<osClassifier>linux</osClassifier>
</properties>
</profile>
<!-- Install the kernel p2 site for all af3 profiles -->
<profile>
<id>af3</id>
<repositories>
<repository>
<!-- Place more centrally and combine with af3 profile -->
<id>tooling-p2</id>
<layout>p2</layout>
<!-- In jenkins, the tooling update site must be copied to this location. -->
<url>file:///${user.dir}/releng/org.fortiss.tooling.update/target/repository/</url>
</repository>
</repositories>
</profile>
</profiles>
<build>
<plugins>
<!-- End hook -->
<plugin>
<!-- enable tycho build extension -->
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>${tycho-version}</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<testFailureIgnore>true</testFailureIgnore>
<useUIHarness>true</useUIHarness>
<useUIThread>false</useUIThread>
<argLine>-Xms256m -Xmx1024m -XX:MaxPermSize=256M -Dosgi.framework.extensions=org.eclipse.fx.osgi</argLine>
<includes>
<include>**/AllTests.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-repository-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<includeAllDependencies>true</includeAllDependencies>
<profileProperties>
<macosx-bundled>true</macosx-bundled>
</profileProperties>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<version>${tycho-version}</version>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tycho-version}</version>
<configuration>
<target>
<artifact>
<groupId>org.fortiss.af3</groupId>
<artifactId>org.fortiss.af3.target</artifactId>
<version>1.0.0-SNAPSHOT</version>
</artifact>
</target>
<environments>
<environment>
<os>macosx</os>
<ws>cocoa</ws>
<arch>x86_64</arch>
</environment>
<environment>
<os>linux</os>
<ws>gtk</ws>
<arch>x86_64</arch>
</environment>
<environment>
<os>win32</os>
<ws>win32</ws>
<arch>x86_64</arch>
</environment>
</environments>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<site>
<feature url="features/org.fortiss.tooling.af3.phoenix.feature_2.14.0.qualifier.jar" id="org.fortiss.af3.phoenix.feature" version="2.14.0.qualifier">
<feature url="features/org.fortiss.af3.phoenix.feature_2.14.0.qualifier.jar" id="org.fortiss.af3.phoenix.feature" version="2.14.0.qualifier">
<category name="latest"/>
</feature>
<category-def name="latest" label="AutoFOCUS 3, version 2.14-LATEST"/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment