Skip to content

Commit e5f7458

Browse files
committed
FISH-1444 Unsigned content warning on installation of eclipse plugin
1 parent ca56917 commit e5f7458

1 file changed

Lines changed: 26 additions & 2 deletions

File tree

pom.xml

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@
6666
<artifactId>tycho-p2-repository-plugin</artifactId>
6767
<version>${tycho.version}</version>
6868
<configuration>
69-
<includeAllDependencies>false</includeAllDependencies>
70-
</configuration>
69+
<includeAllDependencies>false</includeAllDependencies>
70+
</configuration>
7171
</plugin>
7272
<plugin>
7373
<groupId>org.eclipse.tycho</groupId>
@@ -112,5 +112,29 @@
112112
</plugin>
113113
</plugins>
114114
</build>
115+
116+
<profiles>
117+
<profile>
118+
<id>release</id>
119+
<build>
120+
<plugins>
121+
<plugin>
122+
<groupId>org.apache.maven.plugins</groupId>
123+
<artifactId>maven-gpg-plugin</artifactId>
124+
<version>3.0.1</version>
125+
<executions>
126+
<execution>
127+
<id>sign-artifacts</id>
128+
<phase>verify</phase>
129+
<goals>
130+
<goal>sign</goal>
131+
</goals>
132+
</execution>
133+
</executions>
134+
</plugin>
135+
</plugins>
136+
</build>
137+
</profile>
138+
</profiles>
115139

116140
</project>

0 commit comments

Comments
 (0)