Skip to content

Commit 185b56e

Browse files
committed
build all bundles
mvn clean verify -fae -fae needed.to skip a current error in org.bndtools.p2 which will go away soon after PR 6808 Signed-off-by: Christoph Rueger <chrisrueger@gmail.com>
1 parent a990720 commit 185b56e

3 files changed

Lines changed: 38 additions & 0 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,5 @@ Archive
1515
target/
1616
*.code-workspace
1717
_log/
18+
.polyglot*
19+
.tycho*

cnf/pom.xml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<groupId>com.example.mygroup</groupId>
7+
<artifactId>configurator</artifactId>
8+
<version>1.0.0-SNAPSHOT</version>
9+
<packaging>pom</packaging>
10+
<properties>
11+
<!-- properties can be defined -->
12+
</properties>
13+
<build>
14+
<pluginManagement>
15+
<!-- add your general plugin configuration here or customize the defaults -->
16+
</pluginManagement>
17+
</build>
18+
<profiles>
19+
<profile>
20+
<id>file-activation-example</id>
21+
<activation>
22+
<file>
23+
<exists>someFile</exists>
24+
</file>
25+
</activation>
26+
<build>
27+
<plugins>
28+
<!-- add additional plugin configuration here that shoul be activated by a given file type -->
29+
</plugins>
30+
</build>
31+
</profile>
32+
</profiles>
33+
<modules>
34+
<module>../maven-plugins</module>
35+
</modules>
36+
</project>
File renamed without changes.

0 commit comments

Comments
 (0)