Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Bricon2015-01-16 19:27:40 +0000
committerFred Bricon2015-01-16 19:29:00 +0000
commit2716d91ddd949878a71ce57004950c3c9e95d3cd (patch)
treec7ea7f068f93c167e4137960aebcae96964481f4
parent73d7acb536d219cddcda230f283e105840586680 (diff)
downloadorg.eclipse.m2e.workspace-2716d91ddd949878a71ce57004950c3c9e95d3cd.tar.gz
org.eclipse.m2e.workspace-2716d91ddd949878a71ce57004950c3c9e95d3cd.tar.xz
org.eclipse.m2e.workspace-2716d91ddd949878a71ce57004950c3c9e95d3cd.zip
Add eclipse-sign profile
Signed-off-by: Fred Bricon <fbricon@gmail.com>
-rw-r--r--.gitignore1
-rw-r--r--org.eclipse.m2e.workspace.cli/pom.xml28
2 files changed, 28 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..2f7896d
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+target/
diff --git a/org.eclipse.m2e.workspace.cli/pom.xml b/org.eclipse.m2e.workspace.cli/pom.xml
index db3693f..0b055a6 100644
--- a/org.eclipse.m2e.workspace.cli/pom.xml
+++ b/org.eclipse.m2e.workspace.cli/pom.xml
@@ -239,7 +239,33 @@
</pluginManagement>
</build>
</profile>
-
+ <profile>
+ <id>eclipse-sign</id>
+ <pluginRepositories>
+ <pluginRepository>
+ <id>eclipse-cbi-repo</id>
+ <url>https://repo.eclipse.org/content/repositories/cbi-releases/</url>
+ </pluginRepository>
+ </pluginRepositories>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.cbi.maven.plugins</groupId>
+ <artifactId>eclipse-jarsigner-plugin</artifactId>
+ <version>1.1.1</version>
+ <executions>
+ <execution>
+ <id>sign</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>sign</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
<profile>
<id>takari-release</id>
<build>

Back to the top