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

By default, build both tooling and af3

On jenkins they will be build separately such that other build jobs
can reuse the artifacts of the kernel build.

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


Signed-off-by: default avatarAlexander Diewald <diewald@fortiss.org>
parent ce9bc167
No related branches found
No related tags found
No related merge requests found
......@@ -113,6 +113,9 @@
<!-- NOTE: tooling plugins are checked out for the build, but are not
compiled by maven. -->
<id>tooling</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>kernel/org.fortiss.tooling.base</module>
<module>kernel/org.fortiss.tooling.base.ui</module>
......@@ -127,6 +130,9 @@
</profile>
<profile>
<id>af3</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>af3/com.microsoft.z3</module>
<module>af3/eu.fbk.af3.tools.diagram</module>
......
<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.features</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.feature</module>
</modules>
</profile>
<profile>
<id>tooling</id>
<modules>
<module>org.fortiss.tooling.feature</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.features</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>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>org.fortiss.af3.phoenix.feature</module>
</modules>
</profile>
<profile>
<id>tooling</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>org.fortiss.tooling.feature</module>
</modules>
</profile>
</profiles>
</project>
\ No newline at end of file
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