Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Egloff2019-11-07 15:05:41 +0000
committerAdrian Egloff2019-11-07 15:05:41 +0000
commit60991f123a9e00d715c2a0d18ab90d114f1bfca7 (patch)
treebdafa85de2ba6705c70318340cb9d2a18ec744d8
parentba7ceb5ba3aa140115c0622c72002092bc6ed807 (diff)
downloadorg.eclipse.scout.rt-features/aegloff/javascript-build-test.tar.gz
org.eclipse.scout.rt-features/aegloff/javascript-build-test.tar.xz
org.eclipse.scout.rt-features/aegloff/javascript-build-test.zip
Temporary profile for scm-checkinfeatures/aegloff/javascript-build-test
-rw-r--r--org.eclipse.scout.rt/pom.xml26
1 files changed, 26 insertions, 0 deletions
diff --git a/org.eclipse.scout.rt/pom.xml b/org.eclipse.scout.rt/pom.xml
index 252ab09765..0de4730530 100644
--- a/org.eclipse.scout.rt/pom.xml
+++ b/org.eclipse.scout.rt/pom.xml
@@ -999,4 +999,30 @@
<url>https://repo.eclipse.org/content/repositories/scout-snapshots/</url>
</snapshotRepository>
</distributionManagement>
+
+ <profiles>
+ <profile>
+ <id>release.checkin</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <defaultGoal>scm:add scm:checkin</defaultGoal>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-scm-plugin</artifactId>
+ <configuration>
+ <connectionType>developerConnection</connectionType>
+ <message>${master_release_checkinMessage}</message>
+ <basedir>${project.basedir}/..</basedir>
+ <includes>pom.xml,*/pom.xml,package.json,*/package.json</includes>
+ <excludes>**/node_modules/**</excludes>
+ <pushChanges>${master_release_pushChanges}</pushChanges>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
</project>

Back to the top