Skip to content

Commit 3159f00

Browse files
authored
Merge pull request #50 from utPLSQL/feature/add_packagecloud_dependency
Adding downloads of utplsql-java-api from packagecloud.io
2 parents db15344 + 38d8eb8 commit 3159f00

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed

.travis/maven_cfg.sh

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,3 @@ else
2222
echo "Using cached maven settings..."
2323
fi
2424

25-
# The Java API is not available on a public repository yet, we need to download and install it locally.
26-
# Always downloading the latest development version.
27-
git clone https://github.com/utPLSQL/utPLSQL-java-api.git
28-
cd utPLSQL-java-api
29-
mvn package install -DskipTests

pom.xml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>org.utplsql</groupId>
2222
<artifactId>java-api</artifactId>
23-
<version>3.0.4-SNAPSHOT</version>
23+
<version>3.0.4</version>
2424
<scope>compile</scope>
2525
</dependency>
2626
<dependency>
@@ -59,4 +59,19 @@
5959
</plugins>
6060
</build>
6161

62+
<repositories>
63+
<repository>
64+
<id>utplsql-java-api</id>
65+
<url>
66+
https://packagecloud.io/utplsql/utplsql-java-api/maven2
67+
</url>
68+
<releases>
69+
<enabled>true</enabled>
70+
</releases>
71+
<snapshots>
72+
<enabled>true</enabled>
73+
</snapshots>
74+
</repository>
75+
</repositories>
76+
6277
</project>

0 commit comments

Comments
 (0)