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

Commit 23c4c9b

Browse files
author
Severi Haverila
committed
revert github mvn changes
1 parent 9fe540a commit 23c4c9b

File tree

2 files changed

+14
-59
lines changed

2 files changed

+14
-59
lines changed

example/pom.xml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,11 @@
55
<groupId>com.testdroid</groupId>
66
<artifactId>image-recognition-library-project-example</artifactId>
77
<version>2.0</version>
8-
<repositories>
9-
<repository>
10-
<id>opencv-library-mvn-repo</id>
11-
<url>https://raw.github.com/bitbar/opencv-library/mvn-repo/</url>
12-
<snapshots>
13-
<enabled>true</enabled>
14-
<updatePolicy>always</updatePolicy>
15-
</snapshots>
16-
</repository>
17-
</repositories>
188
<dependencies>
199
<dependency>
2010
<groupId>com.testdroid</groupId>
2111
<artifactId>mobile-opencv-image-recognition-library</artifactId>
22-
<version>1.0</version>
12+
<version>0.1</version>
2313
</dependency>
2414
<dependency>
2515
<groupId>ch.qos.logback</groupId>

library/pom.xml

Lines changed: 13 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.testdroid</groupId>
66
<artifactId>mobile-opencv-image-recognition-library</artifactId>
7-
<version>1.0</version>
7+
<version>0.1</version>
88
<packaging>jar</packaging>
99
<name>OpenCV Mobile Image Recognition Library</name>
1010
<description>Library for image recognition that can be used in mobile testing with for example Appium</description>
11-
<url>https://github.com/bitbar/testdroid-samples/tree/master/image-recognition/</url>
11+
<url>https://github.com/bitbar/opencv-library</url>
1212
<licenses>
1313
<license>
1414
<name>Apache License, Version 2.0</name>
@@ -17,12 +17,18 @@
1717
</license>
1818
</licenses>
1919
<scm>
20-
<url>https://github.com/severi/opencv_library</url>
20+
<connection>scm:git:git://github.com:bitbar/opencv-library.git</connection>
21+
<developerConnection>scm:git:[email protected]:bitbar/opencv-library.git</developerConnection>
22+
<url>https://github.com/bitbar/opencv-library</url>
2123
</scm>
22-
<properties>
23-
<!-- github server corresponds to entry in ~/.m2/settings.xml -->
24-
<github.global.server>github</github.global.server>
25-
</properties>
24+
<developers>
25+
<developer>
26+
<name>Lasse Hall</name>
27+
</developer>
28+
<developer>
29+
<name>Severi Haverila</name>
30+
</developer>
31+
</developers>
2632
<dependencies>
2733
<dependency>
2834
<groupId>net.sourceforge.tess4j</groupId>
@@ -100,47 +106,6 @@
100106
<additionalparam>-Xdoclint:none</additionalparam>
101107
</configuration>
102108
</plugin>
103-
<plugin>
104-
<artifactId>maven-deploy-plugin</artifactId>
105-
<version>2.8.1</version>
106-
<configuration>
107-
<altDeploymentRepository>internal.repo::default::file://${project.build.directory}/mvn-repo</altDeploymentRepository>
108-
</configuration>
109-
</plugin>
110-
<plugin>
111-
<groupId>com.github.github</groupId>
112-
<artifactId>site-maven-plugin</artifactId>
113-
<version>0.11</version>
114-
<configuration>
115-
<message>Maven artifacts for ${project.version}</message> <!-- git commit message -->
116-
<noJekyll>true</noJekyll> <!-- disable webpage processing -->
117-
<outputDirectory>${project.build.directory}/mvn-repo</outputDirectory> <!-- matches distribution management repository url above -->
118-
<branch>refs/heads/mvn-repo</branch> <!-- remote branch name -->
119-
<includes>
120-
<include>**/*</include>
121-
</includes>
122-
<repositoryName>opencv-library</repositoryName> <!-- github repo name -->
123-
<repositoryOwner>bitbar</repositoryOwner> <!-- github username -->
124-
<merge>true</merge>
125-
</configuration>
126-
<executions>
127-
<!-- run site-maven-plugin's 'site' target as part of
128-
the build's normal 'deploy' phase -->
129-
<execution>
130-
<goals>
131-
<goal>site</goal>
132-
</goals>
133-
<phase>deploy</phase>
134-
</execution>
135-
</executions>
136-
</plugin>
137109
</plugins>
138110
</build>
139-
<distributionManagement>
140-
<repository>
141-
<id>internal.repo</id>
142-
<name>Temporary Staging Repository</name>
143-
<url>file://${project.build.directory}/mvn-repo</url>
144-
</repository>
145-
</distributionManagement>
146111
</project>

0 commit comments

Comments
 (0)