Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Wahlbrink2019-04-29 12:05:38 +0000
committerStephan Wahlbrink2019-04-29 12:16:16 +0000
commita7c865fb8afa774abaa9ad220aef101cd2f3a910 (patch)
tree71fd31eb94245e223bf07da6c85897fa688751af
parentc000af09920c12a9fc13e3564858c46b39f825d7 (diff)
downloadorg.eclipse.statet-a7c865fb8afa774abaa9ad220aef101cd2f3a910.tar.gz
org.eclipse.statet-a7c865fb8afa774abaa9ad220aef101cd2f3a910.tar.xz
org.eclipse.statet-a7c865fb8afa774abaa9ad220aef101cd2f3a910.zip
Bug 541741: [Releng] Add storing of maven build properties
-rw-r--r--3rdparty/.gitignore1
-rw-r--r--3rdparty/pom.xml7
-rw-r--r--releng/.gitignore1
-rw-r--r--releng/pom.xml29
4 files changed, 26 insertions, 12 deletions
diff --git a/3rdparty/.gitignore b/3rdparty/.gitignore
new file mode 100644
index 0000000..b83d222
--- /dev/null
+++ b/3rdparty/.gitignore
@@ -0,0 +1 @@
+/target/
diff --git a/3rdparty/pom.xml b/3rdparty/pom.xml
index 88460fb..0450892 100644
--- a/3rdparty/pom.xml
+++ b/3rdparty/pom.xml
@@ -49,6 +49,13 @@
<targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
</configuration>
</plugin>
+
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>properties-maven-plugin</artifactId>
+ <inherited>false</inherited>
+ </plugin>
+
</plugins>
</build>
diff --git a/releng/.gitignore b/releng/.gitignore
new file mode 100644
index 0000000..b83d222
--- /dev/null
+++ b/releng/.gitignore
@@ -0,0 +1 @@
+/target/
diff --git a/releng/pom.xml b/releng/pom.xml
index 17a0c8f..b7724b7 100644
--- a/releng/pom.xml
+++ b/releng/pom.xml
@@ -238,18 +238,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
- <version>1.0.0</version>
- <executions>
- <execution>
- <phase>generate-resources</phase>
- <goals>
- <goal>write-project-properties</goal>
- </goals>
- <configuration>
- <outputFile>${project.build.directory}/build.properties</outputFile>
- </configuration>
- </execution>
- </executions>
+ <inherited>false</inherited>
</plugin>
</plugins>
@@ -275,6 +264,22 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
</plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>properties-maven-plugin</artifactId>
+ <version>1.0.0</version>
+ <executions>
+ <execution>
+ <phase>generate-resources</phase>
+ <goals>
+ <goal>write-project-properties</goal>
+ </goals>
+ <configuration>
+ <outputFile>${project.build.directory}/mvn-build.properties</outputFile>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
<plugin>
<groupId>org.eclipse.cbi.maven.plugins</groupId>

Back to the top