Skip to content
This repository was archived by the owner on Dec 7, 2020. It is now read-only.

Commit 1c96afd

Browse files
author
Henri Kivelä
authored
Merge pull request #6 from marverix/master
Fixing deploy
2 parents 6ae63c3 + 9c35387 commit 1c96afd

File tree

9 files changed

+22
-17
lines changed

9 files changed

+22
-17
lines changed

library/.editorconfig

Lines changed: 0 additions & 14 deletions
This file was deleted.

library/pom.xml renamed to pom.xml

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
45
<modelVersion>4.0.0</modelVersion>
56
<groupId>com.testdroid</groupId>
67
<artifactId>mobile-opencv-image-recognition-library</artifactId>
@@ -82,7 +83,6 @@
8283
</execution>
8384
</executions>
8485
</plugin>
85-
8686
<plugin>
8787
<groupId>org.apache.maven.plugins</groupId>
8888
<artifactId>maven-javadoc-plugin</artifactId>
@@ -99,6 +99,25 @@
9999
<additionalparam>-Xdoclint:none</additionalparam>
100100
</configuration>
101101
</plugin>
102+
<plugin>
103+
<groupId>org.apache.maven.plugins</groupId>
104+
<artifactId>maven-gpg-plugin</artifactId>
105+
<executions>
106+
<execution>
107+
<id>sign-artifacts</id>
108+
<phase>verify</phase>
109+
<goals>
110+
<goal>sign</goal>
111+
</goals>
112+
<configuration>
113+
<gpgArguments>
114+
<arg>--pinentry-mode</arg>
115+
<arg>loopback</arg>
116+
</gpgArguments>
117+
</configuration>
118+
</execution>
119+
</executions>
120+
</plugin>
102121
</plugins>
103122
</build>
104123
</project>

0 commit comments

Comments
 (0)